/* ===========================================================================
   Design tokens — extracted from the Parking Survey reference
   (Codex/carpark_survey: docs/UI_GUIDE.md, app/globals.css, app/layout.tsx)
   so the two products read as one family. Values come from globals.css, which
   is the applied system, wherever it and the written guide disagree.

   TWO deliberate departures, both marked below:

   1. The MAP palette is exempt from the "green = success only" rule. Heat
      bands, rainfall bands and strike colours are NEA's own categories and are
      verified identical to the myENV app — see frontend/metrics.js. They are
      data encoding, not UI status, and must not be reskinned.
   2. Parking Survey is light-only (`color-scheme: light`). The dark theme here
      is DERIVED from these tokens, not extracted, because this board is
      wall-mounted and runs night shifts.
   =========================================================================== */

/* Vendored locally rather than loaded from a CDN, for the same reason MapLibre
   and its glyphs are: the on-prem host may block outbound traffic. Variable
   fonts, so every weight comes from one 70 KB file. Geist is SIL OFL — see
   vendor/geist/LICENSE.txt. Variable names match the reference project's
   Next.js font loader output so component CSS can be copied across verbatim. */
@font-face {
  font-family: "Geist Sans";
  src: url("/vendor/geist/Geist-Variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("/vendor/geist/GeistMono-Variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-geist-sans: "Geist Sans";
  --font-geist-mono: "Geist Mono";

  /* --- surfaces: lavender canvas, white frame, light-grey content --- */
  --canvas: #e9ddfb;
  --frame: #ffffff;
  --content: #f9fafb;
  --surface: var(--frame);
  --surface-2: var(--content);

  /* --- text --- */
  --ink: #1f2937;
  --muted: #6b7280;
  --muted-light: #9ca3af;

  /* --- lines --- */
  --line: #e5e7eb;
  --line-strong: #d1d5db;
  --line-soft: #f3f4f6;

  /* --- accent: orange for active navigation and selection --- */
  --accent: #f97316;
  --accent-strong: #ea580c;
  --accent-soft: #fff7ed;

  /* --- semantic UI status. NOT for map data — see note 1 above. --- */
  --link: #2563eb;
  --focus: var(--link);
  --success: #137c5b;
  --success-strong: #0b5c42;
  --success-soft: #e7f6ef;
  --warning: #9a6700;
  --warning-soft: #fff4d6;
  --danger: #b42318;
  --danger-soft: #fff0ee;

  --shadow: 0 1px 3px rgb(0 0 0 / 10%);
  --shadow-overlay: 0 18px 48px rgb(0 0 0 / 18%);

  /* --- geometry: 12px panels, 8px controls, 6px icon buttons, 16px shell --- */
  --radius-shell: 16px;
  --radius-panel: 12px;
  --radius-control: 8px;
  --radius-icon: 6px;

  /* --- shell metrics --- */
  --rail-w: 260px;
  --rail-collapsed-w: 72px;
  --topbar-h: 56px;
  --legend-h: 30px;
  --panel-w: 340px;
}

/* Derived dark theme — see note 2. Same hues, surfaces inverted, accent and
   status colours lifted toward the light end so they stay legible on a dark
   ground while remaining recognisably the same palette. */
:root[data-theme="dark"] {
  --canvas: #14121a;
  --frame: #1c1b22;
  --content: #17161d;
  --ink: #e8eaed;
  --muted: #9aa1ad;
  --muted-light: #79808c;
  --line: #2e2d36;
  --line-strong: #3d3c47;
  --line-soft: #24232b;
  --accent: #fb923c;
  --accent-strong: #fdba74;
  --accent-soft: #2a1e14;
  --link: #7fb0ea;
  --success: #6cc39a;
  --success-strong: #8fd4b3;
  --success-soft: #16241d;
  --warning: #e0a341;
  --warning-soft: #2a2214;
  --danger: #e08080;
  --danger-soft: #2b1a1a;
  --shadow: 0 1px 3px rgb(0 0 0 / 40%);
  --shadow-overlay: 0 18px 48px rgb(0 0 0 / 55%);
}

* { box-sizing: border-box; }
html {
  min-height: 100%;
  background: var(--canvas);
  /* Not a static `color-scheme: light` as in the reference: this board has a
     real dark theme, so the property tracks [data-theme] instead — otherwise
     native form controls (checkboxes, scrollbars) would keep rendering in
     light style even after the toggle switches every other token. */
  color-scheme: light;
}
:root[data-theme="dark"] { color-scheme: dark; }
html, body {
  margin: 0; height: 100%;
  color: var(--ink);
  font-family: var(--font-geist-sans), ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.5;
}

/* Blue 3px ring at 2px offset, exactly as the reference sets it. Applies to
   every interactive element, which is the accessibility floor this app was
   missing — several controls previously had no visible focus state at all.
   [role="button"] is here for the rail's zone <li> items: giving them
   tabindex made them focusable, but this selector is what makes that focus
   visible — without it a keyboard user could tab to a zone with no on-screen
   indication of where they were. */
:where(a, button, input, select, textarea, [role="button"]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
button, input, select, textarea { font: inherit; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ===========================================================================
   Framed admin shell — lavender canvas, rounded white frame, sidebar + content.
   No HTML restructuring: `body` itself becomes the frame (position: relative
   makes it the containing block every existing absolutely-positioned child
   already assumed), so #map, #rail, #topbar etc. need only new coordinates,
   not new markup. Desktop only (min-width 900px) per the agreed scope — this
   board is not used on mobile or tablet.
   =========================================================================== */

/* The UA rule for [hidden] is only `display: none` at specificity 0-1-0, so any
   author rule that sets `display` (#topbar and .login-overlay both set flex)
   silently beats it. Without this, `el.hidden = true` updates the property but
   leaves the element on screen — which made a *successful* login still show the
   password box, indistinguishable from a rejected password. */
[hidden] { display: none !important; }

body {
  position: relative;
  width: min(1760px, calc(100% - 48px));
  height: calc(100vh - 48px);
  min-height: 0;
  margin: 24px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-shell);
  background: var(--frame);
  box-shadow: 0 8px 24px rgb(31 41 55 / 8%);
}

/* --- Sidebar: the zone rail, restyled to the Parking Survey admin-sidebar
   pattern. Collapse is re-themed but still binary (hide/show) rather than the
   true icon-rail-with-sector-chips the spec describes — that needs a UX call
   on what a collapsed chip does (jump to sector? filter it?) that hasn't been
   made, so it is deferred rather than invented here. --- */
#rail { position: absolute; top: calc(var(--topbar-h) + var(--legend-h)); left: 0;
  bottom: 0; width: var(--rail-w); z-index: 6; background: var(--surface); color: var(--ink);
  border-right: 1px solid var(--line); overflow-y: auto; padding: 16px 12px;
  font-size: 13px; transition: width .15s; }
body.rail-collapsed #rail { width: 0; padding: 0; overflow: hidden; border: 0; }
body.rail-collapsed #map,
body.rail-collapsed #alert-banner { left: 0; }
body.rail-collapsed #legend-strip { left: 0; }

/* "Every control needs a persistent visible label; placeholders are examples,
   not labels" — the label lives in index.html as a real <label for="rail-search">,
   sized as the reference's field label (14px/500), not visually hidden: at
   this width there is room for it and hiding it would be exactly the
   violation the rule exists to prevent. */
#rail-search-label { display: block; font-size: 13px; font-weight: 500;
  color: var(--muted); margin: 0 2px 6px; }
