/* style.css */

/* Style pour les en-têtes des tableaux */
.table-header {
    background-color: #000000;
    color: #FFFFFF;
    font-weight: bold;
}

/* Style pour les lignes impaires */
.row-odd {
    background-color: #ffffff;
}

/* Style pour les lignes paires */
.row-even {
    background-color: #f2f2f2;
}

/* Style pour les cellules des tableaux */
th, td {
    border: 1px solid #000000;
    padding: 8px;
    text-align: left;
    font-family: helvetica, sans-serif;
}

/* Style pour les tableaux */
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 15px;
}

/* Style pour les titres */
h3, h4 {
    font-family: helvetica, sans-serif;
}

/* Marges pour les sections */
.section-title {
    margin-top: 20px;
    margin-bottom: 10px;
}
