/* Sidebar Fix CSS */

/* Fix dropdown display */
.dropdown-content {
    display: none;
}

/* Add bottom margin to sidebar */
.sidenav .navbar-nav {
    margin-bottom: 4rem !important;
    padding-bottom: 4rem !important;
}

/* Fix icon alignment */
.nav-link .flex-shrink-0 {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Fix support menu link */
.nav-link[href*="support"] {
    margin-bottom: 1rem !important;
}

/* Fix sidebar width */
.sidenav {
    width: 280px !important;
    min-width: 280px !important;
}

/* Fix main content margin */
.main-content {
    margin-left: 280px !important;
    width: calc(100% - 280px) !important;
}

@media (max-width: 1024px) {
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }
}
