/* ============================================================================
   Subtle scrollbar — GLOBAL DEFAULT (Tim, 2026-07-01: "should be subtle everywhere")
   Linked from every area _Layout (Fss, Agent, Company, SuperAgent, Rsvp, Quote,
   CallCenter) so no page ever ships the fat default scrollbar again.
   Canonical values from Pages/Fss/BroadcastMessage/Index.cshtml (registry #7):
   slate-400 @ 35% thumb, transparent track, 6px, hover 55%, 3px radius.
   Page-local ::-webkit-scrollbar copies are now redundant — delete on touch,
   don't add new ones.
   ========================================================================== */

* {
    scrollbar-width: thin;                                /* Firefox */
    scrollbar-color: rgba(148, 163, 184, 0.35) transparent;
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.35);
    border-radius: 3px;
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 0.55);
}

*::-webkit-scrollbar-corner {
    background: transparent;
}
