:root {
    --bg-1: #0b0e14;
    --panel: #111620;
    --panel-2: #171d2a;
    --muted: #6b7a8d;
    --muted-light: #8b9bb0;
    --accent: #4a9eff;
    --accent-glow: rgba(74, 158, 255, 0.12);
    --good: #22c55e;
    --bad: #ef4444;
    --border: #1e2736;
    --border-light: #2a3548;
    --text: #d1d9e6;
    --text-bright: #edf2f7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Inter", sans-serif;
    background: var(--bg-1);
    color: var(--text);
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body > * {
    width: 100%;
    max-width: 1080px;
}

h1 {
    color: var(--text-bright);
    margin: 8px 0 18px 0;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.logo-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.15s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-icon {
    height: 32px;
    width: auto;
}

h2, h3 {
    color: var(--accent);
}

/* ── Search ─────────────────────────────── */
.search-form {
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    gap: 8px;
}

.search-form input {
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    background: var(--panel-2);
    color: var(--text-bright);
    font-size: 15px;
    outline: none;
    transition: border-color 0.15s;
    flex: 1;
    min-width: 0;
    margin-right: 0;
}

.search-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-glow);
}

.search-form button {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: filter 0.12s;
    flex-shrink: 0;
}

.search-form button:hover {
    filter: brightness(1.1);
}

.search-input-wrap {
    position: relative;
    display: flex;
    flex: 1;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--panel-2);
    border: 1px solid var(--border-light);
    border-top: none;
    border-radius: 0 0 6px 6px;
    z-index: 100;
    display: none;
    max-height: 280px;
    overflow-y: auto;
}

.search-suggestions.active {
    display: block;
}

.search-suggestion {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text);
}

.search-suggestion:hover,
.search-suggestion.selected {
    background: rgba(74, 158, 255, 0.08);
    color: #fff;
}

/* ── Card base ─────────────────────────── */
.card {
    background: var(--panel);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 14px;
    border: 1px solid var(--border);
    width: 100%;
    box-sizing: border-box;
}

.card h3 { margin: 0 0 10px 0; color: #93b4e8; }

.card h2 {
    margin: 0 0 16px 0;
    font-size: 22px;
    color: #fff;
    font-weight: 800;
}

/* ── Player container ──────────────────── */
.player-container {
    display: flex;
    gap: 0;
    width: 100%;
    margin-bottom: 24px;
}

/* ── Sidebar ───────────────────────────── */
.team-sidebar {
    width: 160px;
    flex-shrink: 0;
    padding: 0 14px 0 0;
    max-height: 500px;
    overflow-y: auto;
    border-right: 1px solid var(--border);
    margin-right: 18px;
}

.sidebar-header {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.team-players-list {
    display: flex;
    flex-direction: column;
}

.team-player-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 0 7px 8px;
    background: transparent;
    border: none;
    border-left: 2px solid transparent;
    font-size: 13px;
    font-weight: 400;
    color: var(--muted-light);
    transition: color 0.15s, border-color 0.15s;
    margin-bottom: 2px;
}

.teammate-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

.ww-btns {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
}

.ww-btn {
    font-size: 13px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
    transition: all 0.12s;
    padding: 0;
}

.ww-btn:hover {
    border-color: rgba(255,255,255,0.35);
    color: var(--text);
}

.ww-btn.ww-with.active {
    background: rgba(34, 197, 94, 0.15);
    border-color: var(--good);
    color: var(--good);
}

.ww-btn.ww-without.active {
    background: rgba(239, 68, 68, 0.15);
    border-color: var(--bad);
    color: var(--bad);
}

.filter-badge {
    margin-left: 0.6rem;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.filter-badge.filter-with {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid var(--good);
    color: var(--good);
}

.filter-badge.filter-without {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--bad);
    color: var(--bad);
}

.team-player-item:hover {
    color: var(--text);
    border-left-color: var(--border-light);
}

.team-player-item.active {
    color: #fff;
    font-weight: 600;
    border-left-color: var(--accent);
}

.player-main-content {
    flex: 1;
    min-width: 0;
}

/* ── Main player card ──────────────────── */
.main-card {
    padding: 20px;
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.player-info h2 {
    margin: 0;
    font-size: 22px;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.player-position {
    margin: 5px 0 0 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}

.player-stats-top {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.stat-value {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* ── Stats + controls row ──────────────── */
.stats-and-controls-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin-bottom: 16px;
    width: 100%;
}

/* Quick stats */
.quick-stats {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.quick-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    padding: 10px 6px;
    border-right: 1px solid var(--border);
}

.quick-stat:last-child {
    border-right: none;
}

.qs-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qs-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-bright);
}

/* Range controls */
.range-controls {
    display: flex;
    gap: 4px;
    padding: 8px 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    flex-shrink: 0;
    align-items: center;
}

.range-controls button {
    background: transparent;
    border: 1px solid transparent;
    color: var(--muted-light);
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.12s ease;
    letter-spacing: 0.2px;
}

.range-controls button:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.range-controls button.active {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    border-color: var(--accent);
}

/* ── Chart section ─────────────────────── */
.chart-section {
    margin-bottom: 14px;
}

.chart-container {
    max-width: 100%;
    margin: 8px 0 0 0;
    background: transparent;
    padding: 4px 4px 0 4px;
    overflow: visible;
}

.chart-container canvas {
    height: 230px !important;
}

/* ── Line controls ─────────────────────── */
.line-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    padding: 8px 0;
    flex-wrap: wrap;
}

.line-controls button {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--muted-light);
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.12s ease;
}

