/* ============================================================
   POM Components — All UI components using design tokens
   ============================================================ */

/* ============================================================
   C1: HEADER
   ============================================================ */
.header {
  height: var(--header-height);
  background: var(--header-bg);
  border-bottom: var(--header-border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--header-shadow);
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--header-brand-font);
  font-weight: var(--header-brand-weight);
  font-size: var(--header-brand-size);
  letter-spacing: var(--header-brand-spacing);
  text-transform: var(--header-brand-transform);
  color: var(--header-text);
  white-space: nowrap;
}
.header-brand svg { flex-shrink: 0; }
.header-spacer { flex: 1; }

.site-select {
  padding: 6px 12px;
  border: var(--header-ctrl-border);
  border-radius: var(--header-ctrl-radius);
  font-family: var(--header-ctrl-font);
  font-size: 15px;
  font-weight: 700;
  background: var(--header-ctrl-bg);
  color: var(--header-text);
  cursor: pointer;
  min-height: 44px;
  text-transform: var(--header-brand-transform);
  letter-spacing: 1px;
}
.site-select option {
  background: var(--header-option-bg);
  color: var(--header-option-text);
}

/* Header button groups (contrib toggle, design toggle) */
.contrib-toggle,
.design-toggle {
  display: flex;
  border: var(--header-ctrl-border);
  border-radius: var(--header-ctrl-radius);
  overflow: hidden;
  min-height: 44px;
}
.contrib-btn {
  padding: 8px 20px;
  border: none;
  background: var(--header-ctrl-bg);
  color: var(--header-ctrl-text);
  font-family: var(--header-ctrl-font);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s;
  min-width: 88px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}
.contrib-btn.active {
  background: var(--header-ctrl-active-bg);
  color: var(--header-ctrl-active-text);
}

.design-toggle a {
  padding: 8px 14px;
  border: none;
  background: var(--header-ctrl-bg);
  color: var(--header-ctrl-text);
  font-family: var(--header-ctrl-font);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.15s;
  text-transform: var(--header-brand-transform);
  letter-spacing: 1px;
}
.design-toggle a + a { border-left: 1px solid var(--header-ctrl-text); }
.design-toggle a.active {
  background: var(--header-ctrl-active-bg);
  color: var(--header-ctrl-active-text);
}

.reset-all-btn {
  padding: 8px 16px;
  border: var(--header-ctrl-border);
  border-radius: var(--header-ctrl-radius);
  background: var(--header-ctrl-bg);
  color: var(--header-ctrl-text);
  font-family: var(--header-ctrl-font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
  white-space: nowrap;
  transition: all 0.15s;
  text-transform: var(--header-brand-transform);
  letter-spacing: 1.5px;
}
.reset-all-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   C2: TOP INPUT BAR
   ============================================================ */
.top-input-bar {
  display: flex;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  flex-wrap: wrap;
  align-items: center;
}
.top-input-group {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  background: transparent;
  min-height: 44px;
}
.top-input-label {
  font-family: var(--input-label-font);
  font-size: 14px;
  font-weight: var(--input-label-weight);
  color: var(--text-primary);
  white-space: nowrap;
  text-transform: var(--input-label-transform);
  letter-spacing: var(--input-label-spacing);
}
.top-input {
  width: 80px;
  padding: 6px 10px;
  border: var(--input-border);
  border-radius: var(--input-radius);
  font-family: var(--input-font);
  font-size: 17px;
  font-weight: var(--input-weight);
  text-align: right;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  background: #fff;
}
.top-input:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}
.top-input-suffix {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ============================================================
   C3: LEFT SIDEBAR
   ============================================================ */
.left-sidebar {
  background: var(--baseline-bg);
  border-right: 1px solid var(--border);
  padding: 20px 16px;
  overflow-y: auto;
}
.left-sidebar h3 {
  font-family: var(--sidebar-heading-font);
  font-size: var(--sidebar-heading-size);
  text-transform: var(--sidebar-heading-transform);
  letter-spacing: var(--sidebar-heading-spacing);
  font-weight: var(--sidebar-heading-weight);
  color: var(--text-primary);
  margin-bottom: 12px;
  margin-top: 16px;
  border-bottom: var(--sidebar-heading-border);
  padding-bottom: 6px;
}
.left-sidebar h3:first-child { margin-top: 0; }

.sidebar-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 16px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  overflow: visible;
  box-shadow: var(--shadow-card);
}

/* ============================================================
   C4: GAUGE CARD
   ============================================================ */
