/* FlashScore-style Live board. Dark theme, aligned with root.css variables. All selectors are
   "live-" prefixed (and a .live-page wrapper) so nothing leaks into other pages. */

.live-page .scroll-container {
    padding-left: 0;
    padding-right: 0;
}

/* Title row: LIVE title + (board mode) only-live chip & search toggle */
.live-topline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 6px;
}

.live-topline-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--tarmac-gray);
    border: none;
    border-radius: 10px;
    color: var(--tarmac-gray-200);
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.live-search-btn.active {
    background: var(--unibet-green-500);
    color: var(--chalk-white);
}

.live-title {
    margin: 0;
}

.live-modebar {
    display: flex;
    gap: 6px;
    padding: 0 12px 10px;
}

.live-mode {
    flex: 1;
    background: var(--tarmac-gray);
    border: none;
    color: var(--tarmac-gray-300);
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 10px;
    border-radius: 10px;
    cursor: pointer;
}

.live-mode.active {
    background: var(--unibet-green-500);
    color: var(--chalk-white);
}

.live-mode-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    margin-left: 6px;
    border-radius: 9px;
    background: var(--error);
    color: var(--chalk-white);
    font-size: 11px;
    font-weight: 700;
    vertical-align: middle;
}

.live-toolbar-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 0 16px 8px;
}

.live-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 12px;
    background: var(--tarmac-gray);
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--tarmac-gray-400);
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.live-search:focus-within {
    border-color: var(--unibet-green-500);
    background: var(--tarmac-gray-light);
    color: var(--chalk-white);
}

.live-search-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    color: var(--chalk-white);
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 14px;
}

.live-search-input::placeholder {
    color: var(--tarmac-gray-400);
}

.live-search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--tarmac-gray-300);
    cursor: pointer;
    flex-shrink: 0;
}

.live-search-clear:active {
    color: var(--chalk-white);
}

.live-filter-row {
    display: flex;
    justify-content: flex-end;
    padding: 0 16px 10px;
}

.live-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 34px;
    background: var(--tarmac-gray);
    border: 1px solid transparent;
    color: var(--tarmac-gray-200);
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 0 14px;
    border-radius: 17px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.live-filter-chip.active {
    background: var(--error);
    color: var(--chalk-white);
}

.live-filter-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--error);
    animation: live-pulse 1.6s ease-in-out infinite;
}

.live-filter-chip.active .live-filter-dot {
    background: var(--chalk-white);
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}

/* Date selector bar */
.live-datebar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 16px 14px;
    padding: 4px;
    background: var(--tarmac-gray);
    border-radius: 12px;
}

.live-date-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    border-radius: 9px;
    color: var(--chalk-white);
    cursor: pointer;
    flex-shrink: 0;
}

.live-date-arrow:active {
    background: var(--tarmac-gray-light);
}

.live-date-current {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    color: var(--chalk-white);
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
}

.live-date-current .mud-icon-root {
    color: var(--unibet-green-500);
}

.live-board {
    padding: 0 12px 16px;
}

.live-no-content {
    text-align: center;
    color: var(--tarmac-gray-400);
    padding: 32px 16px;
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 14px;
}

/* League group card */
.live-league-group {
    margin-bottom: 10px;
    background-color: var(--tarmac-gray);
    border-radius: 10px;
    overflow: hidden;
}

.live-league-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: var(--tarmac-gray-light);
}

.live-league-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.live-league-title {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.live-league-name {
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--chalk-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-league-country {
    font-size: 11px;
    color: var(--tarmac-gray-300);
}

/* Fixture row */
.live-fixture-row {
    position: relative;
    display: grid;
    grid-template-columns: 28px 38px 1fr 26px;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-top: 1px solid var(--tarmac-gray-850);
    cursor: pointer;
}

/* Favorieten list rows carry an extra bell column between the star and the status. */
.live-fixture-row.has-notify {
    grid-template-columns: 28px 28px 38px 1fr 26px;
}

/* Goal highlight: brief green tint + a pulsing "Goal!" pill, shown instead of a toast. */
.live-fixture-row.goal-flash {
    background-color: rgba(62, 171, 55, 0.18);
}

.live-goal-tag {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background-color: var(--unibet-green-500);
    color: var(--chalk-white);
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1px 8px;
    border-radius: 8px;
    animation: live-goal-blink 0.9s ease-in-out infinite;
}

@keyframes live-goal-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

/* View toggle (per competition / by time) */
.live-viewtoggle {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 40px;
    padding: 3px;
    background: var(--tarmac-gray);
    border-radius: 10px;
    flex-shrink: 0;
}

.live-viewbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 100%;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--tarmac-gray-400);
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.live-viewbtn.active {
    background: var(--tarmac-gray-600);
    color: var(--chalk-white);
}

/* Time-ordered view: each match as a compact card with its league label on top */
.live-time-item {
    margin-bottom: 6px;
    background-color: var(--tarmac-gray);
    border-radius: 8px;
    overflow: hidden;
}

.live-time-league {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: var(--tarmac-gray-light);
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 11px;
    color: var(--tarmac-gray-300);
}

.live-time-league-logo {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.live-time-item .live-fixture-row {
    border-top: none;
}

.live-fixture-row:active {
    background-color: var(--tarmac-gray-light);
}

.live-fixture-star {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--tarmac-gray-500);
}

.live-fixture-star.active {
    color: var(--cta-yellow);
}

.live-fixture-notify {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--tarmac-gray-500);
}

