/* Ported verbatim from frontend/css/style.css (the original Voice
   Transcriber production UI) -- this is the visual source of truth, not
   a new design. Premium dark is this app's one committed identity, not a
   default that yields to prefers-color-scheme:light. */
:root {
  --bg: #080B12;
  --bg-elevated: #0D111B;
  --panel: #111827;
  --panel-elevated: #151D2D;
  --panel-hover: #1a2333;
  --text: #F5F7FA;
  --muted: #9AA4B2;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --accent: #4F6FFF;
  --accent-hover: #6683ff;
  --accent-2: #7C5CFF;
  --accent-soft: rgba(79, 111, 255, 0.16);
  --danger: #FF4D5A;
  --success: #35D07F;
  --warning: #fbbf24;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 12px 32px rgba(0, 0, 0, 0.4);
  --glow-accent: 0 0 0 1px rgba(79, 111, 255, 0.4), 0 0 32px rgba(79, 111, 255, 0.35), 0 0 64px rgba(124, 92, 255, 0.2);
  --glow-record: 0 0 0 1px rgba(255, 77, 90, 0.45), 0 0 32px rgba(255, 77, 90, 0.4), 0 0 64px rgba(255, 77, 90, 0.22);
}

* { box-sizing: border-box; }

/* Author-stylesheet display rules (e.g. .button { display: inline-block })
   have the same specificity as the browser's default [hidden] rule, so
   whichever is declared later in the cascade wins -- without this, any
   element that is both .button and [hidden] (cancel-btn, retry-btn,
   record-resume-btn) renders visible even while "hidden" is set. */
[hidden] { display: none !important; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
