.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-title {
    font-size: 2rem;
}

.connection-status {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    background: #fee2e2;
    color: #b91c1c;
    display: none;
}

.connection-status--live {
    background: #ecfdf5;
    color: #059669;
}

.connection-status--disconnected {
    background: #fee2e2;
    color: #b91c1c;
}

.match-info-panel {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.match-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.match-info-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.match-info-value {
    font-size: 1.25rem;
    font-weight: bold;
}

.match-score-value {
    font-size: 1.5rem;
    font-weight: bold;
}

.teams-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dashboard-team-header {
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-team-header--red {
    background: #ef4444;
}

.dashboard-team-header--blue {
    background: #1e3a8a;
}

.dashboard-team-title {
    margin: 0;
    font-size: 1.25rem;
}

.dashboard-team-score {
    font-size: 1.5rem;
    font-weight: bold;
}

.team-players {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-player-card {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.dashboard-player-main {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.dashboard-player-name {
    font-weight: bold;
}

.dashboard-player-role {
    font-size: 0.875rem;
    color: #6b7280;
}

.dashboard-player-rank {
    font-weight: bold;
}

.dashboard-player-rr {
    font-size: 0.875rem;
    color: #6b7280;
}

.dashboard-player-stats {
    display: flex;
    gap: 1.5rem;
    text-align: center;
}

.dashboard-stat-label {
    font-size: 0.75rem;
    color: #6b7280;
}

.dashboard-stat-value {
    font-weight: 600;
}
