/* style_tableau.css */

/* Style pour le conteneur du tableau */
.table-container {
    margin-top: 20px;
}

/* Style pour le tableau */
.table-container table {
    width: 100%;
    border-collapse: collapse;
}

/* Style pour les cellules du tableau */
.table-container th,
.table-container td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

/* Style pour l'en-tête du tableau */
.table-container th {
    background-color: #f2f2f2;
    color: #333;
}
