@layer props-odds.table {
/* Comparison wrapper & base table */
.props-comparison-container {
    position: relative;
    background: var(--props-bg);
    overflow-x: auto;
    margin-bottom: 20px;
    margin-left: 0; /* align with filter/title left edge */
    overscroll-behavior-x: contain;
    scrollbar-gutter: stable;
}
.props-comparison-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    background: linear-gradient(270deg, rgba(240,249,255,0.9) 0%, rgba(240,249,255,0) 65%);
}
.props-comparison-container.is-scrollable::after {
    opacity: 1;
}
@media (prefers-contrast: more) {
    .props-comparison-container::after {
        background: linear-gradient(270deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 65%);
    }
}

.props-comparison-container::-webkit-scrollbar {
    height: var(--props-scrollbar-size, 12px);
}
.props-comparison-container::-webkit-scrollbar-track {
    background: var(--props-bg);
}
.props-comparison-container::-webkit-scrollbar-thumb {
    background-color: rgba(15,23,42,0.35);
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.55);
}
.props-comparison-container {
    scrollbar-color: rgba(15,23,42,0.35) var(--props-bg);
}

.props-comparison-table {
    width: max-content;
    min-width: var(--props-table-min, 1400px);
    border-collapse: separate; /* prevent collapsed borders from bleeding into sticky header */
    border-spacing: 0; /* but keep seams tight */
    font-size: 13px;
    table-layout: fixed; /* rely on column widths to drive layout */
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

/* Hard reset to avoid theme "stacked table" responsiveness breaking layout */
.props-odds .props-comparison-table thead { display: table-header-group; }
.props-odds .props-comparison-table tbody { display: table-row-group; }
.props-odds .props-comparison-table tr { display: table-row; }
.props-odds .props-comparison-table th,
.props-odds .props-comparison-table td {
    display: table-cell;
    vertical-align: middle;
    box-sizing: border-box;
    white-space: normal; /* prevent unexpected wrapping which desyncs columns */
}

/* Allow market text to wrap so long titles don't blow up width */
.props-comparison-table .market { white-space: normal; }

/* Sticky header defaults */
.props-comparison-table thead th {
    background: #0f172a;
    color: #ffffff;
    padding: 16px 10px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-right: 1px solid #1f2937;
    border-bottom: 1px solid #1f2937;
    position: sticky;
    top: 0;
    z-index: 500; /* ensure header sits above sticky body cells */
    min-height: 52px;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
}
.props-odds .props-comparison-container .props-comparison-table thead th {
    background: #0f172a;
    background-image: none;
    color: #ffffff;
    border-right: 1px solid #4e4e4e;
    border-bottom: 1px solid #4e4e4e;
    line-height: 1.3;
    padding: 16px 10px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}
.props-odds .props-comparison-table thead th a,
.props-odds .props-comparison-table thead th span,
.props-odds .props-comparison-table thead th strong { color: inherit; }
.props-comparison-table thead th:last-child { border-right: none; }

/* Body cell defaults */
.props-odds .props-comparison-table tbody td,
.props-odds-scope .props-comparison-table tbody td {
    padding: 10px 11px 10px 11px;
    border-bottom: 1px solid var(--props-border);
    border-right: 1px solid var(--props-border);
    vertical-align: middle;
    background: var(--props-bg);
    background-clip: padding-box; /* avoid border bleed under sticky header */
    text-align: left;
    line-height: 1.3;
}
.props-odds .props-comparison-table tbody td,
.props-odds-scope .props-comparison-table tbody td {
    font-weight: 400;
}
.props-odds .props-comparison-table tbody th.player-info,
.props-odds-scope .props-comparison-table tbody th.player-info {
    font-weight: 500;
    padding: 10px 11px 10px 11px;
    text-align: left;
    line-height: 1.3;
}
.props-odds-scope .props-comparison-table tbody th.player-info {
    font-weight: 500 !important;
    padding: 10px 11px 10px 11px !important;
    text-align: left !important;
    line-height: 1.3 !important;
}
.props-odds-scope .props-comparison-table tbody th.player-info {
    font-weight: 500 !important;
}
.props-comparison-table tbody td:last-child { border-right: none; }
.props-comparison-table tbody tr:first-child td,
.props-comparison-table tbody tr:first-child th.player-info {
    border-top: 1px solid #1f2937; /* matches header bottom border */
}
.props-comparison-table tbody tr { min-height: 44px; }

/* Table harmonization: use same radius and header weight */
.props-odds-scope .props-comparison-table thead th { font-weight: 700; }

@media (max-width: 768px) {
    .props-comparison-container {
        margin: 0;
        box-sizing: border-box;
        border-radius: 0;
    }

    .props-comparison-table {
        font-size: 12px;
        min-width: 100%;
    }

    .props-comparison-table thead th {
        padding: 10px 4px;
        font-size: 11px;
    }

    .props-odds .props-comparison-table tbody td,
    .props-odds-scope .props-comparison-table tbody td {
        padding: var(--props-cell-pad-y, 12px) var(--props-cell-pad-x, 16px);
    }

    .props-comparison-table tbody tr {
        min-height: 36px;
    }

    .player-col,
    .props-comparison-table .player-info {
        width: var(--frozen-player);
        min-width: var(--frozen-player);
        max-width: var(--frozen-player);
        position: static !important;
        left: auto !important;
        z-index: auto !important;
        background: var(--props-bg) !important;
    }

    .props-comparison-table thead th.player-col {
        position: relative !important;
        left: auto !important;
        z-index: 501 !important;
        background: #0f172a !important;
    }

    .props-odds .props-market-filter .props-search-wrap input[type="search"] {
        min-width: 0;
        width: 100%;
    }

    .props-select {
        width: 100%;
        max-width: 100%;
    }

    .props-comparison-table tbody tr:nth-child(even) td {
        background: #fafbfc;
    }

    .props-comparison-table tbody tr:hover td {
        background: var(--props-bg-muted);
    }

    .props-odds,
    .props-odds-scope {
        --frozen-player: 170px !important;
        --props-col-min: 108px !important;
        --props-col-ideal: 112px !important;
        --props-col-max: 120px !important;
        --props-table-min: calc(var(--frozen-player) + (var(--props-col-ideal) * var(--props-sportsbook-count))) !important;
        --props-table-max: var(--props-table-min) !important;
        --props-scrollbar-size: 10px !important;
        --props-cell-pad-y: 12px !important;
        --props-cell-pad-x: 16px !important;
    }

    .props-odds .props-comparison-table col.col-sportsbook,
    .props-odds-scope .props-comparison-table col.col-sportsbook {
        width: var(--props-col-ideal, 112px) !important;
    }

    .props-odds .props-comparison-table tbody tr:nth-child(even) > td.player-info,
    .props-odds .props-comparison-table tbody tr:nth-child(even) > th.player-info {
        background: #f7f7f7 !important;
    }
    .props-odds .props-comparison-table tbody tr:hover > td.player-info,
    .props-odds .props-comparison-table tbody tr:hover > th.player-info {
        background: var(--props-bg-muted) !important;
    }

    .odds-pair .over-odds,
    .odds-pair .under-odds {
        font-size: 12px;
        padding: 2px 4px;
        min-width: 40px;
    }

    .player-avatar { display: none; }
    .props-comparison-table .player-info .player-name { font-size: 13px; }
    .props-comparison-table .player-info .player-details { font-size: 11px; }
    .props-comparison-table .player-info .player-details .jersey { display: none; }
}

/* Sortable table headers */
.props-comparison-table th.sortable {
    position: relative;
    user-select: none;
    /* reserve space on the right so the absolutely-positioned icon doesn't overlap text */
    padding-right: 18px;
}
.props-comparison-table thead th.sortable { padding-right: 32px; }

.props-comparison-table thead th .header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: rgba(255,255,255,0.8);
    margin-right: 6px;
}
.props-comparison-table thead th .header-icon svg {
    width: 100%;
    height: 100%;
}

