body {
    background-color: #f8f9fa;
}

.header-container {
    background-color: #e9ecef;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px; /* Espace entre le h1 et le tableau */
}

.table th, .table td {
    text-align: center;
    vertical-align: middle;
    width: 1%; /* Pour forcer les colonnes à avoir la même largeur */
}

.table thead th {
    background-color: #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1;
}

.table tfoot th {
    font-weight: bold;
}

.table {
    table-layout: fixed; /* Assure que toutes les colonnes ont la même largeur */
    width: 100%;
}