.gauge-card {
  text-align: center;
  margin-bottom: 8px;
  overflow: visible;
}
.gauge-label {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gauge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.gauge-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-top: 0;
  letter-spacing: 1px;
}

/* ============================================================
   C5: BASELINE CARD
   ============================================================ */
.bl-hero {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.bl-annual {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.bl-row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  font-size: 12px;
}
.bl-row .bl-label { color: var(--text-muted); }
.bl-row .bl-value { font-weight: 700; color: var(--text-primary); }

.bl-levels { margin-top: 8px; }
.bl-level-row {
  display: flex;
  justify-content: space-between;
  padding: 1px 0;
  font-size: 11px;
}
.bl-level-label { color: var(--text-muted); }
.bl-level-value { font-weight: 600; color: var(--text-muted); }

.pa-pct-row {
  text-align: center;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 800;
  color: var(--text-primary);
  padding: 6px 0;
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  background: var(--accent-surface);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   C6: CENTER PANEL
   ============================================================ */
.center-panel {
  padding: 24px 32px;
  overflow-y: auto;
}

/* ============================================================
   C7: SPEEDOMETER
   ============================================================ */
.speedometer-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  margin-top: 8px;
  position: relative;
}
.speedometer-wrap {
  position: relative;
  width: 346px;
  height: 279px;
  overflow: visible;
  flex-shrink: 0;
}
.speedometer-svg {
  width: 346px;
  height: 279px;
}
.speedometer-value {
  text-align: left;
  pointer-events: none;
  flex-shrink: 0;
}
.speedometer-rate-label {
  font-family: var(--speedo-label-font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-muted);
  display: block;
  margin-bottom: 2px;
}
.speedometer-rate {
  font-family: var(--speedo-rate-font);
  font-size: var(--speedo-rate-size);
  font-weight: var(--speedo-rate-weight);
  color: var(--speedo-rate-color);
  display: block;
  line-height: 0.85;
  letter-spacing: -1px;
}
.speedometer-rate-suffix {
  font-family: var(--speedo-suffix-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-muted);
  letter-spacing: 2px;
}
.speedometer-delta {
  font-family: var(--speedo-delta-font);
  font-size: 18px;
  font-weight: 800;
  margin-top: 6px;
  display: block;
  letter-spacing: 1px;
}
.speedometer-delta.positive { color: var(--delta-positive); }
.speedometer-delta.negative { color: var(--delta-negative); }
.speedometer-delta.zero { color: var(--text-muted); }

.speedo-needle-group {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: 136px 136px;
}

/* ============================================================
   C8: LEVERS
   ============================================================ */
.levers-section {
  margin-bottom: 20px;
}
.lever {
  height: var(--lever-height);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 4px;
}
.lever-label {
  font-family: var(--lever-label-font);
  font-size: var(--lever-label-size);
  font-weight: var(--lever-label-weight);
  color: var(--text-primary);
  min-width: var(--lever-label-width);
  white-space: nowrap;
  letter-spacing: var(--lever-label-spacing);
  text-transform: var(--lever-label-transform);
}
.lever-slider-wrap {
  flex: 1;
  min-width: 140px;
  position: relative;
}
.lever-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: var(--lever-track-height);
  border-radius: 3px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.lever-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: var(--lever-thumb-size);
  height: var(--lever-thumb-size);
  border-radius: var(--lever-thumb-radius);
  background: var(--accent);
  cursor: pointer;
  border: 2px solid var(--accent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  margin-top: calc(var(--lever-thumb-size) / -2.5);
}
.lever-range::-moz-range-thumb {
  width: var(--lever-thumb-size);
  height: var(--lever-thumb-size);
  border-radius: var(--lever-thumb-radius);
  background: var(--accent);
  cursor: pointer;
  border: 2px solid var(--accent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.lever-range::-webkit-slider-runnable-track {
  height: calc(var(--lever-track-height) + 2px);
  border-radius: 4px;
}
.lever-range::-moz-range-track {
  height: calc(var(--lever-track-height) + 2px);
  border-radius: 4px;
  background: var(--border);
}
.lever-input {
  width: 80px;
  padding: 8px 12px;
  border: var(--lever-input-border);
  border-radius: var(--lever-input-radius);
  font-family: var(--lever-input-font);
  font-size: var(--lever-input-size);
  font-weight: var(--lever-input-weight);
  text-align: right;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  min-height: 40px;
}
.lever-input:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}
.lever-reset {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.lever-reset:hover {
  background: var(--baseline-bg);
  color: var(--accent);
}
.lever-delta {
  font-family: var(--lever-delta-font);
  font-size: 12.5px;
  color: var(--text-primary);
  padding: 0 4px 0 var(--lever-delta-indent);
  margin-top: -2px;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.75px;
}
.lever-delta .delta-impact { color: var(--accent); font-weight: 800; }
.lever-delta .delta-pos { color: var(--delta-positive); }
.lever-delta .delta-neg { color: var(--delta-negative); }

/* ============================================================
   C9: FINANCIAL TABLE
   ============================================================ */
.financial-table-section { margin-top: 16px; }
.financial-table-section h3 {
  font-family: var(--fin-heading-font);
  font-size: var(--fin-heading-size);
  font-weight: var(--fin-heading-weight);
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: var(--fin-heading-spacing);
  text-transform: uppercase;
  border-bottom: var(--fin-heading-border);
  padding-bottom: 8px;
  display: inline-block;
}
.financial-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.financial-table th {
  text-align: left;
  font-family: var(--fin-th-font);
  font-size: 12px;
  font-weight: var(--fin-th-weight);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--fin-th-spacing);
  padding: 8px 12px;
  border-bottom: var(--fin-th-border);
}
.financial-table th:nth-child(2),
.financial-table th:nth-child(3),
.financial-table th:nth-child(4),
.financial-table th:nth-child(5),
.financial-table th:nth-child(6) { text-align: right; }
.financial-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  font-variant-numeric: tabular-nums;
}
.financial-table td:nth-child(2),
.financial-table td:nth-child(3),
.financial-table td:nth-child(4),
.financial-table td:nth-child(5),
.financial-table td:nth-child(6) { text-align: right; font-weight: 700; }
.financial-table tr:last-child td {
  border-bottom: var(--fin-last-row-border);
  font-weight: 800;
}
.fin-cat-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
  opacity: 0.35;
}
.fin-delta-pos { color: var(--delta-positive); }
.fin-delta-neg { color: var(--delta-negative); }
.fin-delta-zero { color: var(--text-muted); }