/* Triangle sort icon aligned to the right and centered vertically */
.props-comparison-table th .sort-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: rgba(255,255,255,0.75);
    pointer-events: none; /* Ensure it doesn't interfere with header click */
}
.props-comparison-table th .sort-icon svg {
    width: 16px;
    height: 16px;
    color: #b3b7c5 !important;
}

/* Active sort directions */
.props-comparison-table th.sorted-asc .sort-icon,
.props-comparison-table th.sorted-desc .sort-icon {
    color: #ffffff;
}

.props-comparison-table th.sortable:hover { filter: brightness(1.1); }

/* Player cell with avatar */
.player-cell { display: inline-flex; align-items: center; gap: 8px; line-height: 1.3; }
.player-header { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; line-height: 1.3; }
.player-avatar-wrap {
    position: relative;
    display: inline-flex;
    height: 40px;
    align-items: flex-start;
}
.player-avatar {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50%;
    object-fit: cover;
    background: #e5e7eb;
    flex: 0 0 40px;
    flex-shrink: 0;
    overflow: hidden;
}
.player-avatar.placeholder { background: #e5e7eb; }
.player-avatar-wrap .team-logo-avatar {
    position: absolute;
    bottom: -6px;
    left: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    padding: 2px;
    object-fit: contain;
    display: none;
}
.player-text { display: inline-block; }
/* stack name and details to the right of avatar */
.player-text-block { display: flex; flex-direction: column; }

.line { text-align: center; font-weight: 600; color: #2c3e50; }

/* Stacked line + market */
.line-with-market {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.line-with-market .line-value {
    color: #2c3e50;
    font-weight: 700;
}
.line-with-market .market-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #838c9f;
    letter-spacing: .3px;
    line-height: 1.3;
}

.over-odds, .under-odds {
    text-align: center;
    font-weight: 700;
    font-family: monospace;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 6px;
    background: #ffffff; /* plain white/grey */
    border: 1px solid #e5e7eb;
}
/* sign-based coloring */
.odds-pos { color: #374151; }   /* match negative: dark gray for positive */
.odds-neg { color: #374151; }   /* dark gray for negative */

.updated-at {
    color: var(--props-text-muted);
    font-size: 13px;
    text-align: center;
}

/* Footer */
.props-odds-footer {
    margin-top: 10px;
    text-align: center;
    color: #7f8c8d;
}

/* Error and empty states */
.props-odds-error {
    background: #e74c3c;
    color: #fff;
    padding: 15px;
    border-radius: 4px;
    margin: 10px 0;
    text-align: center;
}

.props-odds-empty {
    background: #f39c12;
    color: #fff;
    padding: 15px;
    border-radius: 4px;
    margin: 10px 0;
    text-align: center;
}

.player-info .player-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2px;
}

.player-info .player-details {
    font-size: 11px;
    color: #7f8c8d;
    font-weight: 400;
}

/* New: show matchup under player name (instead of team/jersey) */
.player-info .player-details .matchup {
    color: var(--props-text-muted);
    font-weight: 500;
}
.player-info .player-details .sep { color: #c0c5cb; margin: 0 2px; }

/* Fixed player column */
.player-col,
.props-comparison-table .player-info {
    position: sticky;
    left: 0;
    background: var(--props-bg);
    z-index: 101; /* ensure body sticky stays above other headers */
    /* Removed border-right to eliminate white line on player column */
}

/* Ensure sticky first column renders above others on horizontal scroll */
.props-odds .props-comparison-table .player-info {
    z-index: 300;
    font-weight: 500;
}

.props-comparison-table thead th.player-col {
    z-index: 501 !important; /* Higher than other headers and body sticky cells */
    background: #0f172a !important; /* Ensure background covers scrolling content */
    text-align: left;
    position: relative;
    padding-left: 10px !important;
    padding-right: 36px !important; /* Extra space for sort icon */
}

/* Ensure scrollable header columns go under frozen columns */
.props-comparison-table thead th.sportsbook-col {
    z-index: 10; /* Lower than frozen columns */
}

/* market column removed in favor of stacked label under line */

.line-col, .props-comparison-table .line {
    min-width: 80px;
    max-width: 80px;
    text-align: center;
    font-weight: 600;
    color: #e67e22;
}

/* Sportsbook columns */
.sportsbook-col, .props-comparison-table .odds-cell {
    min-width: 112px;
    max-width: 112px;
    width: 112px;      /* fixed width so total table width overflows without stretching frozen cols */
    text-align: center;
    padding: 12px 16px !important;
}

/* Sportsbook header styling */
.sportsbook-col {
    font-size: 10px;
    font-weight: 700;
    color: var(--props-text-muted);
    /* Allow sportsbook names to wrap by word, not mid-word */
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
}

/* Logo inside sportsbook header */
.sportsbook-col .sportsbook-logo {
    height: 16px !important;
    max-width: 80px !important;
    max-height: none !important;
    width: auto !important;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

/* Make header logos clickable without layout shift */
.props-odds .sportsbook-col a {
    display: inline-block;
    line-height: 0;
}

/* Keep "Line" column header from wrapping */
.props-comparison-table thead th.line-col { white-space: nowrap; }
/* Hide Line column entirely (header and body) */
.props-comparison-table thead th.line-col,
.props-comparison-table td.line {
    display: none;
}

/* Odds pair styling */
.odds-pair {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

/* Anchor wrapper for odds pills */
.props-odds .odds-link {
    text-decoration: none;
    color: inherit;
}
.props-odds .odds-link:hover .over-odds,
.props-odds .odds-link:hover .under-odds {
    filter: brightness(1.05);
}

/* Prevent table layout from reflowing frozen columns when sportsbooks count changes */
.props-comparison-table{
    table-layout: fixed;
}

/* Inline game/time presentation under the player name */
.props-comparison-table .player-inline-game {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
    font-size: 11px;
    color: #6b7280;
}
.props-comparison-table .player-inline-game .game-date { color: #64748b; }
.props-comparison-table .player-inline-game .game-state .state-label { color: #000000; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
.props-comparison-table .player-inline-game .game-state.status-final .state-label { color: #6b7280; }
.props-comparison-table .player-inline-game .game-state.status-countdown { color: var(--props-brand-red); }
.props-comparison-table .player-inline-game .game-state.status-live .state-label::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--props-brand-red); }
.props-comparison-table thead th.line-col{width: 80px;}

/* Single-pill state centers the lone pill vertically in the cell */
.odds-pair.single {
    justify-content: center;
    min-height: 48px; /* ensures vertical centering visually consistent */
}

.props-odds { --pill-pad-y: 2px; --pill-pad-x: 8px; --pill-radius: 3px; }

.odds-pair .over-odds,
.odds-pair .under-odds {
    padding: var(--pill-pad-y, 2px) var(--pill-pad-x, 8px); /* restore pill footprint */
    border-radius: var(--pill-radius, 3px);
    font-size: 13px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    min-width: 0;
    text-align: center;
    font-family: monospace;
    background: transparent;
    border: none;
    white-space: nowrap;
    position: relative; /* contain overlay pseudo-elements to pill bounds */
    display: inline-block;
}

/* Tiny filled green check icon overlaid inside the pill (no layout shift) */
.best-check { display: none; }

/* Display multiple lines per player row */
.line-chips { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 2px; }
.line-chip {
    padding: 2px 6px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 12px;
    color: #374151;
    background: #ffffff;
}

/* Hide pill border/background when value is missing, but preserve layout */
.odds-pair .odds-empty {
    border-color: transparent;
    background: transparent;
    color: #95a5a6; /* faint placeholder dash */
}

/* Subtle highlight for the best available price in a row */
.odds-pair .over-odds.best-odds,
.odds-pair .under-odds.best-odds {
    color: inherit; /* keep text color */
    border-radius: var(--pill-radius);
    padding: var(--pill-pad-y) var(--pill-pad-x) !important;
    background-color: #c5f3e4;
}

.no-odds {
    color: #95a5a6;
    font-size: 11px;
    text-align: center;
}

/* Light gray label for line (e.g., o3.5 / u3.5) */
.line-prefix {
    color: #828a99; /* slightly muted gray; not too light */
    font-weight: 600;
    margin-right: 4px;
}

/* Player info in comparison table */
.props-comparison-table .player-info .player-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2px;
    font-size: 13px;
}

.props-comparison-table .player-info .player-details {
    font-size: 11px;
}

.props-comparison-table .player-details .position {
    background: #009eff;
    color: white;
    padding: 0px 3px;
    border-radius: 2px;
    margin-right: 2px;
    font-size: 10px;
}

.props-comparison-table .player-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.props-comparison-table .player-details .team {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #95a5a6;
    color: white;
    padding: 1px 6px 1px 4px;
    border-radius: 2px;
    margin-right: 4px;
    font-size: 10px;
    line-height: 1.2;
}

.props-comparison-table .player-details .team.has-logo {
    background: transparent;
    color: inherit;
    padding: 0;
    margin-right: 0;
    gap: 0;
}

.props-comparison-table .player-details .team .team-logo {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    object-fit: contain;
    display: inline-block;
}

.props-comparison-table .player-details .team .team-text {
    display: inline-block;
}

.props-comparison-table .player-details .team.has-logo .team-text {
    display: inline-block;
}

.props-comparison-table .player-details .jersey {
    color: #7f8c8d;
    font-size: 10px;
}

@media (min-width: 901px) {
    .props-comparison-table .player-details .team.has-logo {
        display: none;
    }
    .player-avatar-wrap.has-team-logo .team-logo-avatar {
        display: block;
    }
}

@media (max-width: 900px) {
    .props-comparison-table .player-details .team.has-logo {
        margin-right: 4px;
    }
}

/* New: matchup shown within player details in comparison table */
.props-comparison-table .player-details .matchup {
    color: var(--props-text-muted);
    font-size: 11px;
    font-weight: 600;
}
.props-comparison-table .player-details .sep { color: #c0c5cb; margin: 0 2px; }

/* Row hover effect */
.props-comparison-table tbody tr:hover {
    background: var(--props-bg-muted);
}

.props-comparison-table tbody tr:hover td { background: var(--props-bg-muted); }
.props-comparison-table tbody tr:hover .player-info { background: var(--props-bg-muted); }

/* Alternating row colors */
.props-comparison-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.props-comparison-table tbody tr:nth-child(even) .player-info {
    background: #f7f7f7;
}
/* ensure stripe applies to all cells */
.props-comparison-table tbody tr:nth-child(even) td { background: #f7f7f7 !important; }

/* Comparison footer */
.props-comparison-footer {
    padding: 10px 15px;
    background: #f8f9fa;
    border-top: 1px solid #ecf0f1;
    font-size: 11px;
    color: #7f8c8d;
    text-align: center;
}

/* Responsive adjustments */

/* Hide footer under tables (e.g., "Last updated", "Showing X props") */
.props-odds-footer,
.props-comparison-footer {
    display: none !important;
}

/* Column width scaffolding driven by tokens */
.props-odds .props-comparison-table,
.props-odds-scope .props-comparison-table { table-layout: fixed; }
.props-odds .props-comparison-table col.col-player,
.props-odds-scope .props-comparison-table col.col-player { width: var(--frozen-player); }
.props-odds .props-comparison-table col.col-sportsbook,
.props-odds-scope .props-comparison-table col.col-sportsbook {
  width: var(--props-col-ideal, 112px);
}

@media (max-width: 768px) {
  .props-odds,
  .props-odds-scope {
    --props-col-min: 108px !important;
    --props-col-ideal: 112px !important;
    --props-col-max: 120px !important;
    --props-cell-pad-y: 12px !important;
    --props-cell-pad-x: 16px !important;
  }
}
.props-odds .props-comparison-table thead th.player-col,
.props-odds .props-comparison-table tbody td.player-info,
.props-odds .props-comparison-table tbody th.player-info,
.props-odds-scope .props-comparison-table thead th.player-col,
.props-odds-scope .props-comparison-table tbody td.player-info,
.props-odds-scope .props-comparison-table tbody th.player-info {
  box-sizing: border-box;
  width: var(--frozen-player);
  min-width: var(--frozen-player);
  max-width: var(--frozen-player);
}

@media (max-width: 768px) {
  .props-comparison-table .player-info {
    position: static;
    left: auto;
    z-index: auto;
  }
}

@media (min-width: 901px) {
  .props-odds,
  .props-odds-scope {
    --frozen-player: 182px !important;
    --props-col-min: 108px !important;
    --props-col-ideal: 112px !important;
    --props-col-max: 120px !important;
    --props-table-min: 1400px !important;
    --props-table-max: var(--props-table-min) !important;
  }
}
/* Ensure zebra striping and hover apply to the mobile Player column */
/* Show-all pagination control */
.props-odds .props-show-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem !important;
  margin: 0 auto 0.75rem !important;
  padding: 0 12px !important;
  text-align: center;
  width: 100%;
  max-width: 100%;
  transform: none;
  pointer-events: auto;
}
.props-odds .props-show-toggle .props-show-all-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 2.5rem !important;
  min-width: 220px !important;
  border-radius: 12px !important;
  border: 1px solid var(--props-border, #e5e7eb) !important;
  background: var(--props-surface-muted, #f8fafc) !important;
  background-color: var(--props-surface-muted, #f8fafc) !important;
  color: var(--props-text-strong, #0f172a) !important;
  font-family: inherit;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.1;
  box-shadow: none !important;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.props-odds .props-show-toggle .props-show-all-button:hover {
  background: var(--props-surface, #ffffff) !important;
  border-color: #cbd5e1 !important;
  box-shadow: none !important;
}
.props-odds .props-show-toggle .props-show-all-button:active {
  background: #e2e8f0 !important;
  border-color: #cbd5e1 !important;
  box-shadow: none !important;
}
.props-odds .props-show-toggle .props-show-all-button:focus-visible {
  outline: 2px solid var(--props-brand-cyan, #009eff);
  outline-offset: 3px;
}
.props-odds .props-toggle-status {
  margin: 0 !important;
  font-size: 11.5px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--props-text-muted);
  font-weight: 600;
}
}