.live-fixture-notify.active {
    color: var(--unibet-green-500);
}

.live-fixture-status {
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 12px;
    color: var(--tarmac-gray-300);
    text-align: center;
    line-height: 1.2;
}

.live-fixture-status.is-live {
    color: var(--error);
    font-weight: 700;
}

/* FlashScore-style live "tick": the apostrophe after the minute pulses occasionally
   to signal the match clock is running. Stays solid most of the cycle, dips briefly. */
.live-minute-tick {
    animation: live-minute-tick 2s steps(1, end) infinite;
}

@keyframes live-minute-tick {
    0%, 80% { opacity: 1; }
    90% { opacity: 0; }
    100% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .live-minute-tick {
        animation: none;
    }
}

.live-fixture-teams {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.live-fixture-team {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.live-team-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.live-team-name {
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 14px;
    color: var(--chalk-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-fixture-score {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--chalk-white);
}

.live-fixture-score.is-live {
    color: var(--error);
}

/* ===== Match detail ===== */
.live-detail.scroll-container {
    padding-left: 0;
    padding-right: 0;
}

.live-detail-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: var(--tarmac-gray);
}

.live-back-btn {
    background: transparent;
    border: none;
    color: var(--chalk-white);
    display: flex;
    align-items: center;
    padding: 6px;
    cursor: pointer;
    flex-shrink: 0;
}

.live-detail-topbar-title {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}

.live-detail-topbar-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.live-detail-titletext {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    line-height: 1.25;
}

.live-detail-league {
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--chalk-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 55vw;
}

.live-detail-round {
    font-size: 11px;
    color: var(--tarmac-gray-400);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 55vw;
}

.live-detail-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
}

.live-detail-star,
.live-notify-toggle {
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--tarmac-gray-400);
}

.live-detail-star.active {
    color: var(--cta-yellow);
}

.live-notify-toggle.active {
    color: var(--unibet-green-500);
}

/* Score hero */
.live-detail-hero {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 8px;
    padding: 20px 12px 24px;
    background-color: var(--tarmac-gray);
    margin-bottom: 2px;
}

.live-detail-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.live-detail-team-name {
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--chalk-white);
    line-height: 1.25;
}

.live-team-logo.xl {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.live-team-actions {
    display: flex;
    align-items: center;
    gap: 2px;
}

.live-team-star,
.live-team-notify {
    background: transparent;
    border: none;
    padding: 2px;
    cursor: pointer;
    color: var(--tarmac-gray-500);
}

.live-team-star.active {
    color: var(--cta-yellow);
}

.live-team-notify.active {
    color: var(--unibet-green-500);
}

.live-detail-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 4px;
}

.live-detail-statuspill {
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--tarmac-gray-200);
    background-color: var(--tarmac-gray-800);
    padding: 2px 10px;
    border-radius: 10px;
    white-space: nowrap;
}

.live-detail-statuspill.is-live {
    color: var(--chalk-white);
    background-color: var(--error);
}

.live-detail-numbers {
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--chalk-white);
    line-height: 1;
}

.live-detail-numbers.is-live {
    color: var(--error);
}

.live-detail-colon {
    margin: 0 6px;
}

.live-detail-kickoff {
    font-size: 11px;
    color: var(--tarmac-gray-400);
    text-transform: capitalize;
}

/* Tab bar */
.live-tabs {
    display: flex;
    background-color: var(--tarmac-gray);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.live-tabs::-webkit-scrollbar {
    display: none;
}

.live-tab {
    flex: 1 0 auto;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--tarmac-gray-300);
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 12px 14px;
    cursor: pointer;
    white-space: nowrap;
}

.live-tab.active {
    color: var(--chalk-white);
    border-bottom-color: var(--unibet-green-500);
}

.live-tab-content {
    padding-top: 4px;
}

.live-events {
    padding: 8px 0;
}

/* Summary period divider (1st half / 2nd half / extra time) */
.live-period-header {
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--tarmac-gray-400);
    text-align: center;
    padding: 10px 0 8px;
    margin-top: 6px;
    border-top: 1px solid var(--tarmac-gray-850);
}

.live-events > .live-period-header:first-child {
    margin-top: 0;
    border-top: none;
}

.live-event-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
}

.live-event-item.away {
    flex-direction: row-reverse;
    text-align: right;
}

.live-event-minute {
    font-size: 12px;
    color: var(--tarmac-gray-300);
    width: 40px;
    flex-shrink: 0;
}

