/* --- Mobile Navigation Menu --- */
.mobile-nav-overlay {
    position: fixed;
    inset: 0; /* Covers top, right, bottom, left */
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}
.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-sidenav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background: #fff;
    z-index: 2001;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.mobile-sidenav.open {
    transform: translateX(0);
}

.nav-profile {
    display: flex;
    align-items: center;
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
}
.nav-profile i {
    font-size: 40px;
    color: #002b5c;
    margin-right: 15px;
}
.nav-profile span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.nav-links {
    flex-grow: 1; /* Pushes the logout button to the bottom */
    padding: 10px 0;
}
.nav-links a,
.nav-logout a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
}
.nav-links a:hover {
    background: #f9f9f9;
}
.nav-links a i,
.nav-logout a i {
    width: 30px;
    font-size: 18px;
    color: #002b5c;
    margin-right: 10px;
    text-align: center;
}

.nav-logout {
    border-top: 1px solid #eee;
}
.nav-logout a i {
    color: #d9534f;
}

#load-more-btn {
    display: block;
    width: 50%;
    height: 50px;
    margin: 10px auto;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    background-color: #002b5c;
    color: white;
    cursor: pointer;
}
