/* ============================================================
   Cue — Base layer
   Minimal global resets + the brand font on the document, plus
   the Material Symbols icon helper. Kept deliberately light so
   the system composes into any host app.
   ============================================================ */

:root {
  color-scheme: light;
}

body {
  font-family: var(--cue-font-family);
  font-weight: var(--cue-font-weight-regular);
  color: var(--cue-main-foreground);
  background-color: var(--cue-main-background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- Material Symbols (Rounded) — the Cue icon set ---- */
.cue-icon,
.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
  vertical-align: middle;
  user-select: none;
}

.cue-icon.filled {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* ---- Thin brand scrollbar ---- */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--cue-scrollbar-thumb-color) transparent;
}
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--cue-scrollbar-thumb-color);
  border-radius: 3px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
