.toc {
    overflow-y: auto;
    font-size: 14px;
}
.toc > .toc-list {
    overflow: hidden;
    position: relative;
}
.toc > .toc-list li {
    list-style: none;
}
.js-toc {
    overflow-y: hidden;
}
.toc-list {
    margin: 0;
    padding-left: 10px;
}
a.toc-link {
    color: currentColor;
    height: 100%;
}
.is-collapsible {
    max-height: 1000px;
    overflow: hidden;
    transition: all 300ms ease-in-out;
}
.is-collapsed {
    max-height: 0;
}
.is-position-fixed {
    position: fixed !important;
    top: 0;
}
.is-active-link {
    /* font-weight: 700; */
    color: #54bc4b !important;
}
.toc-link::before {
    background-color: #eee;
    content: " ";
    display: inline-block;
    height: inherit;
    left: 0;
    margin-top: -1px;
    position: absolute;
    width: 2px;
}
.is-active-link::before {
    background-color: #54bc4b;
}

.toc-div {
    opacity: 0; /* Initially hidden */
    border-radius: 5px;
    transition: opacity 0.7s ease; /* Add a transition for the opacity property */
    pointer-events: none; /* Disable pointer events when the div is hidden */
    /* animation: fadeIn 5s; */
}
