/* Winner highlighting */
.winner {
    font-weight: bold;
}

/* Top 3 in final standings */
.top-1 td { background-color: rgba(255, 215, 0, 0.15); }
.top-2 td { background-color: rgba(192, 192, 192, 0.15); }
.top-3 td { background-color: rgba(205, 127, 50, 0.15); }

/* Winner banner */
.winner-banner {
    text-align: center;
    background-color: rgba(255, 215, 0, 0.1);
}

/* Flash messages */
.flash-error { background-color: rgba(220, 53, 69, 0.1); color: #842029; }
.flash-success { background-color: rgba(25, 135, 84, 0.1); color: #0a6640; }

/* Result radio buttons inline */
.result-radios {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.result-radios label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0;
}

/* Standings table position column */
.standings-table th:first-child,
.standings-table td:first-child {
    width: 3rem;
    text-align: center;
}