/* ============================================================
   C10: RIGHT SIDEBAR + COST DIALS
   ============================================================ */
.right-sidebar {
  background: var(--baseline-bg);
  border-left: 1px solid var(--border);
  padding: 16px 14px;
  overflow-y: auto;
}
.right-sidebar h3 {
  font-family: var(--sidebar-heading-font);
  font-size: var(--sidebar-heading-size);
  text-transform: var(--sidebar-heading-transform);
  letter-spacing: var(--sidebar-heading-spacing);
  font-weight: var(--sidebar-heading-weight);
  color: var(--text-primary);
  margin-bottom: 12px;
  border-bottom: var(--sidebar-heading-border);
  padding-bottom: 6px;
}

.cost-dial-card {
  display: flex;
  align-items: center;
  gap: var(--dial-card-gap);
  padding: var(--dial-card-padding);
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--dial-card-radius);
  cursor: default;
  box-shadow: var(--dial-card-shadow);
}
.cost-dial-label-col {
  display: var(--dial-label-col-display);
  flex: 0 0 auto;
  min-width: 56px;
  text-align: right;
  flex-direction: column;
}
.cost-dial-label-col .dial-label-small {
  font-family: var(--dial-name-font);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.cost-dial-label-col .dial-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
  display: block;
  line-height: 1.1;
  letter-spacing: 0.5px;
}
.cost-dial-svg-wrap {
  position: relative;
  width: var(--dial-svg-size);
  height: var(--dial-svg-size);
  flex-shrink: 0;
  cursor: pointer;
}
.cost-dial-svg-wrap svg {
  width: var(--dial-svg-size);
  height: var(--dial-svg-size);
  opacity: var(--dial-svg-opacity);
}
.cost-dial-center-val {
  display: var(--dial-center-val-display);
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  pointer-events: none;
}
.cost-dial-info {
  flex: 1;
  min-width: 0;
}
.cost-dial-name {
  font-family: var(--dial-name-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  text-transform: var(--dial-name-transform);
  letter-spacing: 0.5px;
}
.cost-dial-impact {
  font-family: var(--dial-impact-font);
  font-size: var(--dial-impact-size);
  font-weight: 800;
  color: var(--text-primary);
  white-space: nowrap;
  letter-spacing: -0.5px;
}
.cost-dial-impact-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.cost-dial-hidden-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

/* ============================================================
   C11: LOCUMS SECTION
   ============================================================ */
.locums-section {
  margin-top: 8px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}
.locums-toggle-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.locums-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}
.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  cursor: pointer;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 11px;
  transition: 0.2s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  bottom: 3px;
  left: 3px;
  transition: 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(18px);
}
.locums-fields { display: none; margin-top: 8px; }
.locums-fields.visible { display: block; }

