/* Shared VROOM scrollbars, matching the game legends.
   Keep scrolling native; this stylesheet only changes its appearance. */
* {
  scrollbar-width: thin;
  scrollbar-color: #86313d transparent;
}

/* Fallback for browsers without standard scrollbar color support. */
@supports not (scrollbar-color: #86313d transparent) {
  ::-webkit-scrollbar { width: 8px; height: 8px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb { background: #86313d; border-radius: 999px; }
  ::-webkit-scrollbar-thumb:hover { background: #a94050; }
  ::-webkit-scrollbar-corner { background: transparent; }
}

/* Let the operating system provide high-contrast scrollbars. */
@media (forced-colors: active) {
  * { scrollbar-color: auto; }
}
