/* ── reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

:root {
  --blue:   #2563EB;
  --blue-d: #1D4ED8;
  --green:  #16A34A;
  --red:    #DC2626;
  --yellow: #F59E0B;
  --purple: #7C3AED;
  --bg:     #F0F4FF;
  --card:   #FFFFFF;
  --text:   #1E293B;
  --muted:  #64748B;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(37,99,235,.13);
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ── setup / loading screen ───────────────────────────────────────────────── */
#setup-screen {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.setup-card {
  background: var(--card);
  border-radius: 24px;
  padding: 32px 28px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.setup-card h1 {
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 800;
  color: var(--blue);
}

.setup-subtitle {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
}

.model-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.model-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}

.model-option:has(input:checked) {
  border-color: var(--blue);
  background: #EFF6FF;
}

.model-option input[type="radio"] {
  accent-color: var(--blue);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.model-info strong { display: block; font-size: .95rem; color: var(--text); }
.model-info span   { font-size: .82rem; color: var(--muted); }

.setup-note {
  font-size: .82rem;
  color: var(--muted);
  background: #F8FAFC;
  border-radius: 10px;
  padding: 10px 14px;
}

.progress-track {
  height: 8px;
  background: #E2E8F0;
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: 99px;
  width: 0%;
  transition: width .6s ease;
}

.progress-text {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 6px;
  min-height: 1.2em;
}

/* ── header ───────────────────────────────────────────────────────────────── */
header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  color: #fff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
  flex-shrink: 0;
}

