/* Scoreboard widgets — soft pastel scorecard */

/* ---------- Header ---------- */

.nothing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px 12px;
  border-bottom: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  z-index: 4;
}

.header-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.match-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  width: fit-content;
  max-width: 100%;
}

.tournament-title {
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.series-badge { color: var(--live); text-transform: uppercase; font-size: 11px; letter-spacing: 0.08em; }
.meta-sep { color: var(--ink-4); }

.match-context {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  padding-left: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(52vw, 640px);
}

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

.glyph-btn,
.live-sync-indicator {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 160ms var(--ease), border-color 160ms var(--ease), color 160ms var(--ease), transform 140ms var(--ease);
}

.glyph-btn svg,
.live-sync-indicator svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.glyph-btn:hover,
.live-sync-indicator:hover {
  background: var(--paper-2);
  color: var(--ink);
  border-color: var(--line-strong);
}

.glyph-btn:active { transform: scale(0.97); }

.glyph-btn.active {
  background: var(--ink);
  color: var(--on-ink);
  border-color: var(--ink);
}

.live-sync-indicator.synced {
  border-color: rgba(239, 90, 60, 0.4);
  color: var(--ink);
}

/* Settings popover */
.header-settings-wrap { position: relative; }

.settings-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 240px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 18px 44px rgba(29, 31, 36, 0.14);
  z-index: 30;
  animation: popIn 160ms var(--ease);
}

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

.settings-popover[hidden] { display: none !important; }

.settings-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 10px 10px;
  cursor: pointer;
  text-align: left;
  transition: background 140ms var(--ease);
}

.settings-row:hover { background: var(--paper-2); }

.settings-row-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.settings-row-label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.settings-row-value {
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 600;
}

.settings-row-next {
  color: var(--ink-4);
  font-size: 12px;
  font-weight: 700;
}

.settings-row.active .settings-row-value { color: var(--mint-ink); }

/* ---------- Score hero ---------- */

.scoreboard-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 16px;
  width: min(1240px, 94%);
  margin: 0 auto;
  align-items: stretch;
}

.score-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 6px 6px;
}

.teams-headline {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.team-name {
  font-family: var(--font-active-score);
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}

.team-name.bowling-team { color: var(--ink-3); font-weight: 600; }

.vs-separator {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-4);
}

.main-score-display {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 4px 0 12px;
  line-height: 0.92;
  cursor: pointer;
  width: fit-content;
  border-radius: 16px;
}

.score-runs-wickets {
  font-size: clamp(4.6rem, 10vw, 7.8rem);
  letter-spacing: -0.04em;
  color: var(--ink);
  transition: transform 160ms var(--ease);
}

.score-overs {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 600;
  color: var(--ink-3);
}

.score-overs-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-4);
  margin-left: 4px;
}

.equation-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.equation-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
}

.equation-chip strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.equation-chip .chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.equation-chip.target-chip {
  border-color: transparent;
  background: var(--peach-bg);
  color: var(--peach-ink);
  max-width: 100%;
}

.equation-chip.target-chip span:last-child {
  color: var(--peach-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 44vw;
}

/* ---------- This over ---------- */

.overcount-wrapper {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 16px 18px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}

.overcount-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.overcount-label-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.overcount-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}

.overcount-over-num,
.over-runs-pill {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  background: var(--paper-2);
  padding: 4px 10px;
  border-radius: 8px;
}

.over-runs-pill { display: inline-flex; align-items: baseline; gap: 5px; }
.over-runs-pill span:first-child { font-size: 15px; font-weight: 800; color: var(--ink); }
.over-runs-label { font-size: 12px; color: var(--ink-3); font-weight: 600; }

.overcount-balls-row {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.ball-cell {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-active-score);
  font-size: 18px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.ball-cell.pending {
  background: transparent;
  border: 2px dashed var(--line-strong);
}

.ball-cell.pending::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--line-strong);
}

.ball-cell.dot { background: var(--paper-2); }
.ball-cell.dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-3);
}

.ball-cell.runs-1,
.ball-cell.runs-2,
.ball-cell.runs-3,
.ball-cell.runs-5 { background: var(--sky-bg); color: var(--sky-ink); }

