/* --------------------------------------------------------------------------
   Standings enrichment
   -------------------------------------------------------------------------- */
.standings-sub-tabs {
    display: flex;
    gap: 1px;
    background: #000;
    border: 1px solid #000;
    margin-bottom: 8px;
}
.standings-sub-tab {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    background: #fff;
    color: #333;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.standings-sub-tab.active {
    background: #000;
    color: #fff;
}
.clinch-badge {
    display: inline-block;
    font-size: 8px;
    font-weight: 900;
    padding: 0 4px;
    margin-left: 4px;
    border: 1px solid;
}
.clinch-x { background: #e6f4ea; color: #22863a; border-color: #22863a; }
.clinch-y { background: #e1ecf4; color: #0366d6; border-color: #0366d6; }
.clinch-z { background: #ffd33d22; color: #b08800; border-color: #b08800; }
.clinch-p { background: #f0f0f0; color: #333; border-color: #999; }
.clinch-e { background: #ffeef0; color: #cb2431; border-color: #cb2431; }
.streak-w { color: #22863a; font-weight: 900; }
.streak-l { color: #cb2431; font-weight: 900; }
.streak-ot { color: #b08800; font-weight: 900; }
.pace-col { color: var(--theme-accent-secondary); font-weight: 700; }

/* --------------------------------------------------------------------------
   Team dashboard advanced
   -------------------------------------------------------------------------- */
.team-adv-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}
.team-adv-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    background: #fff;
    border: 1px solid #000;
    box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #c0c0c0;
}
.team-adv-value {
    font-size: 14px;
    font-weight: 900;
    color: #000;
}
.team-adv-label {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
}

/* --------------------------------------------------------------------------
   Line combos
   -------------------------------------------------------------------------- */
.line-card {
    background: #fff;
    border: 1px solid #000;
    box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #c0c0c0;
    padding: 8px;
    margin-bottom: 6px;
}
.line-players {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.line-player-pill {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    background: #f0f0f0;
    border: 1px solid #000;
    color: #000;
}
.line-stats {
    display: flex;
    gap: 8px;
    font-size: var(--text-2xs);
}
.line-stat {
    display: flex;
    gap: 3px;
    align-items: baseline;
}
.line-stat-label {
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
}
.line-stat-value {
    font-weight: 900;
    color: #000;
}
