:root {
  --bg: #F6F1DE;
  --surface: #FFFFFF;
  --surface-2: #ECE4C6;
  --ink: #2B3A2A;
  --ink-soft: #55684F;
  --muted: #8B9A80;
  --line: #E3DAB4;
  --accent: #FF7A59;
  --accent-ink: #FFFFFF;
  --calm: #5B8A5A;
  --calm-soft: #DEEBD3;
  --busy: #FFC84D;
  --sky: #7FCCEA;
  --shadow: 0 2px 4px rgba(43,58,42,0.08), 0 14px 30px rgba(43,58,42,0.10);
  --motion-fast: 0.2s;
  --motion-slow: 0.45s;
  --squish: cubic-bezier(0.34, 1.56, 0.64, 1);
}
:root[data-theme="dark"], :root.hc-dark {
  --bg: #1E2A1F;
  --surface: #263323;
  --surface-2: #2F3F2A;
  --ink: #F3EEDC;
  --ink-soft: #C9D4BE;
  --muted: #8FA083;
  --line: #3A4A34;
  --accent: #FF9270;
  --accent-ink: #1E2A1F;
  --calm: #8FCB8A;
  --calm-soft: #33472F;
  --busy: #FFD873;
  --sky: #8FD9F2;
  --shadow: 0 2px 4px rgba(0,0,0,0.35), 0 18px 36px rgba(0,0,0,0.4);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #1E2A1F; --surface: #263323; --surface-2: #2F3F2A; --ink: #F3EEDC;
    --ink-soft: #C9D4BE; --muted: #8FA083; --line: #3A4A34; --accent: #FF9270;
    --accent-ink: #1E2A1F; --calm: #8FCB8A; --calm-soft: #33472F; --busy: #FFD873; --sky: #8FD9F2;
    --shadow: 0 2px 4px rgba(0,0,0,0.35), 0 18px 36px rgba(0,0,0,0.4);
  }
}

/* High contrast mode overrides both themes */
:root[data-contrast="high"] {
  --bg: #FFFFFF; --surface: #FFFFFF; --surface-2: #FFFFFF; --ink: #000000;
  --ink-soft: #000000; --muted: #333333; --line: #000000; --accent: #B3400A;
  --accent-ink: #FFFFFF; --calm: #0B5E48; --calm-soft: #FFFFFF; --busy: #8A5A00;
  --shadow: none;
}
:root[data-theme="dark"][data-contrast="high"] {
  --bg: #000000; --surface: #000000; --surface-2: #000000; --ink: #FFFFFF;
  --ink-soft: #FFFFFF; --muted: #DDDDDD; --line: #FFFFFF; --accent: #FF8A50;
  --accent-ink: #000000; --calm: #5FE0BE; --calm-soft: #000000; --busy: #FFC96B;
}
:root[data-contrast="high"] .tool-card,
:root[data-contrast="high"] .pill,
:root[data-contrast="high"] .route-card { border-width: 2px !important; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; overscroll-behavior: none; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  height: 100dvh;
  overflow: hidden;
  transition: background var(--motion-slow) ease, color var(--motion-slow) ease;
}
:root[data-motion="reduced"] * ,
@media (prefers-reduced-motion: reduce) { * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; } }
:root[data-motion="reduced"] * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
:root[data-motion="reduced"] .pages-wrap { scroll-behavior: auto !important; }

.display { font-family: "Baloo 2", "Quicksand", sans-serif; font-weight: 700; }

.app-shell {
  max-width: 480px; margin: 0 auto; height: 100%;
  display: flex; flex-direction: column;
}

