/* Mobile Bottom Navigation Bar Styles */
.mobile-bottom-nav {
    display: none; /* Hidden by default on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid #e2e8f0;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #64748b;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
    color: #1d4ed8;
    text-decoration: none;
}

/* Add padding to body to prevent content from hiding behind the nav bar */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
    .mobile-bottom-nav {
        display: flex;
    }
    /* Hide the sidebar on small screens completely when bottom nav is active */
    #accordionSidebar {
        display: none !important;
    }
    
    /* Adjust content wrapper if necessary */
    #content-wrapper {
        margin-left: 0 !important;
    }
}
