#container-table {
    position: relative !important;
}

.post-toc {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 1rem;
}

.post-toc.is-fixed {
    z-index: 9999;
}

.post-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-toc li {
    padding: 0.5rem 0;
}

.post-toc .toc-level-3 a {
    color: #ffffff99;
    font-family: "Inter", Sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.25em;
    text-decoration: none;
}

.post-toc .toc-level-3 a:hover {
    color: white;
    font-family: "Inter", Sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.25em;
    padding-left: 8px; 
    display: inline-block; 
}

.post-toc li a {
    position: relative; 
    padding-left: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.post-toc li a:not(.active):hover::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    left: 0;
    top: 0;
    background-color: white;
}

.post-toc a.active {
    color: white !important;
    font-weight: 700;
    position: relative;  
    transition: all .3s ease;
    padding-left: 8px; 
    display: inline-block; 
}

.post-toc a.active::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #06F563;
}