header.top { display: flex; align-items: flex-start; justify-content: space-between; padding: 18px 18px 4px; flex-shrink: 0; }
header.top h1 { font-size: 23px; margin: 0; }
header.top .tagline { font-size: 12px; color: var(--muted); margin-top: 2px; font-weight: 600; }
.top-actions { display: flex; gap: 8px; }
.icon-btn {
  background: var(--surface); border: 1px solid var(--line); color: var(--calm);
  border-radius: 50%; width: 38px; height: 38px; display: flex; align-items: center;
  justify-content: center; cursor: pointer; box-shadow: var(--shadow);
  transition: transform var(--motion-fast) var(--squish), background var(--motion-fast) ease;
}
.icon-btn:active { transform: scale(0.88); background: var(--calm-soft); }
.icon-btn svg { width: 18px; height: 18px; stroke: currentColor; }
button:focus-visible, [tabindex]:focus-visible, input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* --- Page dots nav --- */
.page-dots { display: flex; justify-content: center; gap: 8px; padding: 10px 0 4px; flex-shrink: 0; }
.dot-btn {
  width: 9px; height: 9px; border-radius: 50%; background: var(--line); border: none; padding: 0;
  cursor: pointer; transition: width var(--motion-fast) var(--squish), background var(--motion-fast) ease;
}
.dot-btn.active { width: 26px; border-radius: 6px; background: var(--calm); animation: dot-breathe 2.6s ease-in-out infinite; }
@keyframes dot-breathe { 0%, 100% { opacity: 1; } 50% { opacity: 0.72; } }

/* --- Swipeable pages --- */
.pages-wrap {
  flex: 1; min-height: 0; display: flex; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scroll-behavior: smooth;
}
.pages-wrap::-webkit-scrollbar { display: none; }
.page {
  flex: 0 0 100%; max-width: 100%; height: 100%; overflow-y: auto; overflow-x: hidden;
  scroll-snap-align: start; scroll-snap-stop: always;
}
.page-inner { padding: 4px 18px 24px; }
.page-inner-centered { display: flex; flex-direction: column; align-items: center; text-align: center; padding-top: 18px; min-width: 0; }
.pillar-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--calm-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
  animation: gentle-breathe 3.2s ease-in-out infinite;
}
.pillar-icon svg { width: 27px; height: 27px; stroke: var(--calm); }
@keyframes gentle-breathe { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-4px) scale(1.05); } }
.pillar-title { font-size: 23px; margin: 0 0 4px; }
.page-inner-centered .tool-sub { text-align: center; margin: 0 0 20px; max-width: 300px; }
.settings-block { width: 100%; min-width: 0; margin-bottom: 14px; }
.settings-block-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-bottom: 6px; text-align: left; }
.page-inner-centered .pill-row { justify-content: center; }
.pillar-canvas { width: 100%; height: 120px; border-radius: 20px; background: var(--surface-2); display: block; margin: 10px 0 6px; box-shadow: var(--shadow); }
.slider-row.wide { width: 100%; margin-top: 12px; }

/* --- Route search --- */
.route-inputs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.route-input-row { display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 10px 14px; box-shadow: var(--shadow); }
.route-input-row .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.route-input-row.start .dot { background: var(--calm); }
.route-input-row.end .dot { background: var(--accent); }
.route-input-row input { border: none; background: none; color: var(--ink); font-size: 13.5px; font-weight: 600; flex: 1; outline: none; font-family: inherit; }
.find-btn {
  width: 100%; background: var(--accent); color: var(--accent-ink); border: none; border-radius: 999px;
  padding: 13px; font-size: 14.5px; font-weight: 700; cursor: pointer; margin-top: 4px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 0 rgba(0,0,0,0.12), var(--shadow);
  transition: transform var(--motion-fast) var(--squish), box-shadow var(--motion-fast) ease;
}
.find-btn:active { transform: scale(0.96) translateY(1px); box-shadow: 0 2px 0 rgba(0,0,0,0.12), var(--shadow); }
.find-btn:disabled { opacity: 0.75; cursor: default; }
.leaf-loader { display: none; font-size: 16px; }
.find-btn.loading .leaf-loader { display: inline-block; animation: leaf-sway 0.9s ease-in-out infinite; }
@keyframes leaf-sway { 0%, 100% { transform: rotate(-18deg); } 50% { transform: rotate(18deg); } }

/* --- Map --- */
.map-wrap { position: relative; margin: 10px 0; transition: height var(--motion-slow) ease; }
#map { width: 100%; height: 190px; border-radius: 22px; box-shadow: var(--shadow); transition: height var(--motion-slow) ease; }
.map-pin { width: 26px; height: 26px; transform-origin: bottom center; animation: pin-sway 2.4s ease-in-out infinite; }
.map-pin svg { width: 100%; height: 100%; filter: drop-shadow(0 2px 3px rgba(0,0,0,0.25)); }
@keyframes pin-sway { 0%, 100% { transform: rotate(-5deg) translateY(0); } 50% { transform: rotate(5deg) translateY(-2px); } }

