/* ==========================================================================
   Gauntlet Calendar
   ========================================================================== */

.gauntlet-grid {
    display: grid;
    background: #FFF;
    border: 1px solid var(--theme-border-strong);
}

.gauntlet-corner,
.gauntlet-date-hdr {
    background: #1A1A1A;
    border: 1px solid #333;
    padding: 4px;
    font-size: var(--text-2xs);
    font-weight: 800;
    text-transform: uppercase;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gauntlet-corner {
    padding: 6px 8px;
    justify-content: flex-start;
    position: sticky;
    left: 0;
    z-index: 3;
}

.gauntlet-date-hdr {
    flex-direction: column;
    gap: 1px;
}

.gauntlet-day-name {
    font-size: var(--text-micro);
    color: #666;
    font-weight: 600;
}

.gauntlet-date-num {
    font-size: var(--text-xs);
    font-weight: 900;
    color: #CCC;
}

.gauntlet-tier-label {
    grid-column: 1 / -1;
    background: #1A1A1A;
    border: 1px solid #333;
    padding: 3px 8px;
    font-size: var(--text-micro);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}

.gauntlet-team-cell {
    background: #FAFAFA;
    border: 1px solid #E5E5E5;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: sticky;
    left: 0;
    z-index: 2;
}

.gauntlet-team-cell.gauntlet-even { background: #FFF; }
.gauntlet-team-cell.gauntlet-odd { background: #FAFAFA; }

.gauntlet-team-logo {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.gauntlet-team-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.gauntlet-team-meta {
    display: flex;
    align-items: center;
    gap: 4px;
}

.gauntlet-team-abbrev {
    font-size: var(--text-sm);
    font-weight: 900;
    text-transform: uppercase;
    color: #1A1A1A;
}

.gauntlet-team-pts {
    font-size: var(--text-xs);
    font-weight: 800;
    color: #1A1A1A;
}

.gauntlet-team-back {
    background: #1A1A1A;
    border: 1px solid #333;
    color: #E65100;
    padding: 0px 3px;
    font-size: var(--text-2xs);
    font-weight: 800;
}

.gauntlet-team-pace {
    font-size: var(--text-micro);
    font-weight: 700;
    color: #888;
}

.gauntlet-team-rem {
    font-size: var(--text-micro);
    font-weight: 700;
    color: #AAA;
    text-transform: uppercase;
}

/* Game cells */
.gauntlet-cell {
    border: 1px solid #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 1px;
    min-height: 48px;
    position: relative;
}

.gauntlet-cell.gauntlet-even { background: #FFF; }
.gauntlet-cell.gauntlet-odd { background: #FAFAFA; }
.gauntlet-cell.gauntlet-empty { background: #F5F5F5; }

/* Chip inside cell */
.gauntlet-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.gauntlet-chip img {
    width: 22px;
    height: 22px;
}

.gauntlet-cell.gauntlet-ring-sig { box-shadow: inset 0 0 0 2px #C62828; }

.gauntlet-chip-opp {
    font-size: var(--text-micro);
    font-weight: 800;
    color: #555;
    text-transform: uppercase;
}

.gauntlet-chip-venue {
    font-size: var(--text-2xs);
    font-weight: 600;
    color: #BBB;
    text-transform: uppercase;
}

/* (DIFF summary column removed) */
