
#header h1 {
    text-align: center;
    margin-bottom: 10px;
}


#liste {
    display: flex;              
    justify-content: center;    
    gap: 30px;                 
    padding: 15px;
    background-color: #f4f4f4;  
}


#liste a {
    text-decoration: none;      
    color: #333;                
    font-weight: bold;          
}

#liste a:hover {
    color: #007bff;             
}

/* Style général du tableau */
.tableau-festivals {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse; /* Fusionne les bordures */
    font-family: Arial, sans-serif;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Style des entêtes (le haut du tableau) */
.tableau-festivals th {
    background-color: #333;
    color: white;
    padding: 12px;
    text-align: left;
}

/* Style des cases */
.tableau-festivals td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* Effet "Zèbre" : une ligne sur deux en gris clair */
.tableau-festivals tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Effet de survol sur la ligne */
.tableau-festivals tr:hover {
    background-color: #f1f1f1;
}