/* Mobile Bottom Navigation Styles */
body.mobile-nav-active {
    padding-bottom: 70px !important; /* Space for the bottom nav */
}

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1040;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 10px 20px;
}

.mobile-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #888;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    width: 20%;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover, .mobile-nav-item:focus {
    color: #888;
}

.mobile-nav-item.active {
    color: #664dc9; /* Nikhila purple theme color */
}

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

/* Center FAB Button */
.mobile-nav-center {
    position: relative;
    top: -20px;
}

.mobile-nav-center .fab-button {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #664dc9 0%, #8768e8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 77, 201, 0.4);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.mobile-nav-center.active .fab-button {
    transform: scale(1.05);
}

.mobile-nav-center .fab-button i {
    color: white;
    font-size: 24px;
    margin-bottom: 0;
}

/* Ensure main wrapper has padding on mobile to not hide content behind nav */
@media (max-width: 767px) {
    .page-wrapper {
        padding-bottom: 80px !important;
    }
    
    /* Optional: hide the regular sidebar on mobile if needed */
    /* .sidebar { display: none !important; } */
}
