body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 40px;
    color: #333;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

h1 {
    margin-bottom: 20px;
}

h2 {
    margin-top: 40px;
}



/* Header styling */
.commentary-table thead th {
    background-color: #e7cc3d;
    color: #000;
    font-weight: bold;
    padding: 14px;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Rounded corners for header */
.commentary-table thead th:first-child {
    border-top-left-radius: 8px;
}

.commentary-table thead th:last-child {
    border-top-right-radius: 8px;
}

/* Body cells */
.commentary-table td {
    padding: 14px;
    border-top: 1px solid #ddd;
    vertical-align: top;
}

/* Alternating rows */
.commentary-table tbody tr:nth-child(even) {
    background-color: #f0f0f0;
}

/* First column bold only */
.commentary-table tbody td:first-child {
    font-weight: bold;
}

.commentary-table ul {
    margin: 0;
    padding-left: 18px;
}

.commentary-table li {
    margin-bottom: 4px;
}

.commentary-table .secondary {
    color: #777;
}

.commentary-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    table-layout: fixed; 
}

/* Largeur des colonnes */
.commentary-table th:nth-child(1),
.commentary-table td:nth-child(1) {
    width: 22%;
}

.commentary-table th:nth-child(2),
.commentary-table td:nth-child(2) {
    width: 25%;
}

.commentary-table th:nth-child(3),
.commentary-table td:nth-child(3) {
    width: 21%;
}

.commentary-table th:nth-child(4),
.commentary-table td:nth-child(4) {
    width: 32%;
}

/* List styling */
.commentary-table ul {
    margin: 0;
    padding-left: 18px;
}

.commentary-table li {
    margin-bottom: 4px;
}

/* Lignes secondaires plus claires */
.commentary-table .secondary {
    color: #777;
}