.line-controls button:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.line-controls span {
    color: rgba(255, 255, 255, 0.75);
}

/* ── Win rate indicators ───────────────── */
.win-rate-indicators {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
}

.win-rate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 12px;
    border-radius: 6px;
    background: var(--panel-2);
    border: 1px solid var(--border);
    min-width: 52px;
    text-align: center;
}

.win-rate-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.win-rate-value {
    font-size: 15px;
    font-weight: 800;
}

.win-rate-value.good { color: var(--good); }
.win-rate-value.bad  { color: var(--bad); }

/* ── Minutes filter ─────────────────────── */
.minutes-filter-section {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.minutes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.minutes-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-bright);
}

.minutes-avg {
    font-size: 13px;
    color: var(--muted-light);
    font-weight: 600;
}

.minutes-slider-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.minutes-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    min-width: 20px;
    text-align: center;
}

.range-slider-container {
    position: relative;
    flex: 1;
    height: 28px;
}

.range-slider-container input[type="range"] {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    height: 28px;
    margin: 0;
}

.range-slider-container input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
}

.range-slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--panel);
    cursor: pointer;
    pointer-events: auto;
    margin-top: -7px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.range-slider-container input[type="range"]::-moz-range-track {
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    border: none;
}

.range-slider-container input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--panel);
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ── Stat buttons row ──────────────────── */
.stat-buttons-row {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.stat-buttons-row button {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted-light);
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.12s ease;
}

.stat-buttons-row button:hover {
    border-color: var(--border-light);
    color: var(--text-bright);
}

.stat-buttons-row button.active {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    border-color: var(--accent);
}

/* ── Props table ────────────────────────── */
.props-card {
    background: var(--panel);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 18px;
    border: 1px solid var(--border);
    width: 100%;
    box-sizing: border-box;
}

.props-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

.props-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.props-header h2 {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.props-game-select {
    background: var(--panel-2);
    border: 1px solid var(--border);
    color: var(--muted-light);
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    outline: none;
}

.props-game-select:focus {
    border-color: var(--accent);
}

.props-stat-tabs {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.props-stat-tabs button {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted-light);
    padding: 5px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.12s;
}

.props-stat-tabs button:hover {
    color: var(--text-bright);
    border-color: var(--border-light);
}

.props-stat-tabs button.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    font-weight: 700;
}

