/* Wrapper principal de la table des matières */
#toc_wrapper {
  padding: 15px;
  background-color: var(--toc-background-color, #f0f0f0);
  color: var(--toc-text-color, #000);
  position: relative;
}

#toc_wrapper a {
  text-decoration: none;
}

#toc_wrapper ul {
  margin: 0;
}

.toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toc-title {
  margin-bottom: 0px;
  font-size: 20px;
}

#close_icon,
#toc_icon_open_box,
#mobile_toc_icon {
  display: none;
}

#toc_icon_open_box,
#toc_icon_close_box {
  cursor: pointer;
  width: 32px;
  height: 32px;
}

/* Contenu de la ToC avec scroll limité */
#toc_content {
  margin-top: 10px;
  display: block;
  max-height: 40vh;
  overflow-y: auto;
}

#toc_content a.active-title {
  background-color: var(--toc-active-background-color);
  color: var(--toc-active-text-color) !important;
  transition: color 0.8s ease, background-color 0.8s ease;
  display: inline-block;
  width: 100%;
}
#toc_content a {
  display: inline-block;
  width: 100%;
}

/* Réglages de base pour tous les niveaux */
#toc_content li {
  margin-left: 0;
  display: block;
}
/* Style spécifique selon le niveau de titre H2, H3, H4, H5 */
#toc_content li.toc-h2 a {
  padding: 0 10px 0 10px;
  font-size: 15px;
}
#toc_content li.toc-h3 a {
  padding: 0 10px 0 20px;
  font-size: 13px;
}
#toc_content li.toc-h4 a {
  padding: 0 10px 0 30px;
  font-size: 11px;
}
#toc_content li.toc-h5 a {
  padding: 0 10px 0 35px;
  font-size: 10px;
}

/* SCROLLBAR */
@supports ((scrollbar-gutter: stable) and (scrollbar-width: thin)) {
  #toc_content {
    scrollbar-width: thin;
    scrollbar-gutter: stable;
  }
}

@supports (scrollbar-color: #55555588 #bbbbbb88) {
  #toc_content {
    scrollbar-color: #55555588 #bbbbbb88;
  }
}

/* RESPONSIVE */
@media (max-width: 769px) {
  #toc_wrapper {
    display: none;
    position: fixed;
    top: 20vh;
    right: 5px;
    max-width: 50%;
    z-index: 9999;
  }
  #mobile_toc_icon {
    background-color: var(--toc-background-color, #f0f0f0);
    color: var(--toc-text-color, #000);
    position: fixed;
    top: 20vh;
    right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 10px;
    border-radius: 180px;
  }
  #close_icon {
    display: block;
    height: 25px;
  }
  #toc_icon_close_box {
    display: none;
  }
  .toc-title {
    font-size: 16px;
  }
  #toc_content {
    padding-right: 10px;
  }
}