#rail-search { width: 100%; min-height: 46px; padding: 0 12px; margin-bottom: 12px;
  border-radius: var(--radius-control); border: 1px solid var(--line);
  background: var(--surface); color: var(--ink); font-size: 14px; }
#rail-search:hover { border-color: var(--line-strong); }
#rail-search::placeholder { color: var(--muted-light); }

.rail-sector-head { color: var(--muted); text-transform: uppercase; font-size: 11px;
  font-weight: 500; letter-spacing: 0; margin: 16px 0 4px; padding: 0 4px;
  display: flex; justify-content: space-between; }
.rail-sector-head:first-child { margin-top: 0; }
.rail-count { color: var(--accent-strong); font-weight: 700; }
#rail ul { list-style: none; margin: 0; padding: 0; }
#rail li { padding: 7px 8px; cursor: pointer; border-radius: 6px;
  border-left: 3px solid transparent; color: var(--muted); }
#rail li:hover { background: var(--accent-soft); color: var(--accent-strong);
  border-left-color: var(--accent); }

/* Lucide icons (vendor/lucide/*.svg, inlined as currentColor SVG — see map.js
   X_ICON and index.html). 18px sits comfortably inside a 36px round button
   with room for the focus ring; stroke inherits from `color`, so hover/active/
   dark-theme recolouring needs no separate icon styling anywhere. */
