    #toc {
        position: relative;
        margin: -24px auto 0 auto;
        max-width: 760px;
    }

    #table-of-contents {
        position: relative;
        display: flex;
        flex-direction: column;
        gap:4px;
        max-width: 100%;
        margin: 0 16px;
        background-color: #fff;
        padding: 24px;
        border-radius: 16px;
        box-shadow: 0px 1px 8px 0 rgba(0, 0, 0, 0.05);
        font-family: 'Manrope', sans-serif;
    }

    #table-of-contents .toc-header {
        display: block;
        font-size: 18px;
        line-height: 24px;
        font-weight: 600;
        color: #262626;
        font-family:'Unbounded', serif;
    }

    #table-of-contents ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #table-of-contents li {
        padding: 0px;
        border-radius: 0 8px 8px 0;
        margin-top: 8px;
        transition: all 0.3s ease;
    }

    #table-of-contents a {
        text-decoration: none;
        color: #262626;
        transition: all 0.3s ease;
        font-family: 'Manrope', sans-serif;
        font-weight: 400;
        display: block;
        font-size: 15px;
        line-height: 20px;
        letter-spacing:0.15px;
        opacity: 0.6;
    }

    #table-of-contents a:hover {
        opacity: 1;
    }

    .toc-level-2 {
        margin-left: 0;
    }

    .toc-level-3 {
        margin-left: 12px;
    }

    #table-of-contents li.active {
        font-weight:500;
    }

    #table-of-contents li.active > a {
        opacity: 1;
    }

    @media (max-width: 1200px) {
        #toc {
            max-width: 620px;
        }
    }

    @media screen and (max-width: 960px) {
        #toc {
            max-width: 600px;
        }
    }

    @media screen and (max-width: 640px) {
        #toc {
            max-width: 100%;
        }
        #table-of-contents {
            margin: 0 20px;
        }
    }
