/* ======= TABLEAUX ======= */
.table-container table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.table-container th, .table-container td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.table-container th {
    background-color: #2c3e50;
    color: white;
}

.table-container tr:nth-child(even) {
    background-color: #f2f2f2;
}

.table-container tr:hover {
    background-color: #ddd;
}



.download-pdf {
    margin-top: 20px;
    text-align: center;
}

.download-pdf h2 {
    text-align: left; /* Assure que le texte du titre reste aligné à droite */
}

.download-pdf a {
    display: inline-block;
    background: rgba(196, 42, 42, 0.986);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    min-width: 150px; /* Assure une même largeur */
    text-align: center;
    margin: 5px; /* Ajoute un espacement entre les boutons */
}

.download-pdf a:hover {
    background: rgba(196, 42, 42, 0.534)
}







