/* =========================================
   LAYOUT SCROLL OVERRIDES (NON-DESTRUCTIVE)
   ========================================= */

/* Disable page-level scrolling */
html, body {
    height: 100%;
    overflow: hidden;
}

/* Keep your existing sidebar-layout sizing */
.sidebar-layout {
    height: calc(100vh - 82px); /* matches your topnav */
    min-height: unset;         /* override existing min-height */
}

/* Sidebar: allow vertical scrolling */
#sidebar {
    overflow-y: auto;
    overflow-x: hidden;
}

/* Main content: prevent double scroll */
#main-content {
    overflow: hidden;
    padding: 0; /* padding moves to scroll wrapper */
}

/* Scrollable content area INSIDE main */
.main-scroll {
    height: 100%;
    overflow-y: auto;
    padding: 40px; /* preserves your original spacing */
}