.ball-cell.boundary-four { background: var(--mint-bg); color: var(--mint-ink); }
.ball-cell.boundary-six { background: var(--lav-bg); color: var(--lav-ink); }
.ball-cell.wicket { background: var(--coral-bg); color: var(--coral-ink); }

.ball-cell.extra {
  font-size: 12px;
  background: var(--butter-bg);
  color: var(--butter-ink);
}

.ball-cell.just-bowled { animation: ballFlash 0.45s var(--ease); }

@keyframes ballFlash {
  0% { transform: scale(0.55); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.ball-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
}

.ball-legend span { display: inline-flex; align-items: center; gap: 5px; }
.ball-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.recent-overs-reel {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prev-over-tag {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px 10px;
}

.prev-over-tag strong {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

.prev-over-runs { color: var(--ink-2); font-weight: 800; font-variant-numeric: tabular-nums; }

/* ---------- Cards ---------- */

.bento-stats-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.92fr;
  gap: 14px;
  width: min(1240px, 94%);
  margin: 0 auto;
}

.card-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px 11px;
  border-bottom: 1px solid var(--line);
}

.card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-hint {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hint-red { color: var(--live); }

/* Batters */
.batters-list { padding: 4px 16px; }

.batter-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.batter-row:last-child { border-bottom: none; }

.batter-info {
  display: flex;
  align-items: center;
  min-width: 0;
}

.batter-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.batter-row.non-striker .batter-name { color: var(--ink-2); font-weight: 700; }

.batter-score-pill { display: flex; align-items: baseline; gap: 5px; }

.batter-runs {
  font-size: 28px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.batter-balls {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 700;
}

.batter-stats-matrix {
  display: flex;
  gap: 8px;
}

.stat-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 42px;
  padding: 5px 7px;
  border-radius: 10px;
}

.stat-metric.m-fours { background: var(--mint-bg); color: var(--mint-ink); }
.stat-metric.m-sixes { background: var(--lav-bg); color: var(--lav-ink); }
.stat-metric.m-sr { background: var(--sky-bg); color: var(--sky-ink); }

.stat-label { font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; }
.stat-value { font-size: 15px; font-weight: 800; font-variant-numeric: tabular-nums; }

.partnership-container {
  padding: 12px 16px 14px;
  border-top: 1px solid var(--line);
  background: var(--card-2);
}

.partnership-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 8px;
}

.partnership-label-row > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.partnership-value { color: var(--ink); font-size: 16px; font-weight: 800; }
.pship-sr { margin-left: 8px; color: var(--ink-4); }
.pship-sr strong { color: var(--ink-2); }

.glyph-segmented-bar {
  display: flex;
  height: 8px;
  gap: 3px;
}

.glyph-segment {
  flex: 1;
  background: var(--paper-2);
  border-radius: 3px;
}

.glyph-segment.active-b1 { background: var(--mint-ink); }
.glyph-segment.active-b2 { background: var(--sky-ink); }

/* Bowlers */
.bowler-container {
  padding: 12px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bowler-end-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 5px;
}

.bowler-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}

.bowler-name.dim { color: var(--ink-2); font-weight: 700; font-size: 14px; }

.bowler-speed-badge {
  font-size: 12px;
  font-weight: 700;
  background: var(--sky-bg);
  color: var(--sky-ink);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bowler-speed-badge strong { font-size: 13px; font-weight: 800; }

.bowler-figures-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 8px;
  text-align: center;
}

.bowler-figure-item {
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 7px 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bowler-figure-item.highlight-w {
  background: var(--coral-bg);
  border-color: transparent;
  color: var(--coral-ink);
}

.fig-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-transform: uppercase;
}

.highlight-w .fig-label { color: inherit; opacity: 0.8; }

.fig-val {
  font-size: 17px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.other-bowler-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.other-bowler-figs,
.other-bowler-econ {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}

.other-bowler-econ strong { color: var(--ink); }

.momentum-widget {
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
}

.momentum-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 7px;
}

