@charset "utf-8";

/* Mobile Menu Button Styles */
#menubar_hdr {
    display: none;
    /* Hidden by default on desktop */
}

@media (max-width: 767px) {
    #menubar_hdr {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: #fff;
        /* Tailwind blue-500 */
        z-index: 9999;
        cursor: pointer;
        border-radius: 4px;
    }

    #menubar_hdr::before {
        content: '\f0c9';
        /* fa-bars */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: #000;
        font-size: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    #menubar_hdr.open::before {
        content: '\f00d';
        /* fa-times */
    }

    /* Mobile Menu Container */
    #menubar-s {
        display: none;
        position: fixed;
        top: 60px;
        right: 10px;
        width: 200px;
        background: white;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        z-index: 9998;
        padding: 10px;
    }

    #menubar-s.open {
        display: block;
    }

    #menubar-s ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #menubar-s li {
        border-bottom: 1px solid #eee;
    }

    #menubar-s li:last-child {
        border-bottom: none;
    }

    #menubar-s a {
        display: block;
        padding: 10px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
    }

    #menubar-s a span {
        display: block;
        font-size: 10px;
        color: #999;
    }
}