.live-event-body {
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-event-item.away .live-event-body {
    flex-direction: row-reverse;
}

.live-event-text {
    display: flex;
    flex-direction: column;
}

.live-event-player {
    font-size: 14px;
    color: var(--chalk-white);
}

.live-event-assist {
    font-size: 12px;
    color: var(--tarmac-gray-400);
}

.live-stats {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Grouped sections (Top stats / Shots / Attack / Passes / Defense / Goalkeeper) */
.live-stat-section-title {
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--tarmac-gray-400);
    padding: 6px 2px 12px;
}

.live-stat + .live-stat {
    margin-top: 12px;
}

.live-stat-values {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 13px;
    color: var(--chalk-white);
    margin-bottom: 5px;
}

.live-stat-home {
    text-align: left;
    font-weight: 700;
    color: var(--tarmac-gray-200);
}

.live-stat-type {
    text-align: center;
    color: var(--tarmac-gray-300);
    font-size: 12px;
}

.live-stat-away {
    text-align: right;
    font-weight: 700;
    color: var(--tarmac-gray-200);
}

/* The side leading a stat gets its team colour + heavier weight, so who's ahead reads at a glance. */
.live-stat-home.leading {
    color: var(--unibet-green-500);
    font-weight: 800;
}

.live-stat-away.leading {
    color: var(--cta-yellow);
    font-weight: 800;
}

.live-stat-bar {
    display: flex;
    height: 7px;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--tarmac-gray-800);
    gap: 2px;
}

.live-stat-bar-home {
    background-color: var(--unibet-green-500);
    border-radius: 4px 0 0 4px;
}

.live-stat-bar-away {
    background-color: var(--cta-yellow);
    border-radius: 0 4px 4px 0;
}

.live-lineups {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
}

.live-lineup {
    background-color: var(--tarmac-gray);
    border-radius: 10px;
    overflow: hidden;
}

.live-lineup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    background-color: var(--tarmac-gray-light);
}

.live-lineup-team {
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--chalk-white);
}

.live-lineup-formation {
    font-size: 12px;
    font-weight: 700;
    color: var(--unibet-green-500);
}

.live-lineup-player {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 14px;
    color: var(--chalk-white);
    border-top: 1px solid var(--tarmac-gray-850);
}

.live-lineup-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--tarmac-gray-800);
    color: var(--tarmac-gray-100);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    flex-shrink: 0;
}

.live-lineup-name {
    flex: 1;
    min-width: 0;
}

.live-lineup-pos {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--tarmac-gray-300);
    background-color: var(--tarmac-gray-light);
    padding: 2px 7px;
    border-radius: 6px;
    flex-shrink: 0;
}

.live-lineup-coach {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--tarmac-gray-300);
    border-top: 1px solid var(--tarmac-gray-850);
}

.live-lineup-subs-title {
    margin: 0;
    padding: 10px 12px 4px;
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--tarmac-gray-400);
    border-top: 1px solid var(--tarmac-gray-850);
}

/* Lineup pitch */
.live-pitch {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding: 18px 8px;
    min-height: 280px;
    background-color: #1f7a34;
    overflow: hidden;
}

/* Flat pitch markings: halfway line + centre circle, no gradients. */
.live-pitch-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.live-pitch-lines::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 2px solid rgba(255, 255, 255, 0.18);
}

.live-pitch-lines::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.live-pitch-row {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.live-pitch-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    width: 60px;
}

.live-pitch-shirt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--chalk-white);
    color: var(--tarmac-black);
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.live-pitch-name {
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 11px;
    color: var(--chalk-white);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.live-h2h {
    margin: 12px;
    background-color: var(--tarmac-gray);
    border-radius: 10px;
    overflow: hidden;
}

.live-h2h-row {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid var(--tarmac-gray-850);
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 13px;
    color: var(--chalk-white);
}

.live-h2h-row:first-child {
    border-top: none;
}

.live-h2h-date {
    color: var(--tarmac-gray-400);
    font-size: 12px;
}

.live-h2h-teams {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-h2h-score {
    font-weight: 700;
}

/* ===== Standings ===== */
.live-standings {
    padding: 0 8px;
}

.live-standings-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Roboto, "RobotoRegular", sans-serif;
    font-size: 13px;
    color: var(--chalk-white);
}

.live-standings-table th,
.live-standings-table td {
    padding: 8px 4px;
    text-align: center;
}

.live-standings-table th {
    font-weight: 600;
    color: var(--tarmac-gray-400);
    border-bottom: 1px solid var(--tarmac-gray-800);
}

.live-standings-table td.team,
.live-standings-table th.team {
    text-align: left;
}

.live-standings-table td.team {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-standings-table td.rank,
.live-standings-table th.rank {
    width: 24px;
}

.live-standings-table td.pts,
.live-standings-table th.pts {
    font-weight: 700;
}

.live-standings-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.live-standings-table tbody tr {
    border-bottom: 1px solid var(--tarmac-gray-850);
}
