/* Hide sidebar when collapsed */
body.right-toc-collapsed .bd-sidebar-secondary {
    display: none !important;
}

/* Shared handle style */
.toc-handle {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border: none;
    padding: 0;
    margin: 0;

    cursor: pointer;
    z-index: 1000;
}

/* Close handle sits on the LEFT side of the open OTP sidebar */
.toc-handle-close {
    display: flex;
}

/* Open handle sits on the RIGHT edge of the page when collapsed */
.toc-handle-open {
    right: 0;
    display: none;
}

body.right-toc-collapsed .toc-handle-close {
    display: none;
}

body.right-toc-collapsed .toc-handle-open {
    display: flex;
}

/* Chevron */
.toc-handle span {
    font-size: 12px;
    color: #666;
    pointer-events: none;
}

.toc-handle:hover span {
    color: #000;
}

/* Optional: let content use more width */
body.right-toc-collapsed .bd-main .bd-content .bd-article-container {
    max-width: 100% !important;
}