/* ==========================================================================
   Breakout Radar — Discovery Feed & Explainability Engine Stylesheet
   Design System: Terminal / Bloomberg Quantitative Dark Aesthetic
   ========================================================================== */

/* Overview Banner */
.radar-stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

@media (max-width: 900px) {
  .radar-stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .radar-stats-banner {
    grid-template-columns: 1fr;
  }
}

.radar-stat-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 72px;
  position: relative;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.radar-stat-box:hover {
  border-color: var(--border-default);
  background: var(--bg-surface-elevated);
}

.radar-stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.radar-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.radar-stat-value {
  font-family: var(--font-mono);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0.2rem 0;
  color: var(--text-primary);
}

.radar-stat-caption {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* Control & Filter Bar (Edge-to-Edge Toolbar) */
.radar-controls-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.85rem;
  margin-bottom: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.radar-controls-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.radar-control-cluster {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.radar-control-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 0.15rem;
}

/* Filter Chips / Segmented Buttons */
.radar-chip {
  height: 26px;
  padding: 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.12s ease;
  user-select: none;
}

.radar-chip:hover {
  color: var(--text-primary);
  border-color: var(--border-default);
  background: var(--bg-surface-hover);
}

.radar-chip.active {
  color: var(--tappa-orange);
  background: var(--tappa-orange-subtle);
  border-color: var(--tappa-orange-border);
}

.radar-chip.active-tier1 {
  color: var(--tappa-orange);
  background: var(--tappa-orange-subtle);
  border-color: var(--tappa-orange);
}

.radar-chip.active-tier2 {
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
}

.radar-chip.active-tier3 {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.4);
}

.radar-chip.active-amber {
  color: var(--accent-amber);
  background: var(--accent-amber-dim);
  border-color: var(--accent-amber-border);
}

/* Preset Dropdown */
.radar-select {
  height: 26px;
  padding: 0 1.6rem 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-primary);
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  cursor: pointer;
  outline: none;
  font-family: var(--font-sans);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  transition: border-color 0.12s ease, background-color 0.12s ease;
}

.radar-select:hover {
  border-color: var(--border-default);
  background-color: var(--bg-surface-hover);
}

.radar-select:focus {
  border-color: var(--tappa-orange);
}

.radar-select option {
  background-color: var(--bg-surface);
  color: var(--text-primary);
}

/* Shelf Toggle Checkbox Chips */
.radar-shelf-toggle {
  height: 26px;
  padding: 0 0.55rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-xs);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.12s ease;
}

.radar-shelf-toggle:hover {
  color: var(--text-secondary);
  border-color: var(--border-default);
}

.radar-shelf-toggle.active {
  color: var(--text-primary);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-default);
}

/* Search input - Stretches edge-to-edge across available row space */
.radar-search-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 1 1 160px;
  min-width: 140px;
}

.radar-controls-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  flex-shrink: 0;
}

.radar-search-input {
  width: 100%;
  height: 26px;
  padding: 0 0.6rem 0 1.8rem;
  font-size: 0.75rem;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  color: var(--text-primary);
  outline: none;
  font-family: var(--font-sans);
}

.radar-search-input:focus {
  border-color: var(--tappa-orange);
}

.radar-search-icon {
  position: absolute;
  left: 0.55rem;
  color: var(--text-dim);
  pointer-events: none;
}

/* Cards Feed Grid */
.radar-feed-container {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

/* Breakout Player Card */
.radar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  overflow: hidden;
}

.radar-card:hover {
  border-color: var(--border-default);
  background: #131722;
}

.radar-card.tier-1 {
  border-left: 3px solid #38bdf8;
}

.radar-card.tier-2 {
  border-left: 3px solid #10b981;
}

.radar-card.tier-3 {
  border-left: 3px solid #f59e0b;
}

.radar-card.rookie {
  border-left: 3px solid #38bdf8;
  background: rgba(56, 189, 248, 0.02);
}

.radar-card.elite {
  border-left: 3px solid #a855f7;
}

.radar-card.watching {
  border-left: 3px solid #64748b;
  opacity: 0.92;
}

.radar-card.expanded {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.6);
  background: #141824;
}

/* Collapsed Bar (The default scannable list item) */
.radar-card-collapsed {
  display: grid;
  grid-template-columns: 44px minmax(200px, 1.4fr) minmax(280px, 2fr) minmax(130px, 1fr) 110px 48px;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  cursor: pointer;
  user-select: none;
}

@media (max-width: 1100px) {
  .radar-card-collapsed {
    grid-template-columns: 40px minmax(180px, 1.2fr) 1fr 100px 40px;
  }
  .radar-card-collapsed .radar-sparkline-wrap {
    display: none;
  }
}

@media (max-width: 800px) {
  .radar-card-collapsed {
    grid-template-columns: 40px 1fr 90px 36px;
  }
  .radar-card-collapsed .radar-card-driver-col {
    display: none;
  }
}

/* Player Identity Strip */
.radar-player-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xs);
  background: var(--bg-surface-elevated);
  object-fit: cover;
  border: 1px solid var(--border-subtle);
}

.radar-player-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  overflow: hidden;
}

.radar-player-name-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.radar-player-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.radar-player-name:hover {
  color: var(--tappa-orange);
}

.radar-player-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.radar-team-tag {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-secondary);
}

