/* style-fanzone.css */
.section-fanzone {
    padding: 60px 8%;
}

.titre-page {
    text-align: center;
    color: #0d1b2a;
    margin-bottom: 40px;
}

.conteneur-fanzone {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.bloc-predictor, .bloc-leaderboard {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.bloc-predictor h3, .bloc-leaderboard h3 {
    color: #0d1b2a;
    margin-bottom: 15px;
}

.form-pronostic {
    margin-top: 20px;
}

.champ-formulaire {
    margin-bottom: 15px;
}

.champ-formulaire label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.champ-formulaire input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.bouton-pronostic {
    background-color: #e76f51;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
}

.tableau-scores {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tableau-scores th, .tableau-scores td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.tableau-scores th {
    background-color: #0d1b2a;
    color: white;
}