/* Shared by the dashboard, dialogs, nested panels, and standalone pages. */
@media (forced-colors: none) {
  :root { color-scheme: dark; }
  * { scrollbar-width: thin; scrollbar-color: #988064 #151b1d; }
  @supports selector(::-webkit-scrollbar) {
    /* Let Chromium/WebKit use the rounded, interactive thumb below. */
    * { scrollbar-width: auto; scrollbar-color: auto; }
    ::-webkit-scrollbar { width: 10px; height: 10px; }
    ::-webkit-scrollbar-track { background: #151b1d; border-radius: 999px; }
    ::-webkit-scrollbar-thumb {
      background: #988064;
      border: 2px solid #151b1d;
      border-radius: 999px;
      min-height: 32px;
      min-width: 32px;
    }
    ::-webkit-scrollbar-thumb:hover { background: #d7ac7a; }
    ::-webkit-scrollbar-thumb:active { background: #f5a623; }
    ::-webkit-scrollbar-corner { background: #151b1d; }
    ::-webkit-scrollbar-button { display: none; width: 0; height: 0; }
  }
}
