/* mobile-navbar.css */
/* Hide mobile menu button by default */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #2d3748;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
}

/* Mobile styles */
@media (max-width: 768px) {
    header {
        position: relative;
        padding: 15px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    nav.active {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        padding: 15px 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    .nav-link {
        display: block;
        padding: 10px 20px;
    }

    .nav-link.active {
        background-color: #ebf8ff;
        color: #38b2ac;
    }
}