.icon { width: 18px; height: 18px; display: block; flex: none; }

/* --- Icon buttons: ☰ / theme / ? / Outlook — icon-only actions get the
   reference's 36px square treatment (its modal-close-button pattern). --- */
#rail-toggle, #theme-toggle, #help-toggle, #outlook-toggle { background: var(--surface);
  color: var(--muted); border: 1px solid var(--line); cursor: pointer; flex: none;
  display: inline-flex; align-items: center; justify-content: center; }
#rail-toggle:hover, #theme-toggle:hover, #help-toggle:hover, #outlook-toggle:hover {
  border-color: var(--accent); color: var(--accent-strong); }
#rail-toggle { border-radius: var(--radius-icon); width: 36px; height: 36px; }
#theme-toggle, #help-toggle { border-radius: 50%; width: 36px; height: 36px; }

/* Theme toggle shows the icon of the mode a click switches TO, not the
   current mode — a moon invites going dark, a sun invites going back to
   light. Both icons always exist in the DOM (no re-render needed on toggle,
   just a CSS swap); [data-theme] lives on <html>, matching the token
   selectors in the tokens block up top. */
#theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] #theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] #theme-toggle .icon-sun { display: block; }
#outlook-toggle { border-radius: var(--radius-icon); padding: 0 14px;
  min-height: 34px; position: relative; font-weight: 500; }
/* Anchored to #outlook-toggle: the drawer stays shut most of the day, so a
   Very High UV reading has to be visible without opening it. Danger token —
   this badge is a real alert state, not decoration. */
#uv-badge { position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px;
  border-radius: 9px; padding: 0 4px; font-size: 11px; line-height: 18px;
  font-weight: 700; color: #fff; background: var(--danger); text-align: center; }

/* --- Right-hand surfaces: help drawer, outlook drawer. Share position and
   sizing so showRightSurface()'s mutual exclusion (map.js) is a visual
   guarantee, not just a DOM one. --- */
#help-drawer, #outlook-drawer {
  position: absolute; top: calc(var(--topbar-h) + var(--legend-h)); right: 0;
  bottom: 0; width: var(--panel-w); z-index: 7; background: var(--surface); color: var(--ink);
  border-left: 1px solid var(--line); padding: 20px; overflow-y: auto; }
#help-drawer h2, #outlook-drawer h2 { margin: 0 0 16px; font-size: 16px;
  font-weight: 500; }
.help-row { margin-bottom: 14px; line-height: 1.45; }
.help-row i { color: var(--muted); display: block; font-size: 12px;
  font-style: normal; margin-top: 3px; }

.uv-now { font-size: 28px; font-weight: 700; line-height: 1; }
.uv-band { font-size: 13px; margin-left: 8px; color: var(--muted); }
.outlook-section { margin: 18px 0 8px; color: var(--muted); text-transform: uppercase;
  font-size: 11px; font-weight: 700; letter-spacing: 0; }
.outlook-section:first-child { margin-top: 0; }
.outlook-row { margin-bottom: 10px; line-height: 1.45; font-size: 13px; }
.outlook-row b { font-size: 14px; font-weight: 500; }
.outlook-row i { color: var(--muted); display: block; font-size: 12px;
  font-style: normal; }