.momentum-caption { color: var(--ink-4); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.momentum-team-tag { color: var(--ink); }
#ui-win-teama { color: var(--mint-ink); }
#ui-win-teamb { color: var(--peach-ink); }

.momentum-led-bar { display: flex; gap: 3px; height: 8px; }

.led-node {
  flex: 1;
  background: var(--paper-2);
  border-radius: 3px;
}

.led-node.team-a { background: var(--mint-ink); }
.led-node.team-b { background: var(--peach-ink); }

/* Situation */
.situation-body {
  padding: 12px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.situation-block {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.situation-block .icon-chip { margin-top: 1px; }

.sit-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 3px;
}

.last-wicket-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}

.last-wicket-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.last-wicket-score {
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--coral-ink);
}

.last-wicket-dismissal,
.last-wicket-meta,
.extras-breakdown,
.fow-line {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.45;
}

.last-wicket-meta { color: var(--ink-3); margin-top: 2px; }

.extras-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.extras-total { font-size: 24px; color: var(--butter-ink); }

.last5-val {
  font-size: 24px;
  font-variant-numeric: tabular-nums;
  color: var(--lav-ink);
}

.fow-line { word-break: break-word; font-variant-numeric: tabular-nums; }

/* ---------- Footer ---------- */

.nothing-footer-console {
  padding: 12px 24px 14px;
  border-top: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 4;
  position: relative;
}

.commentary-stream {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  min-width: 0;
  cursor: pointer;
  border-radius: 12px;
}

.commentary-stream:hover .commentary-text { color: var(--ink); }

.commentary-stream .commentary-badge { margin-top: 1px; }

.commentary-badge {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--on-ink);
  background: var(--ink);
  padding: 4px 9px;
  border-radius: 8px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.commentary-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: color 140ms var(--ease);
}

.commentary-stream.expanded .commentary-text {
  display: block;
  -webkit-line-clamp: unset;
  max-height: 32vh;
  overflow-y: auto;
}

/* Play paused (stumps, lunch, break, result): calm the pulsing live dots */
body.match-paused .rec-dot { animation: none; box-shadow: none; }
body.match-paused .striker-dot { box-shadow: none; }
body.match-paused .live-sync-indicator { color: var(--ink-2); }

.footer-intel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
  width: 100%;
}

.intel-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px 10px;
  min-width: 0;
}

.intel-text { min-width: 0; }

.intel-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 2px;
}

.intel-value {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  overflow: hidden;
  line-height: 1.35;
}

/* ---------- Modal ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(29, 31, 36, 0.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(92vw, 560px);
  max-height: 82vh;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 70px rgba(29, 31, 36, 0.22);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  gap: 10px;
}

.modal-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--paper-2);
  padding: 4px;
  border-radius: var(--radius-pill);
}

.modal-header-actions { display: flex; align-items: center; gap: 8px; }

.modal-tab-btn {
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-3);
  cursor: pointer;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 140ms var(--ease), color 140ms var(--ease);
}

.modal-tab-btn.active {
  color: var(--ink);
  background: var(--card);
  box-shadow: 0 1px 3px rgba(29, 31, 36, 0.08);
}

.modal-close {
  background: var(--paper-2);
  border: none;
  color: var(--ink-2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover { background: var(--line); color: var(--ink); }

.presets-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 58vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}

.presets-list[hidden] { display: none !important; }

.preset-card {
  padding: 13px 16px;
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: border-color 160ms var(--ease), background 160ms var(--ease), transform 140ms var(--ease);
}

.preset-card:hover { border-color: var(--line-strong); background: var(--card); transform: translateY(-1px); }

.preset-card.active-preset {
  border-color: var(--mint-ink);
  background: var(--mint-bg);
}

.preset-match-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

.preset-details {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  margin-top: 3px;
}

.preset-status {
  font-size: 12px;
  font-weight: 800;
  color: var(--live);
  white-space: nowrap;
}

.preset-status.completed-status { color: var(--ink-3); }
.preset-status.paused-status { color: var(--peach-ink); }
.paused-dot { background: var(--peach-ink); }

.preset-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.modal-loading-state {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 36px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-3);
}

.live-score-pill-tag {
  font-size: 12px;
  font-weight: 800;
  background: var(--sky-bg);
  color: var(--sky-ink);
  padding: 3px 9px;
  border-radius: 8px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
