/**
 * Streak Props page styles
 * File: styles/streak-props.css
 * Used by: /streak-props/
 */

/* Same content-wrapper padding as player-props-dfs.css / +EV props: clears
   the fixed header + sticky .tmb-sport-bar (front.css margin-top:-20px). */
.content-wrapper {
    margin-left: 0;
    padding: 20px 25px;
    padding-top: 90px !important;
}

.sp-subtitle {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 14px;
}

.sp-loading,
.sp-empty {
    padding: 30px 10px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* ---- Matchup card ---- */
.sp-matchup {
    background: #fff;
    border: 1px solid #e3e6ea;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.sp-matchup-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 14px;
    background: #f6f8fa;
    border-bottom: 1px solid #e3e6ea;
}

.sp-matchup-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
}

.sp-matchup-time {
    font-size: 0.75rem;
    color: #999;
    white-space: nowrap;
}

/* ---- Two team columns ---- */
.sp-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.sp-team-col {
    padding: 12px 14px;
    min-width: 0;
}

.sp-team-col + .sp-team-col {
    border-left: 1px solid #eef0f3;
}

.sp-team-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 2px solid #e9ecf0;
}

.sp-none {
    font-size: 0.8rem;
    color: #bbb;
    font-style: italic;
}

/* ---- Player blocks ---- */
.sp-player {
    margin-bottom: 10px;
}

.sp-player:last-child {
    margin-bottom: 0;
}

.sp-player-name {
    font-size: 0.83rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.sp-prop-list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 10px;
}

.sp-prop {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.82rem;
    line-height: 1.55;
}

.sp-prop-label {
    color: #1d6f42;
    font-weight: 600;
    white-space: nowrap;
}

.sp-prop-label::before {
    content: "\2022";
    color: #b9c2cc;
    margin-right: 6px;
}

/* Faded average for quick reference */
.sp-avg {
    color: #aaa;
    font-size: 0.72rem;
    white-space: nowrap;
    cursor: default;
}

/* ---- Mobile: stack the two team columns ---- */
@media (max-width: 575.98px) {
    .sp-cols {
        grid-template-columns: 1fr;
    }
    .sp-team-col + .sp-team-col {
        border-left: none;
        border-top: 1px solid #eef0f3;
    }
}
