/* Conteneur du tableau */
.table-container {
    padding: 20px;
    margin: 0 auto;
    width: 80%;
    background-color: #fff; /* Fond blanc */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Ombre légère */
    text-align: center;
}

/* Titre de la section */
.table-container h2 {
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #003366; /* Couleur de texte bleu foncé */
}

/* Tableau stylé */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1em;
    font-family: Arial, sans-serif;
    color: #333;
}

/* En-tête du tableau */
.styled-table thead tr {
    background-color: #003366; /* Bleu foncé */
    color: #fff;
    text-align: left;
}

/* Bordures des cellules */
.styled-table th,
.styled-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

/* Style des lignes */
.styled-table tbody tr {
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f1f1f1;
}

.styled-table tbody tr:hover {
    background-color: #e6f7ff; /* Légère teinte bleue au survol */
}

/* Dernière ligne en gras */
.styled-table tbody tr:last-of-type {
    font-weight: bold;
    color: #003366;
}
