/* General Styling */
.report-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

/* Team Comparison Section */
.compare-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.compare-teams label {
    font-weight: bold;
}

.compare-teams select {
    padding: 8px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Clear Teams Button */
.clear-button {
    padding: 10px 15px;
    font-size: 16px;
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.clear-button:hover {
    background: #cc0000;
    transform: scale(1.05);
}

/* Table */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.styled-table th {
    background: linear-gradient(135deg, #005f9e, #0088cc);
    color: white;
    padding: 12px;
}

.styled-table tr:hover {
    background: rgba(0, 0, 0, 0.07);
}

/* Back Button */
.back-button {
    display: inline-block;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    background: #007bff;
    color: white;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
}

.back-button:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* Today's Games Section */
.todays-games {
    text-align: center;
    margin-bottom: 20px;
}

.games-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.game-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    min-width: 250px;
}

.game-info {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.compare-btn {
    padding: 10px 15px;
    font-size: 16px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.compare-btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.race-to-15-winner {
    background-color: #ffd700 !important; /* Gold background for emphasis */
    font-weight: bold;
    color: #333; /* Dark text for readability */
}

.race-to-10-winner {
    background-color: #ffd700 !important; /* Gold background for emphasis */
    font-weight: bold;
    color: #333; /* Dark text for readability */
}

.highlighted-team {
    background-color: rgba(255, 215, 0, 0.3); /* Light Gold */
    font-weight: bold;
}
