/* Appliquer une couleur de fond à toute la page */
body {
    background-color: #b2340a; /* Choisissez la couleur que vous voulez */
    margin: 0;
    padding: 0;
}

/* Style pour centrer et améliorer le rendu du tableau */
.centered-table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    font-size: 16px;
    text-align: left;
}

.centered-table th, .centered-table td {
    padding: 12px;
    border: 3px solid red;
}

.centered-table th {
    background-color: #f4f4f4;
    color: #333;
}

.centered-table tr:nth-child(even) {
    background-color: #c1fe0c;
}

.centered-table tr:nth-child(odd) {
    background-color: #d8c5a7;
}

.centered-table tr:hover {
    background-color: #95e2e2;
}
