
#content-wrapper.schedule .schedule-section {
    background: #fff;
    border: 1px solid #e2e6e8;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    padding: 16px 18px;
    margin: 20px 0;
}

#content-wrapper.schedule .schedule-section > h3 {
    margin: 0 0 10px 0;
}

#content-wrapper.schedule .game {
    padding-top: 12px;
    border-bottom: 1px solid #e2e6e8;
}

#content-wrapper.schedule .game:first-of-type {
    padding-top: 0;
}

#content-wrapper.schedule .game-overview {
    margin: 6px 0;
}

#content-wrapper.schedule .game-overview tr {
    line-height: 1.4em;
}

#content-wrapper.schedule .game-overview td:first-child .team-color-emoji,
#content-wrapper.schedule .game-overview td:nth-child(3) .team-color-emoji {
    margin-right: 6px;
}


/* ── Betting Lines ─────────────────────────────────────────────────────── */

.bl-toggle-row {
    margin: 6px 0 2px;
}

.bl-toggle-btn {
    background: none;
    border: 1px solid #3a3f52;
    border-radius: 4px;
    color: #6b7280;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    transition: border-color 0.15s, color 0.15s;
}

.bl-toggle-btn:hover,
.bl-toggle-btn[aria-expanded="true"] {
    border-color: #6b7280;
    color: #9ca3af;
}

.betting-lines {
    background: #181c26;
    border-radius: 6px;
    padding: 8px 12px 6px;
    margin: 4px 0 4px;
    border: 1px solid #2a2e3a;
}

.bl-grid {
    display: grid;
    grid-template-columns: 130px 1fr 1fr 1fr;
    align-items: center;
    gap: 2px 8px;
}

.bl-header-row {
    margin-bottom: 3px;
}

.bl-col-label {
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}

.bl-team-col {
    /* spacer */
}

.bl-team-row {
    padding: 4px 0;
    border-top: 1px solid #2a2e3a;
}

.bl-team-name {
    font-size: 12px;
    color: #9ca3af;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bl-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #1e2230;
    border-radius: 4px;
    padding: 4px 6px;
    min-width: 0;
    cursor: default;
    transition: background 0.15s;
}

.bl-cell:hover {
    background: #252a3a;
}

.bl-main {
    font-size: 14px;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.2;
}

.bl-vig {
    font-size: 10px;
    color: #6b7280;
    line-height: 1.2;
    margin-top: 1px;
}

/* Favorite: spread cell gets green accent */
.bl-fav-spread .bl-main {
    color: #4ade80;
}

/* Favorite: moneyline cell gets red (negative number = you risk more) */
.bl-fav-ml .bl-main {
    color: #f87171;
}

.bl-disclaimer {
    font-size: 10px;
    color: #374151;
    text-align: right;
    margin-top: 5px;
    font-style: italic;
}

/* ── 60-min (3-way) line ───────────────────────────────────────────────── */

.bl-3way {
    padding: 6px 0 2px;
    border-top: 1px solid #2a2e3a;
    margin-top: 4px;
}

.bl-3way-header {
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.bl-3way-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px 8px;
}

.bl-3way-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #1e2230;
    border-radius: 4px;
    padding: 4px 6px;
    min-width: 0;
}

.bl-3way-team-label {
    font-size: 10px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
    margin-bottom: 2px;
}

/* ── Player Props panel ────────────────────────────────────────────────── */

.props-panel {
    background: #181c26;
    border-radius: 6px;
    padding: 8px 12px 6px;
    margin: 4px 0 4px;
    border: 1px solid #2a2e3a;
}

.props-panel-header {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2px;
}

.props-section-title {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.props-section-count {
    font-size: 10px;
    color: #4b5563;
}

/* Each player row: name area + three odds columns (Goal / Assist / Point) */
.props-row {
    display: grid;
    grid-template-columns: 1fr 48px 48px 48px;
    align-items: center;
    padding: 4px 0;
    border-top: 1px solid #1e2230;
}

.props-player-info {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    overflow: hidden;
}

.props-team-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #4b5563;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    min-width: 28px;
    flex-shrink: 0;
}

#content a.props-name,
a.props-name,
.props-name {
    font-size: 13px;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

#content a.props-name:hover,
a.props-name:hover,
.props-name:hover {
    color: #ffffff;
    text-decoration: underline;
}

.props-pos {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    flex-shrink: 0;
}

.props-odds {
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
    text-align: center;
}

/* Assist odds use a green tint; point odds use a blue tint */
.props-assist-odds {
    color: #6ee7b7;
}

.props-point-odds {
    color: #93c5fd;
}

.props-legend {
    margin-left: auto;
    font-size: 10px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.props-legend-goal {
    color: #e2e8f0;
}

.props-legend-assist {
    color: #6ee7b7;
}

.props-legend-point {
    color: #93c5fd;
}

.props-list {
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #3a3f52 transparent;
}

.props-list::-webkit-scrollbar {
    width: 4px;
}

.props-list::-webkit-scrollbar-track {
    background: transparent;
}

.props-list::-webkit-scrollbar-thumb {
    background-color: #3a3f52;
    border-radius: 2px;
}

/* ── Desktop: two-column props grid ───────────────────────────────────── */

@media (min-width: 769px) {
    .props-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 16px;
        max-height: 220px;
    }
}

/* ── Responsive betting lines ──────────────────────────────────────────── */

@media (max-width: 768px) {
    #content-wrapper.schedule .schedule-section {
        padding: 12px 14px;
        margin: 14px 0;
    }

    #content-wrapper.schedule .team-color-emoji {
        width: 28px;
        height: auto;
    }

    #content-wrapper.schedule .game-overview td {
        font-size: 0.95em;
    }

    #content-wrapper.schedule .game-overview td:nth-child(2) {
        width: 40px;
        text-align: center;
        font-weight: 600;
        color: #d80000;
    }

    .bl-grid {
        grid-template-columns: 100px 1fr 1fr 1fr;
        gap: 2px 4px;
    }

    .bl-team-name {
        font-size: 11px;
    }

    .bl-main {
        font-size: 13px;
    }

    .bl-cell {
        padding: 3px 4px;
    }

    .props-row {
        grid-template-columns: 1fr 40px 40px 40px;
    }

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

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