.outlook-row a { color: var(--link); font-weight: 500; }
.outlook-row a:hover { text-decoration: none; }
.outlook-row a:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }

/* Sits directly under the Heat row it qualifies, inside the zone hover
   tooltip, and only appears at Moderate or High. Left border and label carry
   the same UI-status token, not the map's own WBGT band colour: this is an
   advisory banner (semantic warning/danger), distinct from the heat map's
   data encoding. */
.heat-advisory { margin: 10px 0 14px; padding: 10px 12px;
  border-radius: var(--radius-icon); background: var(--surface-2); font-size: 13px;
  line-height: 1.5; border: 1px solid var(--line); }
.heat-advisory.heat-moderate { border-left: 3px solid var(--warning); }
.heat-advisory.heat-high { border-left: 3px solid var(--danger); }
.heat-advisory b { display: block; margin-bottom: 6px; font-size: 13px; }
.heat-advisory.heat-moderate b { color: var(--warning); }
.heat-advisory.heat-high b { color: var(--danger); }
.heat-advisory > div { margin-top: 4px; }
.heat-advisory i { color: var(--muted); font-style: normal; text-transform: uppercase;
  font-size: 11px; letter-spacing: 0; margin-right: 6px; font-weight: 500; }

/* --- Topbar --- */
#topbar { position: absolute; top: 0; left: 0; right: 0; height: var(--topbar-h);
  z-index: 5; display: flex; align-items: center; gap: 16px; padding: 0 16px;
  background: var(--surface); color: var(--ink); border-bottom: 1px solid var(--line); }
#topbar .metrics button, #topbar .toggles label { color: var(--muted); }
/* The page's one <h1> — see index.html. Login's own <h1> (same text) is
   hidden the moment this becomes visible (map.js's login handler), so
   exactly one H1 is ever exposed to assistive tech at a time. Reset to read
   identically to the plain-text label it replaces: browsers default h1 to a
   much larger size with block margins, neither appropriate inside a 56px
   topbar row.
   flex: none + white-space: nowrap matter here specifically: caught at
   1280px (the narrow end of the confirmed desktop-only range) — without
   them, "West Ops" wrapped to two lines under the flex row's default
   shrink-and-wrap behaviour. The topbar has ~9 items competing for width; see
   #chips below for how the squeeze is meant to be absorbed instead. */
#topbar h1 { margin: 0; font-size: 14px; font-weight: 700; line-height: 1;
  flex: none; white-space: nowrap; }

/* Three modes, frequently switched — the exact case the reference names for a
   segmented control ("segmented controls for two or three frequently changed
   modes"), so this is one joined group with shared borders, not three
   separate pill buttons with gaps between them. */
.metrics { display: inline-flex; flex: none; border: 1px solid var(--line);
  border-radius: var(--radius-icon); overflow: hidden; }
.metrics button { background: var(--surface); color: var(--muted); border: 0;
  border-right: 1px solid var(--line); min-height: 34px; padding: 0 14px;
  cursor: pointer; font-size: 13px; font-weight: 500; }
.metrics button:last-child { border-right: 0; }
.metrics button:hover { background: var(--surface-2); }
/* Active-segment pattern from the reference: accent-soft fill —
   .option input:checked + span in globals.css. Text is --ink, not
   --accent-strong as the reference itself uses: measured, accent-strong on
   accent-soft is 3.35:1, which fails AA-normal (4.5:1) at this font size —
   the reference's own active-nav text likely has the same gap. Ink on
   accent-soft is 15.35:1. An inset accent underline stands in for a border
   (a full border would fight the shared dividers between joined segments),
   so the "on" state still reads through shape as well as colour. */
.metrics button.on { background: var(--accent-soft); color: var(--ink);
  font-weight: 700; box-shadow: inset 0 -2px 0 var(--accent); }

.toggles { display: inline-flex; flex: none; gap: 14px; }
.toggles label { display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; white-space: nowrap; }
.toggles input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); }

.stale { margin-left: auto; flex: none; white-space: nowrap;
  color: var(--warning); font-size: 13px; font-weight: 500; }