header h1 {
  font-size: clamp(1rem, 4vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -.3px;
  white-space: nowrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.stat-pill {
  font-size: .8rem;
  font-weight: 600;
  background: rgba(255,255,255,.2);
  padding: 3px 9px;
  border-radius: 99px;
  white-space: nowrap;
}

#streak-count:empty,
#practiced-count:empty { display: none; }

.btn-icon {
  background: rgba(255,255,255,.25);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  cursor: pointer;
  font-size: 1rem;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
}
.btn-icon:hover { background: rgba(255,255,255,.4); }

/* ── settings panel ───────────────────────────────────────────────────────── */
.settings-panel {
  background: var(--card);
  border-bottom: 2px solid #E2E8F0;
  padding: 12px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.settings-panel label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
}

.settings-panel input[type="number"],
.settings-panel select {
  padding: 5px 8px;
  border: 2px solid #CBD5E1;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  background: #F8FAFC;
  cursor: pointer;
  transition: border-color .15s;
}
.settings-panel input[type="number"] { width: 64px; text-align: center; }
.settings-panel input[type="number"]:focus,
.settings-panel select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}

/* ── main layout ──────────────────────────────────────────────────────────── */
#app-screen {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 20px 16px 32px;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

/* ── chapter tabs (removed) ────────────────────────────────────────────── */


/* ── sentence card ────────────────────────────────────────────────────────── */
.sentence-card {
  width: 100%;
  background: linear-gradient(135deg, #EEF2FF 0%, #FAF5FF 100%);
  border: 3px solid #C7D2FE;
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  box-shadow: var(--shadow);
}

.sentence-text {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  line-height: 1.5;
  user-select: none;
}

@keyframes pop {
  0%   { transform: scale(.9); opacity: .4; }
  60%  { transform: scale(1.04); }
  100% { transform: scale(1);  opacity: 1; }
}
.sentence-text.pop { animation: pop .25s ease-out; }

/* ── sentence counter ─────────────────────────────────────────────────────── */
.sentence-meta {
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
}

/* ── controls ─────────────────────────────────────────────────────────────── */
.controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── buttons ──────────────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
  transition: background .15s, transform .1s;
}
.btn-primary:hover  { background: var(--blue-d); }
.btn-primary:active { transform: scale(.97); }
.btn-primary:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.btn-secondary {
  background: #F1F5F9;
  color: var(--text);
  border: 2px solid #CBD5E1;
  border-radius: 99px;
  padding: 8px 20px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.btn-secondary:hover { background: #E2E8F0; }

.btn-listen {
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(124,58,237,.3);
  transition: background .15s, transform .1s;
}
.btn-listen:hover  { background: #6D28D9; }
.btn-listen:active { transform: scale(.97); }
.btn-listen:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.mic-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 18px 44px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
  transition: transform .1s, box-shadow .1s, background .15s;
  user-select: none;
}
.mic-btn:hover  { background: var(--blue-d); transform: scale(1.03); }
.mic-btn:active { transform: scale(.97); }
.mic-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.mic-btn.recording {
  background: var(--red);
  box-shadow: 0 4px 24px rgba(220,38,38,.45);
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(220,38,38,.45); }
  50%       { box-shadow: 0 4px 40px rgba(220,38,38,.75); }
}

.btn-skip {
  background: #94a3b8;
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(100,116,139,.25);
  transition: background .15s, transform .1s;
}
.btn-skip:hover  { background: #64748b; }
.btn-skip:active { transform: scale(.97); }

.btn-replay {
  background: #F1F5F9;
  color: var(--text);
  border: 2px solid #CBD5E1;
  border-radius: 99px;
  padding: 12px 22px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.btn-replay:hover  { background: #E2E8F0; }
.btn-replay:active { transform: scale(.97); }

.btn-retry {
  background: var(--yellow);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 12px 24px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(245,158,11,.3);
  transition: background .15s, transform .1s;
}
.btn-retry:hover  { background: #D97706; }
.btn-retry:active { transform: scale(.97); }

.btn-next {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 12px 24px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(22,163,74,.3);
  transition: background .15s, transform .1s;
}
.btn-next:hover  { background: #15803D; }
.btn-next:active { transform: scale(.97); }

/* ── feedback area ────────────────────────────────────────────────────────── */
#feedback-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feedback-words {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  line-height: 2.4;
  min-height: 60px;
}

/* Word chips */
.word {
  display: inline-block;
  padding: 2px 10px;
  margin: 2px 3px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: default;
}
.word-correct { background: #DCFCE7; color: #166534; }
.word-close   { background: #FEF3C7; color: #92400E; }
.word-wrong   { background: #FEE2E2; color: #991B1B; }
.word-missing { background: #FEE2E2; color: #991B1B; text-decoration: line-through; opacity: .75; }

/* ── score bar ────────────────────────────────────────────────────────────── */
.score-row {
  background: var(--card);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .9rem;
}

.score-badge {
  font-size: 1.15rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 99px;
  white-space: nowrap;
}
.score-pass { background: #DCFCE7; color: #166534; }
.score-fail { background: #FEE2E2; color: #991B1B; }
.score-warn { background: #FEF3C7; color: #92400E; }

.score-label {
  font-weight: 700;
  color: var(--text);
  flex: 1;
}

.transcript-hint {
  width: 100%;
  font-size: .82rem;
  color: var(--muted);
}
.transcript-hint em { font-style: italic; }

/* ── fluency row ──────────────────────────────────────────────────────────── */
.fluency-row {
  background: var(--card);
  border-radius: var(--radius);
  padding: 10px 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: .85rem;
  color: var(--text);
}
.fluency-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.fluency-label {
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.fluency-speed {
  display: flex;
  align-items: center;
  gap: 6px;
}
.speed-bar {
  display: inline-flex;
  gap: 2px;
  align-items: flex-end;
}
.speed-bar span {
  width: 6px;
  border-radius: 2px;
  background: #e5e7eb;
}
.speed-bar span:nth-child(1) { height: 6px;  }
.speed-bar span:nth-child(2) { height: 9px;  }
.speed-bar span:nth-child(3) { height: 12px; }
.speed-bar span:nth-child(4) { height: 14px; }
.speed-bar span:nth-child(5) { height: 16px; }
.speed-bar span.active-slow { background: #f59e0b; }
.speed-bar span.active-ok   { background: #10b981; }
.fluency-sps {
  color: var(--muted);
  font-size: .8rem;
}
/* heard-words visualization */
.fluency-words-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  width: 100%;
}
.fluency-words-label {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}
.fluency-words {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.heard-word {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: .85rem;
  font-weight: 600;
}
.heard-word.speed-fast  { background: #dcfce7; color: #166534; }
.heard-word.speed-slow  { background: #fef3c7; color: #92400e; }
.heard-word.speed-vslow { background: #fee2e2; color: #991b1b; }
.heard-word.speed-edge  { background: #f3f4f6; color: #9ca3af; font-weight: 400; }
.pause-block {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 12px;
  font-size: .78rem;
  font-style: italic;
  background: #dbeafe;
  color: #1e40af;
}
.pause-block.pause-medium { background: #bfdbfe; color: #1d4ed8; }
.pause-block.pause-long   { background: #93c5fd; color: #1e3a8a; }
/* colour legend */
.fluency-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .78rem;
  color: var(--muted);
}
.fl-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.fl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.fl-dot.speed-fast-dot  { background: #22c55e; }
.fl-dot.speed-slow-dot  { background: #f59e0b; }
.fl-dot.speed-vslow-dot { background: #ef4444; }
.fl-dot.pause-dot       { background: #60a5fa; border-radius: 2px; }
.fl-dot.edge-dot        { background: #d1d5db; }
/* score help button */
.score-help-btn {
  margin-left: auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--muted);
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  font-size: .8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.score-help-btn:hover { border-color: var(--text); color: var(--text); }

/* ── action buttons row ───────────────────────────────────────────────────── */
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ── processing indicator ──────────────────────────────────────────────── */
.processing-indicator {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow);
  width: 100%;
}

.proc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--muted);
}

.proc-timer {
  margin-left: auto;
  font-size: .88rem;
  font-variant-numeric: tabular-nums;
  color: var(--blue);
  min-width: 3.5ch;
  text-align: right;
}

.progress-indeterminate {
  height: 4px;
  background: #E2E8F0;
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}
.progress-indeterminate::after {
  content: '';
  position: absolute;
  top: 0; left: -40%;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--blue), var(--purple), transparent);
  border-radius: 99px;
  animation: indeterminate 1.6s ease-in-out infinite;
}
@keyframes indeterminate {
  0%   { left: -40%; }
  100% { left: 100%; }
}

.spinner {
  width: 22px; height: 22px;
  border: 3px solid #E2E8F0;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  flex-shrink: 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── legend ───────────────────────────────────────────────────────────────── */
.legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.legend-dot {
  width: 12px; height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}
.legend-dot.correct { background: #DCFCE7; border: 1px solid #86EFAC; }
.legend-dot.close   { background: #FEF3C7; border: 1px solid #FDE68A; }
.legend-dot.wrong   { background: #FEE2E2; border: 1px solid #FCA5A5; }

/* ── webgpu banner ────────────────────────────────────────────────────────── */
.webgpu-banner {
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: .88rem;
  line-height: 1.5;
  color: #92400E;
  text-align: left;
}
.webgpu-banner.mobile {
  background: #EEF2FF;
  border-color: #C7D2FE;
  color: #3730A3;
}

/* ── disclaimer footer ────────────────────────────────────────────────────── */
.disclaimer-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 16px;
  background: #F1F5F9;
  border-top: 1px solid #E2E8F0;
  margin-top: auto;
}

.setup-footer {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  padding-top: 4px;
  border-top: 1px solid #E2E8F0;
}

.disc-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  color: var(--muted);
  font-size: .78rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.disc-btn:hover { background: #E2E8F0; color: var(--text); }

/* ── modal ───────────────────────────────────────────────────────────────── */
#modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 16px;
}

#modal-box {
  background: #fff;
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  overflow: hidden;
}

#modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
  border-bottom: 1px solid #E2E8F0;
}

#modal-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

#modal-close {
  background: #F1F5F9;
  border: none;
  border-radius: 50%;
  width: 30px; height: 30px;
  cursor: pointer;
  font-size: .9rem;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}
#modal-close:hover { background: #E2E8F0; color: var(--text); }

#modal-body {
  padding: 16px 20px 20px;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--text);
}
#modal-body a { color: var(--blue); }
#modal-body p + p { margin-top: 10px; }

/* ── setup screen select row ─────────────────────────────────────────────── */
.setup-select-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.setup-select-row select {
  flex: 1;
  font-size: .85rem;
  padding: 7px 8px;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  background: var(--card);
  color: var(--text);
  cursor: pointer;
}

/* ── per-file download list ──────────────────────────────────────────────── */
.file-list {
  list-style: none;
  padding: 0; margin: 0;
  text-align: left;
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 2px 0;
}

.file-icon { flex-shrink: 0; width: 1.3em; text-align: center; }

.file-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, monospace;
}

.file-pct {
  min-width: 36px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.file-item.downloading .file-name { color: var(--blue); font-weight: 600; }
.file-item.done .file-name         { color: var(--green); }
.file-item.pending .file-pct       { color: #CBD5E1; }

/* ── GPU detection & model recommendation ───────────────────────────────────── */
.rec-badge {
  display: none;
  font-size: .68rem;
  font-weight: 700;
  background: #059669;
  color: #fff;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 7px;
  vertical-align: middle;
  letter-spacing: .03em;
}

.model-option.recommended .rec-badge { display: inline; }

.model-option.recommended {
  border-color: #059669;
}

.model-option.recommended:has(input:checked) {
  border-color: #059669;
  background: #F0FDF4;
}

.gpu-rec {
  font-size: .82rem;
  color: #065F46;
  background: #D1FAE5;
  border: 1px solid #6EE7B7;
  border-radius: 10px;
  padding: 9px 13px;
  text-align: left;
}

/* ── deterministic processing progress bar ──────────────────────────────────── */
.proc-progress-track {
  width: 100%;
  height: 6px;
  background: #E2E8F0;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 6px;
}

.proc-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--blue);
  border-radius: 3px;
  transition: width 0.1s linear;
}

/* ── volume meter ────────────────────────────────────────────────────────────── */
.vol-bar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 4px;
}

.vol-label {
  font-size: 1rem;
  flex-shrink: 0;
}

.vol-bar-track {
  flex: 1;
  height: 8px;
  background: #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
}

.vol-bar-inner {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: linear-gradient(90deg, #22C55E, #86EFAC);
  transition: width 0.05s ease-out;
}

.vol-bar-inner.loud {
  background: linear-gradient(90deg, #22C55E, #EAB308);
}

.vol-bar-inner.clipping {
  background: linear-gradient(90deg, #EAB308, #EF4444);
}

.vol-warning {
  font-size: .78rem;
  font-weight: 600;
  color: #DC2626;
  white-space: nowrap;
  flex-shrink: 0;
}
