/* === General Reset for Mobile First === */
body {
    margin: 0;
    padding-bottom: 70px; /* space for bottom nav */
}

/* === Top Navbar === */
.mobile-top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    background-color: #fff;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.mobile-top-nav .top-row {
    border-bottom: 1px solid #f0f0f0;
}

.profile-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    font-weight: 600;
    font-size: 1rem;
}

.search-input {
    border-radius: 25px;
    font-size: 0.9rem;
}

/* === Bottom Navbar === */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #ccc;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    z-index: 999;
}

.mobile-bottom-nav .nav-item {
    flex: 1;
    text-align: center;
    color: #151615;
    font-size: 12px;
    padding: 5px 0;
}

.mobile-bottom-nav .nav-item i {
    display: block;
    font-size: 18px;
    margin-bottom: 2px;
}

.mobile-bottom-nav .nav-item.active {
    color: #2e7d32;
    font-weight: bold;
}


.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
    color: #2e7d32;
}

/* === Responsive Desktop Adjustments (Optional) === */
@media (min-width: 768px) {
    .mobile-top-nav,
    .mobile-bottom-nav {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}
@media (min-width: 768px) {
    .mobile-top-nav,
    .mobile-bottom-nav {
        display: none !important;
    }
}
