/* hub-scroll.css — sleek scrollbars site-wide.
   Loaded on every page so no view ever falls back to the fat native
   Windows scrollbar (with arrow buttons). Uses literal neutral colors
   (not CSS vars) so it works on every page regardless of its palette.
   Page-specific rules (e.g. hidden bars) are more specific and still win. */
*{scrollbar-width:thin;scrollbar-color:rgba(140,144,166,.5) transparent}
*::-webkit-scrollbar{width:9px;height:9px}
*::-webkit-scrollbar-track{background:transparent}
*::-webkit-scrollbar-thumb{background:rgba(140,144,166,.5);border-radius:999px;border:2px solid transparent;background-clip:padding-box}
*::-webkit-scrollbar-thumb:hover{background:rgba(140,144,166,.85);background-clip:padding-box}
*::-webkit-scrollbar-button{width:0;height:0;display:none}
*::-webkit-scrollbar-corner{background:transparent}
