/* scrollbar.css — scroll padrão do SITE (Matias 14/06): trilho fino cinza translúcido, sem setas.
   Injetado globalmente via styles_loader (_INJECTION_ORDER) → vale em todas as telas.
   Webkit (Chrome/Edge) + Firefox (scrollbar-width/color). */
* { scrollbar-width: thin; scrollbar-color: rgba(159,176,195,.5) transparent; }
*::-webkit-scrollbar { width: 11px; height: 11px; }
*::-webkit-scrollbar-button { display: none !important; height: 0 !important; width: 0 !important; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: rgba(159,176,195,.45); border-radius: 10px; border: 3px solid transparent; background-clip: padding-box; }
*::-webkit-scrollbar-thumb:hover { background: rgba(159,176,195,.7); }
*::-webkit-scrollbar-corner { background: transparent; }
