.round-robin-table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}

.round-robin-table th, .round-robin-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.row-label {
    font-weight: bold;
    text-align: left;
    background-color: #f9f9f9;
}

.cell-disabled {
    background-color: #eee;
    color: #999;
}

.stat-cell {
    background-color: #f0f8ff; /* Light blue to separate stats from matches */
    font-weight: 500;
}

.match-cell {
    min-width: 50px;
    cursor: pointer;
}

/* Highlight for the 1st place player */
.winner-row {
    background-color: #fff9db !important; /* Soft gold background */
    border-left: 5px solid #fcc419; /* Gold accent border */
}

.winner-row td.row-label {
    color: #e67e22; /* Different text color for the winner's name */
    background-color: #fff9db !important;
}

/* Make stats headers stand out from player names */
.stat-header {
    background-color: #34495e !important; /* Dark navy/grey */
    color: #ecf0f1 !important;
    font-size: 0.85rem;
    line-height: 1.2;
    min-width: 80px;
}

/* Optional: add a trophy icon next to 1st place in the 'Place' column */
.winner-row td:last-child::after {
    content: " 🏆";
}