/* The one topbar item allowed to actually shrink — everything else above is
   flex:none specifically so the squeeze lands here instead of wrapping the
   title or a checkbox label across two lines. min-width:0 is required for a
   flex child to shrink below its content's intrinsic width at all; without it
   text-overflow has nothing to trigger on. */
#chips { flex: 1 1 auto; min-width: 40px; font-size: 13px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* --- Legend strip --- */
#legend-strip { position: absolute; top: var(--topbar-h); left: 0; right: 0;
  height: var(--legend-h); z-index: 5; display: flex; align-items: center;
  gap: 16px; padding: 0 16px; overflow-x: auto; background: var(--surface-2);
  color: var(--muted); font-size: 12px; border-bottom: 1px solid var(--line);
  transition: left .15s; }
#legend-strip b { color: var(--ink); font-weight: 700; }
#legend-strip .swatch { display: inline-block; width: 10px; height: 10px;
  border-radius: 2px; margin-right: 4px; vertical-align: -1px; }
#legend-strip .caveat { color: var(--muted-light); margin-left: auto; padding-left: 18px; }

/* --- Map --- */
#map { position: absolute; top: calc(var(--topbar-h) + var(--legend-h));
  left: var(--rail-w); right: 0; bottom: 0; transition: left .15s; }

/* --- Alert banner: this is the one place semantic danger genuinely applies —
   it announces a real hazard condition, not brand or navigation. --- */
#alert-banner { position: absolute; top: calc(var(--topbar-h) + var(--legend-h));
  left: var(--rail-w); right: 0; z-index: 5; display: flex; align-items: center;
  flex-wrap: wrap; gap: 10px; padding: 10px 16px; background: var(--danger-soft);
  border-bottom: 2px solid var(--danger); color: var(--ink); font-size: 13px;
  transition: left .15s; }
#alert-banner .alert-lead { font-weight: 700; color: var(--danger); }
#alert-banner .alert-cond { background: var(--surface); border-radius: var(--radius-icon);
  padding: 5px 10px; cursor: pointer; border: 1px solid var(--line); color: var(--ink);
  font: inherit; border-left: 3px solid var(--cond-color, var(--danger)); }
#alert-banner .alert-cond:hover { border-color: var(--line-strong); }
#alert-banner .alert-cond b { color: var(--cond-color, var(--danger)); }
#alert-banner .alert-zones { color: var(--muted); }
#alert-dismiss { margin-left: auto; background: var(--surface); color: var(--muted);
  border: 1px solid var(--line); border-radius: 50%; width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; flex: none; }
#alert-dismiss .icon { width: 15px; height: 15px; }
#alert-dismiss:hover { border-color: var(--accent); color: var(--accent-strong); }

/* --- Login overlay: the one true form in this app, so it gets the reference's
   .field pattern outright — 46px input, permanent visible label (see
   index.html), primary button in the near-black --action-primary role. --- */
.login-overlay { position: absolute; inset: 0; z-index: 20; display: flex;
  align-items: center; justify-content: center; background: var(--canvas); }
#login-form { background: var(--surface); padding: 32px; border: 1px solid var(--line);
  border-radius: var(--radius-panel); box-shadow: var(--shadow-overlay);
  color: var(--ink); display: flex; flex-direction: column; gap: 18px; width: 320px; }
#login-form h1 { margin: 0; font-size: 20px; font-weight: 700; }
#login-form .field { display: grid; gap: 8px; }
#login-form label { font-size: 14px; font-weight: 500; }
#login-form input { min-height: 46px; padding: 0 12px; border-radius: var(--radius-control);
  border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  font-size: 14px; }
#login-form input:hover { border-color: var(--line-strong); }
#login-form button { min-height: 44px; border-radius: var(--radius-control); border: 0;
  background: var(--ink); color: #fff; cursor: pointer; font-size: 14px; font-weight: 700; }
#login-form button:hover { background: #111827; }
.err { color: var(--danger); font-size: 13px; font-weight: 500; }

