/* Hide the text 'Search' next to the icon */
.md-search__label {
    display: none;
}

/* Hide the Previous and Next buttons in the header */
.md-footer-nav__link--prev,
.md-footer-nav__link--next,
.md-header-nav__button--prev,
.md-header-nav__button--next {
    display: none !important;
}

/* --- Collapsible ToC dropdown --- */

/* Hide children when collapsed */
.bs-sidebar .toc-collapsed {
    display: none;
}

/* Toggle arrow indicator for items with children */
.bs-sidebar .toc-has-children > a.nav-link::before {
    content: "▸";
    display: inline-block;
    width: 14px;
    margin-right: 4px;
    transition: transform 0.2s ease;
}

/* Rotate arrow when expanded */
.bs-sidebar .toc-open > a.nav-link::before {
    content: "▾";
}

/* Pointer cursor on expandable items */
.bs-sidebar .toc-has-children > a.nav-link {
    cursor: pointer;
}

