/* Shared by every page, including authentication pages and injected dialogs.
   Accent variables come from each deployment's SITE_THEME_* settings. */
:root {
  color-scheme: dark;
  --site-scrollbar-track: #10151d;
  --site-scrollbar-thumb: rgba(var(--site-theme-primary-rgb), .5);
}
@supports (color: color-mix(in srgb, red, blue)) {
  :root { --site-scrollbar-thumb: color-mix(in srgb, var(--site-theme-primary) 38%, #343c48); }
}
html, body, * {
  scrollbar-width: thin;
  scrollbar-color: var(--site-scrollbar-thumb) var(--site-scrollbar-track) !important;
}
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--site-scrollbar-track) !important; }
::-webkit-scrollbar-thumb {
  background: var(--site-scrollbar-thumb) !important;
  border: 2px solid var(--site-scrollbar-track) !important;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: var(--site-theme-primary) !important; }
::-webkit-scrollbar-corner { background: var(--site-scrollbar-track) !important; }
::-webkit-scrollbar-button { display: none !important; width: 0 !important; height: 0 !important; }