.user-dot-inner {
  position: relative; width: 16px; height: 16px; border-radius: 50%; background: var(--sky); border: 3px solid #fff;
  box-shadow: 0 0 0 4px rgba(127,204,234,0.35); animation: user-dot-pulse 2s ease-in-out infinite;
}
@keyframes user-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(127,204,234,0.35); }
  50% { box-shadow: 0 0 0 9px rgba(127,204,234,0.12); }
}
/* Heading chevron: only shown once a real or movement-derived heading exists
   (app.js toggles this class) — rotated via inline transform per fix. */
.user-dot.has-heading .user-dot-inner::after {
  content: ""; position: absolute; top: -11px; left: 50%; width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent; border-bottom: 8px solid var(--sky);
  transform: translateX(-50%);
}

/* --- Live navigation overlay --- */
.start-nav-btn {
  width: 100%; background: var(--calm); color: #fff; border: none; border-radius: 999px;
  padding: 13px; font-size: 14.5px; font-weight: 700; cursor: pointer; margin: 8px 0 0;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 0 rgba(0,0,0,0.14), var(--shadow);
  transition: transform var(--motion-fast) var(--squish), box-shadow var(--motion-fast) ease;
}
.start-nav-btn svg { width: 17px; height: 17px; stroke: currentColor; }
.start-nav-btn:active { transform: scale(0.96) translateY(1px); box-shadow: 0 2px 0 rgba(0,0,0,0.14), var(--shadow); }

.nav-banner {
  position: absolute; top: 10px; left: 10px; right: 10px; z-index: 20;
  background: var(--surface); border-radius: 20px; box-shadow: var(--shadow);
  padding: 12px 14px; display: flex; align-items: center; gap: 12px;
}
.nav-banner-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; background: var(--calm-soft);
  color: var(--calm); display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.nav-banner-text { min-width: 0; flex: 1; }
.nav-banner-dist { font-size: 18px; font-weight: 700; font-family: "Baloo 2", sans-serif; color: var(--calm); }
.nav-banner-instr { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; line-height: 1.3; }

.nav-caption {
  position: absolute; bottom: 68px; left: 10px; right: 10px; z-index: 21;
  background: rgba(0,0,0,0.72); color: #fff; font-size: 12.5px; font-weight: 600;
  padding: 8px 14px; border-radius: 12px; text-align: center; line-height: 1.35;
}

.nav-bottom {
  position: absolute; bottom: 10px; left: 10px; right: 10px; z-index: 20;
  background: var(--surface); border-radius: 999px; box-shadow: var(--shadow);
  padding: 8px 8px 8px 16px; display: flex; align-items: center; justify-content: space-between;
}
.nav-eta { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); }
.nav-end-btn {
  background: var(--accent); color: var(--accent-ink); border: none; border-radius: 999px;
  padding: 9px 18px; font-size: 13px; font-weight: 700; cursor: pointer;
  transition: transform var(--motion-fast) var(--squish);
}
.nav-end-btn:active { transform: scale(0.92); }

.page-inner.nav-active .route-inputs,
.page-inner.nav-active .find-btn,
.page-inner.nav-active .special-event-banner,
.page-inner.nav-active .error-banner,
.page-inner.nav-active .safety-toggle-row,
.page-inner.nav-active .mode-note,
.page-inner.nav-active .safety-note,
.page-inner.nav-active .nav-start-row,
.page-inner.nav-active .route-compare,
.page-inner.nav-active .steps-panel,
.page-inner.nav-active #travelModePills { display: none !important; }
.page-inner.nav-active .map-wrap,
.page-inner.nav-active #map { height: 62vh; }

/* --- Travel mode + dev simulate row --- */
#travelModePills { margin: 2px 0 10px; }
.nav-start-row { display: flex; gap: 8px; align-items: center; margin: 8px 0 0; }
.nav-start-row .start-nav-btn { flex: 1; margin: 0; }
.sim-btn {
  flex-shrink: 0; background: var(--surface-2); color: var(--muted); border: 1px dashed var(--muted);
  border-radius: 999px; padding: 10px 14px; font-size: 11px; font-weight: 700; cursor: pointer;
}
.sim-badge {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%); z-index: 25;
  background: var(--accent); color: var(--accent-ink); font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.04em; padding: 5px 12px; border-radius: 999px; box-shadow: var(--shadow);
}