/* Sits above the (possibly blank) map canvas. z-index keeps it visible even
   once MapLibre inserts its own canvas into the same container. */
#map-notice { position: absolute; top: 0; left: 0; right: 0; z-index: 4;
  margin: 12px; padding: 12px 14px; border-radius: var(--radius-icon); max-width: 520px;
  background: var(--warning-soft); color: var(--warning); border: 1px solid var(--warning);
  font-size: 13px; line-height: 1.5; }

.maplibregl-ctrl-attrib { font-size: 11px; }

/* Vertical gradient-ladder legend for Rainfall and Heat (map.js
   renderMapLegend) — bottom-left of the map, mirroring MSS's own
   weather.gov.sg legend boxes. Left rather than right/bottom-right: both
   drawers dock at the map's right edge and can cover a large share of it,
   and MapLibre's own attribution control already occupies the
   default bottom-right corner. Lightning has no ladder here — it's a two-state
   flag, already fully covered by the horizontal legend strip's two swatches. */
#map-legend { position: absolute; left: 12px; bottom: 30px; z-index: 4;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-icon); box-shadow: var(--shadow); padding: 10px 12px;
  font-size: 12px; color: var(--ink); min-width: 132px; }
.map-legend-title { font-weight: 700; margin-bottom: 6px; }
.map-legend-row { display: flex; align-items: center; gap: 8px; padding: 2px 0; }
.map-legend-swatch { width: 20px; height: 16px; border-radius: 2px; flex: none;
  border: 1px solid var(--line); }
.map-legend-label { color: var(--muted); white-space: nowrap; }

/* Zoom in/out control (map.js NavigationControl). Restyled onto the token
   system so it doesn't read as browser chrome dropped on the map, matching the
   36px icon-button treatment used in the topbar.

   The icons are the tricky part: MapLibre draws them as data-URI SVGs with a
   hardcoded dark fill, and its own white variant is gated behind
   `@media (forced-colors: active)` (Windows High Contrast) — NOT
   prefers-color-scheme — so it never fires for this app's explicit
   [data-theme] toggle. On a dark button those #333 glyphs would be dark on
   dark. invert() flips them to light instead of trying to override an
   unreachable background-image rule. */
.maplibregl-ctrl-group { background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-icon); overflow: hidden; }
.maplibregl-ctrl-group:not(:empty) { box-shadow: var(--shadow); }
.maplibregl-ctrl-group button { width: 34px; height: 34px; background: var(--surface); }
.maplibregl-ctrl-group button:hover { background: var(--surface-2); }
.maplibregl-ctrl-group button + button { border-top: 1px solid var(--line); }
.maplibregl-ctrl-group button:focus-visible {
  outline: 3px solid var(--focus); outline-offset: -3px; }
:root[data-theme="dark"] .maplibregl-ctrl-group button .maplibregl-ctrl-icon {
  filter: invert(1); }

/* Popups: the 2-hour nowcast tooltip that follows the cursor, and the click
   popup on a sensor pin. pointer-events: none on the tooltip only — it tracks
   the cursor, so a popup that could itself receive the mouse would flicker
   against its own hover.
   z-index 8: MapLibre popups live inside the map container, which has no
   z-index of its own, so a tooltip near the right edge of the map was being
   clipped by a drawer mid-word. */
.maplibregl-popup { z-index: 8; }
.maplibregl-popup-content { background: var(--surface); color: var(--ink);
  font-size: 13px; line-height: 1.45; padding: 8px 12px;
  border-radius: var(--radius-icon); border: 1px solid var(--line);
  box-shadow: var(--shadow-overlay); }
.maplibregl-popup-tip { border-top-color: var(--surface); border-bottom-color: var(--surface); }
.zone-tip { pointer-events: none; }
/* The zone tip now carries five reading rows plus an optional MOM advisory
   paragraph, not just a one-line forecast — capped so it wraps into a
   readable column instead of stretching wide across the map. */
.zone-tip .maplibregl-popup-content { max-width: 280px; }
.tip-sub { color: var(--muted); font-size: 12px; }
