.content-wrapper {
     min-height: 100vh;
}
.dropdown-toggle {
    position: relative; /* Ensure the parent is positioned */
}
.dropdown-toggle::after {
    position: absolute;
    right: 10px; /* Adjust as needed for desired spacing from the right edge */
    top: 50%; /* Vertically center the caret */
    transform: translateY(-50%); /* Adjust for perfect vertical centering */
}

.sidebar-heading {
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
    margin-top: 10px;
}
.toc-sidebar {
    position: sticky;
    top: 100px;
    font-size: 14px;
    height: fit-content;
    border-style: solid;
    border-color: #002855;
    border-width: 1px;
    border-radius: 10px;
    padding: 20px;
}
 /* Highlight active TOC item */
.toc-sidebar .nav-link.active { 
    font-weight: bold; 
    background-color: #002855;
    border-radius: 10px;
    color: white !important;
}
.toc-sidebar .nav-item {
    margin-bottom: 10px;
}
.main-content { 
    scroll-margin-top: 186px; 
}
.section {
    padding: 80px 0;
    border-bottom: 1px solid #dee2e6;
}
.section h2 {
     margin-bottom: 30px;
}
.mobile-toc {
     background-color: white;
     padding: 10px 0;
}
.mobile-toc .dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 12px;
    font-size: 16px;
    background-color: white;
    color: black;
    border-color: #b3bfcc;
}
.mobile-toc .dropdown-menu {
    width: 100%;
    overflow-y: auto;
}
.mobile-toc .dropdown-item {
    font-size: 18px;
    line-height: 2.0em;
}

.toc-content img {
    border-radius: 10px;
}

#toc a {
    color: #002855;
    border-radius: 10px;
}
#toc a:active {
    color: white;
}


@media (max-width: 767.98px) {

    .toc-content {
        padding: 0;
    }
    .toc-sidebar {
        display: none;
    }
    .mobile-toc {
        position: sticky;
        top: 116px;
        z-index: 1030;
        width: 100%;
    }
    .mobile-toc .dropdown-item {
        font-size: 14px;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: normal;
        margin-bottom: 15px;
        margin-top:10px;
    }
}