/* --- Error banner (permission denied, GPS unavailable, routing failure, etc.) --- */
.error-banner {
  background: #FBE3DC; border: 1.5px solid var(--accent); color: #7A2E1A; border-radius: 16px;
  padding: 11px 14px; font-size: 12.5px; font-weight: 600; line-height: 1.4; margin: 8px 0 4px;
}
:root[data-theme="dark"] .error-banner { background: #3A241D; color: #FFC7B0; }

/* --- Recenter button --- */
.recenter-btn {
  position: absolute; bottom: 78px; right: 10px; z-index: 20; width: 42px; height: 42px;
  border-radius: 50%; background: var(--surface); border: 1px solid var(--line); color: var(--calm);
  display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow);
  transition: transform var(--motion-fast) var(--squish);
}
.recenter-btn:active { transform: scale(0.88); }
.recenter-btn svg { width: 20px; height: 20px; stroke: currentColor; }

/* --- Voice mute toggle inside the nav banner --- */
.nav-mute-btn {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--surface-2);
  border: none; color: var(--ink-soft); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform var(--motion-fast) var(--squish), color var(--motion-fast) ease;
}
.nav-mute-btn.active { color: var(--calm); background: var(--calm-soft); }
.nav-mute-btn:active { transform: scale(0.88); }
.nav-mute-btn svg { width: 17px; height: 17px; stroke: currentColor; }
.nav-mute-btn.muted #navMuteWave { display: none; }

/* --- Dedicated arrival screen --- */
.nav-arrived {
  position: absolute; inset: 0; z-index: 1000; background: var(--surface);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  border-radius: 22px; text-align: center; padding: 20px;
}
.arrived-icon { font-size: 40px; margin-bottom: 4px; }
.arrived-title { font-family: "Baloo 2", sans-serif; font-size: 22px; font-weight: 700; color: var(--calm); }
.arrived-sub { font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.arrived-done-btn {
  background: var(--calm); color: #fff; border: none; border-radius: 999px; padding: 11px 28px;
  font-size: 14px; font-weight: 700; cursor: pointer; transition: transform var(--motion-fast) var(--squish);
}
.arrived-done-btn:active { transform: scale(0.94); }

/* --- Route comparison --- */
.route-compare { display: flex; gap: 10px; margin-bottom: 16px; }
.route-card { flex: 1; background: var(--surface); border: 2px solid var(--line); border-radius: 20px; padding: 13px; cursor: pointer; box-shadow: var(--shadow); transition: transform var(--motion-fast) var(--squish), border-color var(--motion-fast) ease, background var(--motion-fast) ease; }
.route-card:active { transform: scale(0.97); }
.route-card.selected { border-color: var(--calm); background: var(--calm-soft); }
.route-card .rc-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 4px; font-weight: 700; }
.route-card.selected .rc-label { color: var(--calm); font-weight: 700; }
.route-card .rc-time { font-size: 21px; font-weight: 700; font-family: "Baloo 2", sans-serif; }
.route-card .rc-sub { font-size: 11px; color: var(--muted); margin-top: 2px; font-weight: 600; }
.breakdown-bar { display: flex; height: 7px; border-radius: 6px; overflow: hidden; margin-top: 8px; }
.breakdown-bar span { display: block; height: 100%; }
.mode-note { font-size: 11.5px; color: var(--muted); text-align: center; margin: 10px 0 4px; line-height: 1.4; font-weight: 600; }

.safety-toggle-row {
  display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-soft);
  margin-top: 10px; cursor: pointer; font-weight: 600;
}
.safety-toggle-row input { accent-color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; }
.safety-note {
  background: var(--calm-soft); border: 1.5px solid var(--calm); border-radius: 16px;
  padding: 10px 14px; font-size: 11.5px; color: var(--ink); line-height: 1.4; margin: 8px 0; font-weight: 600;
}
.special-event-banner {
  background: var(--busy); color: #3D2E06; border-radius: 16px;
  padding: 11px 14px; font-size: 12px; font-weight: 700; line-height: 1.4; margin: 8px 0 4px;
}