#props-table-wrap {
    overflow-x: auto;
}

.props-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.props-table thead th {
    padding: 8px 10px;
    text-align: left;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
    user-select: none;
}

.props-table thead th:not(:first-child) {
    text-align: center;
}

.props-table thead th.sortable {
    cursor: pointer;
}

.props-table thead th.sortable:hover {
    color: var(--text-bright);
}

.props-table thead th.sort-desc::after { content: " \2193"; color: var(--accent); }
.props-table thead th.sort-asc::after  { content: " \2191"; color: var(--accent); }

.props-table tbody tr.props-row {
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: background 0.1s;
}

.props-table tbody tr.props-row:hover {
    background: var(--panel-2);
}

.props-table td {
    padding: 8px 10px;
    vertical-align: middle;
    white-space: nowrap;
}

.player-cell {
    min-width: 160px;
}

.player-link {
    font-weight: 600;
    color: var(--text-bright);
    font-size: 14px;
    display: block;
}

.matchup-label {
    font-size: 11px;
    color: var(--muted);
    display: block;
    margin-top: 2px;
}

.line-cell {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.odds-cell {
    text-align: center;
    color: var(--muted-light);
    font-size: 12px;
}

.streak-cell {
    text-align: center;
    font-weight: 700;
    font-size: 13px;
}

.streak-hot  { color: var(--good); }
.streak-cold { color: var(--bad); }

.pct-cell {
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    min-width: 44px;
    border-radius: 4px;
}

.pct-good { color: #fff; background: var(--good); }
.pct-bad  { color: #fff; background: var(--bad); }
.pct-mid  { color: var(--text); background: #1e3a2d; }
.muted    { color: var(--muted); }

/* ── Today's games ─────────────────────── */
.games_today-card {
    background: var(--panel);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 18px;
    border: 1px solid var(--border);
    width: 100%;
    box-sizing: border-box;
}

.games_today-card h2 {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 14px 0;
    text-align: left;
}

.today-games {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.today-games li {
    padding: 10px 14px;
    background: var(--panel-2);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    transition: border-color 0.15s;
}

.today-games li:hover {
    border-color: var(--border-light);
}

.today-games li .away-team {
    text-align: left;
}

.today-games li .away-team strong {
    color: var(--text-bright);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
}

.today-games li .home-team {
    text-align: right;
}

.today-games li .home-team strong {
    color: var(--text-bright);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    overflow: hidden;
}

.team-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.today-games li .time-display {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 64px;
}

.today-games li .status {
    margin: 0;
    color: var(--muted-light);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

/* ── Misc / hidden elements ────────────── */
.player-card { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.player-left { display: none; }
.player-right { display: none; }
.avatar img { width: 64px; height: 64px; border-radius: 4px; object-fit: cover; border: 1px solid var(--border); }
.player-meta h2 { margin: 0; font-size: 20px; }
.player-meta .player-sub { color: var(--muted); font-size: 14px; margin-top: 4px; }
.avg-badge { background: var(--panel-2); padding: 8px 12px; border-radius: 4px; color: #7dc4ff; font-weight: 700; font-size: 15px; }
.filters { display: none; }
.stat-chips { display: none; }
.chip { display: none; }
.chip-sub { display: none; }
.stats-row { display: flex; gap: 12px; margin-top: 14px; }
.stat-pill { padding: 8px 10px; background: var(--panel-2); border-radius: 4px; font-weight: 700; }
.error { color: #f87171; margin-top: 15px; width: 100%; font-size: 14px; }
.status { margin-left: 10px; color: var(--muted); font-size: 14px; }

table { width: 100%; border-collapse: collapse; margin-top: 15px; }
th, td { padding: 10px; text-align: center; border-bottom: 1px solid var(--border); }
th { color: var(--accent); font-size: 14px; }
td { font-size: 14px; }

/* ── Responsive ────────────────────────── */
@media (max-width: 1200px) {
    .today-games {
        grid-template-columns: repeat(2, 1fr);
    }
    .player-container {
        flex-direction: column;
        gap: 16px;
    }
    .team-sidebar {
        width: 100%;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 0 0 12px 0;
        margin-right: 0;
        margin-bottom: 4px;
    }
    .team-players-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
    }
    .team-player-item {
        border-left: none;
        border-bottom: 2px solid transparent;
        padding-left: 0;
        padding: 5px 10px;
    }
    .team-player-item:hover {
        border-bottom-color: var(--border-light);
        border-left-color: transparent;
    }
    .team-player-item.active {
        border-bottom-color: var(--accent);
        border-left-color: transparent;
    }
}

@media (max-width: 768px) {
    body {
        padding: 12px 14px;
    }

    h1 { font-size: 20px; }

    .search-form input {
        font-size: 14px;
        padding: 10px 12px;
    }

    .search-form button {
        font-size: 13px;
        padding: 10px 16px;
    }

    /* Stats + controls stack vertically */
    .stats-and-controls-row {
        flex-direction: column;
    }

    .range-controls {
        justify-content: center;
    }

    /* Quick stats scroll horizontally */
    .quick-stats {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .quick-stat {
        min-width: 56px;
        padding: 8px 4px;
    }

    .qs-value { font-size: 16px; }

    /* Chart height */
    .chart-container canvas {
        height: 220px !important;
    }

    /* Stat buttons */
    .stat-buttons-row button {
        padding: 6px 10px;
        font-size: 12px;
    }

    /* Props header stacks */
    .props-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .props-stat-tabs {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .props-stat-tabs button {
        flex-shrink: 0;
    }

    .props-table {
        font-size: 12px;
    }

    .props-table thead th,
    .props-table td {
        padding: 6px 7px;
    }

    .player-cell {
        min-width: 130px;
    }

    /* Roster: 3-column grid on mobile */
    .team-sidebar {
        padding-bottom: 8px;
    }

    .team-players-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
    }

    .team-player-item {
        font-size: 12px;
        padding: 5px 6px;
        white-space: nowrap;
        overflow: hidden;
        border-bottom: 2px solid transparent;
        justify-content: center;
    }

    .teammate-name {
        font-size: 12px;
    }

    .ww-btn {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .sidebar-header {
        font-size: 11px;
        margin-bottom: 8px;
    }

    /* Today's games single column */
    .today-games {
        grid-template-columns: 1fr;
    }

    /* Player header */
    .player-header {
        flex-direction: column;
        gap: 8px;
    }

    .player-info h2 { font-size: 20px; }

    .player-stats-top {
        align-items: flex-start;
        flex-direction: row;
        gap: 8px;
    }

    .stat-value { font-size: 22px; }

    /* Line controls */
    .line-controls {
        font-size: 14px;
        gap: 8px;
    }

    .line-controls button {
        font-size: 13px;
    }

    /* Win rate items */
    .win-rate-item {
        padding: 5px 8px;
        min-width: 44px;
    }

    .win-rate-label { font-size: 10px; }
    .win-rate-value { font-size: 13px; }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .main-card {
        padding: 14px;
    }

    .card {
        padding: 14px;
        border-radius: 6px;
    }

    .range-controls button {
        padding: 5px 10px;
        font-size: 12px;
    }

    .stat-buttons-row {
        gap: 4px;
    }

    .stat-buttons-row button {
        padding: 5px 8px;
        font-size: 11px;
    }

    .props-card {
        padding: 12px;
    }

    .today-games li {
        padding: 8px 10px;
    }

    .team-logo {
        width: 20px;
        height: 20px;
    }

    /* Roster 2 columns on very small */
    .team-players-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