/* Tier Badge */
.radar-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.12rem 0.45rem;
  border-radius: var(--radius-xs);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.radar-tier-badge.tier-1 {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.radar-tier-badge.tier-2 {
  color: #10b981;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.radar-tier-badge.tier-3 {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.radar-tier-badge.rookie {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.radar-tier-badge.elite {
  color: #c084fc;
  background: rgba(192, 132, 252, 0.14);
  border: 1px solid rgba(192, 132, 252, 0.35);
}

.radar-tier-badge.watching {
  color: #94a3b8;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

/* Driver Column */
.radar-card-driver-col {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  overflow: hidden;
}

.radar-top-driver {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.radar-card-badges-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

/* Pivot Cross-Engine Badge */
.radar-pivot-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.63rem;
  font-weight: 600;
  padding: 0.08rem 0.35rem;
  border-radius: var(--radius-xs);
  white-space: nowrap;
}

.radar-pivot-chip.validated {
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.radar-pivot-chip.unproven {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.radar-pivot-chip.hot-streak {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

/* Confidence Tag */
.radar-confidence-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.63rem;
  font-weight: 600;
  padding: 0.08rem 0.35rem;
  border-radius: var(--radius-xs);
  color: var(--text-muted);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
}

.radar-confidence-chip.stable {
  color: var(--accent-emerald);
  border-color: rgba(52, 211, 153, 0.2);
}

.radar-confidence-chip.early {
  color: var(--accent-amber);
  border-color: rgba(251, 191, 36, 0.2);
}

/* Deputizing Flag Icon */
.radar-deputizing-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.63rem;
  font-weight: 600;
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.25);
  padding: 0.08rem 0.35rem;
  border-radius: var(--radius-xs);
}

/* Sparkline & Divergence Column */
.radar-sparkline-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.radar-sparkline-svg {
  width: 96px;
  height: 22px;
  overflow: visible;
}

.radar-divergence-text {
  font-size: 0.62rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  white-space: nowrap;
}

.radar-divergence-text.accelerating {
  color: var(--accent-emerald);
}

.radar-divergence-text.cooling {
  color: var(--accent-rose);
}

/* Score Column */
.radar-score-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.radar-velocity-score {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}

.radar-score-window-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Actions Column (Watchlist Star & Chevron) */
.radar-actions-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.radar-icon-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  width: 26px;
  height: 26px;
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.12s ease;
}

.radar-icon-btn:hover {
  color: var(--text-primary);
  background: var(--bg-surface-elevated);
}

.radar-icon-btn.starred {
  color: var(--accent-amber);
}

.radar-expand-chevron {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.radar-card.expanded .radar-expand-chevron {
  transform: rotate(180deg);
}

/* Expanded Card Stage (The "What Changed" Explainability Engine) */
.radar-card-expanded {
  padding: 1rem 1.1rem;
  border-top: 1px solid var(--border-subtle);
  background: rgba(13, 16, 23, 0.6);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: radarFadeIn 0.2s ease;
}

@keyframes radarFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Section 6.1 Stacked Contribution Bar */
.radar-contribution-stage {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
}

.radar-stage-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.radar-stage-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.radar-stacked-bar {
  width: 100%;
  height: 18px;
  background: var(--bg-surface-elevated);
  border-radius: var(--radius-xs);
  display: flex;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  margin-bottom: 0.65rem;
}

.radar-stacked-segment {
  height: 100%;
  position: relative;
  transition: opacity 0.15s ease, filter 0.15s ease;
}

.radar-stacked-segment:hover {
  filter: brightness(1.2);
  cursor: pointer;
}

/* Sub-score legend grid */
.radar-subscore-legend-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

@media (max-width: 950px) {
  .radar-subscore-legend-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 550px) {
  .radar-subscore-legend-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.radar-subscore-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.4rem 0.55rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
}

.radar-subscore-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.radar-subscore-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.radar-subscore-val {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.radar-subscore-contrib {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: var(--text-secondary);
}

/* Section 6.2 Trust & Caveat Badges Grid */
.radar-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

@media (max-width: 950px) {
  .radar-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .radar-trust-grid {
    grid-template-columns: 1fr;
  }
}

.radar-trust-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.radar-trust-card-title {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.radar-trust-card-value {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.radar-trust-card-desc {
  font-size: 0.65rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* Scouting Badges Row */
.radar-scouting-badges-stage {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.radar-scout-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-xs);
  font-size: 0.68rem;
  font-weight: 600;
  border: 1px solid;
}

/* Historical Comp & Narrative Two-Column Stage */
.radar-comp-narrative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 800px) {
  .radar-comp-narrative-grid {
    grid-template-columns: 1fr;
  }
}

.radar-comp-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.radar-comp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.radar-comp-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

.radar-comp-match-pct {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-emerald);
  background: rgba(52, 211, 153, 0.12);
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
}

.radar-narrative-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.radar-narrative-headline {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}

.radar-narrative-body {
  font-size: 0.7rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* Card Bottom Exit Bar */
.radar-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
}

.radar-deep-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 28px;
  padding: 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--tappa-orange, #ea580c);
  border: none;
  border-radius: var(--radius-xs);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
}

.radar-deep-link-btn:hover {
  background: var(--tappa-orange-hover, #f97316);
  box-shadow: 0 0 8px rgba(234, 88, 12, 0.4);
}

/* Shelves Containers */
.radar-shelf-container {
  margin-top: 1.5rem;
  background: rgba(17, 20, 28, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
}

.radar-shelf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.radar-shelf-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.radar-shelf-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.radar-shelf-subtitle {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* Modal Styling */
.radar-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.radar-modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.5rem;
}

.radar-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.radar-modal-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Priors Table */
.radar-priors-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.72rem;
  margin-top: 0.5rem;
}

.radar-priors-table th,
.radar-priors-table td {
  padding: 0.45rem 0.6rem;
  border-bottom: 1px solid var(--border-subtle);
  text-align: right;
}

.radar-priors-table th:first-child,
.radar-priors-table td:first-child {
  text-align: left;
}

.radar-priors-table th {
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.65rem;
  background: var(--bg-surface-elevated);
}

.radar-priors-table td {
  font-family: var(--font-mono);
  color: var(--text-secondary);
}
