/* Menu fixe, centré à droite */
#table-of-contents {
    position: fixed;
    top: 130px;
    right: 6px;
    width: auto;
    max-width: 90vw;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-family: Arial, sans-serif;
    display: none;
    font-size: 14px;
    overflow-y: hidden;
}
#table-of-contents .toc-scroll{
    padding: 10px;
    max-height: calc(90vh - 130px);
    overflow-y: auto;
}

/* Titre du sommaire */
#table-of-contents h2 {
    margin-top: 0;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

/* Liste des éléments du menu */
#table-of-contents ul {
    list-style-type: none;
    padding: 0 8px;
}

/* Style de chaque élément de la table des matières */
#table-of-contents li {
    margin: 5px 0;
}

#table-of-contents a {
    text-decoration: none;
    color: #333;
}

#table-of-contents a:hover {
    color: #007bff;
}

/* Différenciation des niveaux de titres */
#table-of-contents li.level-h1 {
    font-weight: bold;
	text-align: center;
}
/* #table-of-contents li.level-h2 {
    font-weight: bold;
} */

#table-of-contents li.level-h3 {
    margin-left: 10px;
    font-style: italic;
}

#table-of-contents li.level-h4 {
    margin-left: 20px;
}

#table-of-contents li.level-h5 {
    margin-left: 30px;
}

#table-of-contents li.active a {
    /* font-weight: bold; */
    color: #007bff;
}



#table-of-contents-simplified {
	display: none;
    position: fixed;
	z-index: 13;
    top: 130px;
    right: 6px;
    width: 24px;
    font-size: 14px;
    max-height: calc(100vh - 130px);
    overflow-y: hidden;
}
#table-of-contents-simplified:hover + #table-of-contents, #table-of-contents:hover {
    display: block;
}

#table-of-contents-simplified ul {
    list-style: none;
    padding: 0;
    margin: 6px 0;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 12px;
}

#table-of-contents-simplified li {
    list-style: none;
    display: inline-block;  /* Pour afficher le lien sous forme de bloc */
    background-color: #ddd;
    height: 2px;
    border-radius: 2px;
    -webkit-margin-start: 4px;
            margin-inline-start: 4px;
}

#table-of-contents-simplified li.active {
    background-color: black;
}

#table-of-contents-simplified li.level-h1 {
    width: 24px;
}

#table-of-contents-simplified li.level-h2 {
    width: 18px;
}

#table-of-contents-simplified li.level-h3 {
    width: 14px;
}

#table-of-contents-simplified li.level-h4 {
    width: 10px;
}

#table-of-contents-simplified li.level-h5 {
    width: 8px;
}
