/* Auth background */
.auth-bg {
    background-color: #f5f8fa;
    font-family: 'Poppins', sans-serif;
}
.auth-page-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    background-repeat: no-repeat;
    opacity: 0.06; z-index: 0; pointer-events: none;
}
.d-flex.flex-column.flex-root { position: relative; z-index: 1; }
.w-120px { width: 120px; }
.h-60px { height: 60px; }

/* Aside sidebar: force full height and scroll */
#kt_aside {
    height: 100vh !important;
    position: fixed !important;
    top: 0; left: 0;
    z-index: 100;
    display: flex !important;
    flex-direction: row !important;
}
#kt_aside .aside-primary {
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}
#kt_aside .aside-primary .aside-nav {
    flex: 1;
    overflow-y: auto;
}
#kt_aside .aside-secondary {
    height: 100vh;
    overflow: hidden;
}
/* The scrollable menu */
#kt_aside_wordspace {
    height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
}
/* Thin scrollbar */
#kt_aside_wordspace::-webkit-scrollbar { width: 4px; }
#kt_aside_wordspace::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }
#kt_aside_wordspace::-webkit-scrollbar-track { background: transparent; }

/* Mobile: hide sidebar by default, show with drawer-on */
@media (max-width: 991.98px) {
    #kt_aside { display: none !important; }
    #kt_aside.drawer-on { display: flex !important; }
}