/* ============================================================
   C12: FREEZE / KEEP / REVERT
   ============================================================ */
/* Unfrozen state: single FREEZE button */
.freeze-btn {
  display: var(--freeze-btn-display);
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border: 3px solid var(--header-text);
  border-radius: var(--header-ctrl-radius);
  background: transparent;
  color: var(--header-text);
  font-family: var(--header-ctrl-font);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  min-height: 44px;
  white-space: nowrap;
  transition: all 0.15s;
  text-transform: var(--header-brand-transform);
  letter-spacing: 2px;
}
.freeze-btn:hover {
  border-color: var(--frozen);
  color: var(--frozen);
}

/* Frozen state: split button group */
.freeze-group {
  display: none;
  align-items: center;
  gap: 0;
  min-height: 44px;
}
.freeze-group.visible { display: flex; }
.freeze-group .frozen-keep,
.freeze-group .frozen-revert {
  padding: 8px 14px;
  border: 3px solid var(--frozen);
  background: var(--frozen);
  color: #FFFFFF;
  font-family: var(--header-ctrl-font);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  min-height: 44px;
  white-space: nowrap;
  transition: all 0.15s;
  text-transform: var(--header-brand-transform);
  letter-spacing: 1.5px;
}
.freeze-group .frozen-keep {
  border-radius: var(--header-ctrl-radius) 0 0 var(--header-ctrl-radius);
  border-right: 2px solid rgba(255,255,255,0.3);
}
.freeze-group .frozen-revert {
  border-radius: 0 var(--header-ctrl-radius) var(--header-ctrl-radius) 0;
  border-left: none;
  padding: 8px 12px;
  font-size: 16px;
}
.freeze-group .frozen-keep:hover {
  background: #3A6FBF;
  border-color: #3A6FBF;
}
.freeze-group .frozen-revert:hover {
  background: #3A6FBF;
  border-color: #3A6FBF;
}

/* Frozen status label in header */
.frozen-status {
  display: none;
  font-family: var(--header-ctrl-font);
  font-size: 12px;
  font-weight: 800;
  color: var(--frozen);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: frozen-pulse 3s ease-in-out infinite;
}
.frozen-status.visible { display: flex; align-items: center; gap: 6px; }
@keyframes frozen-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Frozen value annotations (icy blue) */
.frozen-val {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  color: var(--frozen);
  letter-spacing: 0.5px;
  margin-left: 6px;
  display: block;
}
.frozen-rate-annotation {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  color: var(--frozen);
  letter-spacing: 1px;
  display: none;
  margin-top: 2px;
}
.frozen-rate-annotation.visible { display: block; }

/* ============================================================
   C13: FOOTER
   ============================================================ */
.footer {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: var(--footer-border);
  font-family: var(--footer-font);
  font-size: 12px;
  font-weight: 700;
  color: #6B6B6B;
  padding: 0 24px;
  letter-spacing: var(--footer-spacing);
  text-transform: uppercase;
}

/* ============================================================
   C14: KPI STRIP (Kruzeniski only — hidden by default)
   ============================================================ */
.kpi-strip {
  display: var(--kpi-strip-display);
  gap: 14px;
  padding: 16px 32px;
  background: var(--surface);
  border-bottom: 2px solid var(--border);
  align-items: stretch;
}
.kpi-card {
  flex: 1;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 88px;
  transition: border-color 0.2s, background 0.2s;
}
.kpi-card.hero {
  border-color: var(--accent);
  background: var(--accent-surface);
  flex: 1.5;
}
.kpi-card.status-good { border-color: var(--delta-positive); background: var(--delta-positive-bg); }
.kpi-card.status-bad { border-color: var(--delta-negative); background: var(--delta-negative-bg); }
.kpi-card.status-warn { border-color: var(--gauge-yellow); }
.kpi-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.kpi-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}
.kpi-value.hero-rate {
  font-size: 32px;
  color: var(--accent);
}
.kpi-delta {
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
}
.kpi-delta.positive { color: var(--delta-positive); }
.kpi-delta.negative { color: var(--delta-negative); }
.kpi-delta.zero { color: var(--text-muted); }

/* ============================================================
   TEST BANNER
   ============================================================ */
.test-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  z-index: 200;
  font-family: monospace;
}
.test-banner.pass { background: #D1FAE5; color: #065F46; }
.test-banner.fail { background: #FEE2E2; color: #991B1B; }
