/* Mobile Bottom Navbar Styles */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9998;
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bottom-nav .nav-item {
    padding-top: 14px;
    padding-bottom: 14px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-bottom-nav .nav-item:active {
    background: #f8f9fa;
}

.mobile-bottom-nav small {
    font-size: 11px;
    font-weight: 500;
    display: block;
    margin-top: 4px;
    line-height: 1.2;
}

.mobile-bottom-nav i {
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Adjust padding for body so content isn't hidden behind navbar */
@media (max-width: 576px) {
    body {
        padding-bottom: 70px !important;
    }
}
