/* Console brand — the guinea-pig identity "dialed down" (Design Brief §6): the
   console stays calm and data-dense on warm neutrals, with the joyful palette
   reserved for primary actions and the mission-patch mark. Tokenized for M6 /
   white-label. Load AFTER styles.css. */
:root {
  --primary: #f4a024;        /* tangerine — primary actions only */
  --primary-text: #2b2a28;
  --secondary: #2ea6b8;      /* teal — links */
  --bg: #f7f5f0;
  --surface: #ffffff;
  --font: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
header {
  background: var(--surface) url(/favicon.svg) 18px center / 24px no-repeat;
  padding-left: 54px;
  font-family: "Baloo 2", var(--font);
}
button.primary { background: var(--primary); color: var(--primary-text); border-radius: 999px; }
button.primary:hover { background: #e0901a; }
a { color: var(--secondary); }
/* Accessibility: visible focus, reduced motion (WCAG 2.2 AA) */
:focus-visible { outline: 3px solid var(--secondary); outline-offset: 2px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
/* Responsive: usable down to a laptop / tablet */
@media (max-width: 720px) {
  main { padding: 16px; }
  table { font-size: 0.82rem; }
  .toolbar { gap: 8px; }
}
