/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Active link styling */
.site-aside .menu-item .nav-link.active,
.site-aside .menu-item .nav-link:hover {
    color: var(--bs-primary, #0d6efd);
    background-color: rgba(var(--bs-primary-rgb, 13, 110, 253), 0.1);
    border-radius: 0.25rem;
    font-weight: 600;
}

/* Ensure submenus are visible when parent is active/expanded */
.site-aside .collapse.show {
    display: block;
}

/* Force scrollbar on sidebar */
.site-aside .aside-scroll {
    overflow-y: auto !important;
    max-height: calc(100vh - 100px); /* Adjust based on header/logo height */
}

/* Scrollbar styling for sidebar */
.site-aside::-webkit-scrollbar {
    width: 6px;
}
.site-aside::-webkit-scrollbar-track {
    background: transparent;
}
.site-aside::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}