.steps-panel { margin-top: 14px; }
.steps-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-bottom: 8px; font-weight: 700; }
.steps-list {
  display: flex; flex-direction: column; gap: 2px; max-height: 260px; overflow-y: auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 8px; box-shadow: var(--shadow);
}
.step-row {
  display: flex; align-items: center; gap: 10px; padding: 9px 8px; border-radius: 14px;
  font-size: 12.5px; font-weight: 600;
}
.step-row:not(:last-child) { border-bottom: 1px solid var(--line); }
.step-icon {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--calm-soft);
  color: var(--calm); display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.step-text { flex: 1; color: var(--ink); line-height: 1.3; }
.step-dist { flex-shrink: 0; color: var(--muted); font-size: 11px; }
.step-empty { padding: 12px; text-align: center; color: var(--muted); font-size: 12px; }

/* --- Section labels --- */
.section-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin: 18px 0 8px; }

/* --- Tool cards (shared) --- */
.tool-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 15px 15px 13px; box-shadow: var(--shadow); margin-bottom: 12px; }
.tool-title { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.tool-title svg { width: 16px; height: 16px; stroke: var(--calm); }
.tool-sub { font-size: 11.5px; color: var(--muted); margin: -6px 0 10px; font-weight: 600; }

.pill-row { display: flex; gap: 7px; flex-wrap: wrap; width: 100%; min-width: 0; }
.pill {
  background: var(--surface-2); border: 1px solid transparent; color: var(--ink-soft); font-size: 12px;
  font-weight: 600; padding: 7px 14px; border-radius: 999px; cursor: pointer;
  transition: transform var(--motion-fast) var(--squish), background var(--motion-fast) ease;
}
.pill:active { transform: scale(0.92); }
.pill.active { background: var(--accent); color: var(--accent-ink); font-weight: 700; }
.pill.calm-active { background: var(--calm); color: #fff; font-weight: 700; }

.slider-row { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.slider-row label { font-size: 11px; color: var(--muted); width: 52px; flex-shrink: 0; font-weight: 600; }
input[type="range"] { flex: 1; accent-color: var(--accent); }

/* --- Haptic fidget zone --- */
.fidget-zone {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 4px;
}
.fidget-btn {
  aspect-ratio: 1; border-radius: 22px; background: var(--surface-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; cursor: pointer; user-select: none;
  box-shadow: var(--shadow);
  transition: transform var(--motion-fast) var(--squish), background var(--motion-fast) ease;
}
.fidget-btn:active { transform: scale(0.9); background: var(--calm-soft); }
.fidget-btn svg { width: 27px; height: 27px; stroke: var(--ink-soft); }
.no-haptic-note { font-size: 11px; color: var(--muted); margin-top: 8px; text-align: center; font-weight: 600; }

canvas.fidget-canvas { width: 100%; height: 84px; border-radius: 16px; background: var(--surface-2); display: block; margin-top: 8px; }

/* --- Settings sheet --- */
.settings-overlay { position: fixed; inset: 0; background: rgba(43,58,42,0.4); display: none; align-items: flex-end; z-index: 30; }
.settings-overlay.open { display: flex; }
.settings-sheet {
  background: var(--surface); width: 100%; max-width: 480px; margin: 0 auto; border-radius: 28px 28px 0 0;
  padding: 20px 20px 26px; box-shadow: var(--shadow);
}
.settings-sheet h2 { font-size: 18px; margin: 0 0 14px; font-family: "Baloo 2", sans-serif; }
.setting-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); }
.setting-row:last-of-type { border-bottom: none; }
.setting-row .label { font-size: 13.5px; font-weight: 700; }
.setting-row .desc { font-size: 11px; color: var(--muted); font-weight: 600; }
.switch { position: relative; width: 42px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track { position: absolute; inset: 0; background: var(--line); border-radius: 999px; transition: background var(--motion-fast); cursor: pointer; }
.switch input:checked + .track { background: var(--calm); }
.switch .knob { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform var(--motion-fast) var(--squish); box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.switch input:checked + .track .knob { transform: translateX(16px); }
.close-sheet {
  width: 100%; margin-top: 16px; background: var(--surface-2); border: none; border-radius: 999px;
  padding: 12px; font-size: 13.5px; font-weight: 700; color: var(--ink); cursor: pointer;
  transition: transform var(--motion-fast) var(--squish);
}
.close-sheet:active { transform: scale(0.96); }

footer.foot { flex-shrink: 0; padding: 6px 18px 10px; text-align: center; font-size: 10px; color: var(--muted); line-height: 1.4; }
