
.list-container {
    margin-bottom: 20px;
}

.list-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.list-item::before {
    content: "\2022";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.citatione {
    color: var(--link-color);
    text-decoration: none;
    font-size: 0.7em;
    vertical-align: super;
}

.citatione:hover {
    text-decoration: underline;
}

.references {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.references h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    border-bottom: none;
}

.reference-item {
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* NOUVELLE RÈGLE CSS POUR LES TABLEAUX */
.table-responsive {
    overflow-x: auto; /* Permet le défilement horizontal */
    margin-bottom: 20px;
}

table {
    width: 100%;
    min-width: 600px; /* Assurez-vous que le tableau soit suffisamment large pour déclencher le défilement si nécessaire */
    border-collapse: collapse;
}

caption {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

th, td {
    border: 1px solid var(--light-gray);
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

thead th {
    background-color: var(--light-gray);
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

.references {
        font-size: 0.8rem;
    }
}
