/* Menu Active State Fix */
/* Ensure only one menu item can be visually active at a time */

.sidebar-nav #sidebarnav > li {
    transition: all 0.3s ease;
}

/* Override any potential conflicting active states */
.sidebar-nav #sidebarnav > li:not(.active) > a {
    background-color: transparent !important;
    color: inherit !important;
}

.sidebar-nav #sidebarnav > li:not(.active) > a i {
    color: inherit !important;
}

/* Ensure active state is clearly visible */
.sidebar-nav #sidebarnav > li.active > a {
    background-color: #4b5c70 !important;
    color: #ffffff !important;
}

.sidebar-nav #sidebarnav > li.active > a i {
    color: #ffffff !important;
}
