/* Mobile menu overlay styles */
#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #27348B;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 70px;
    display: none;
}

body.menu-open #mobile-menu {
    transform: translateX(0);
    display: block;
}

/* Close button styles */
.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

/* Menu items */
#mobile-menu a {
    display: block;
    padding: 15px 20px;
    color: white !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Submenu styles */
.submenu-content {
    background-color: rgba(0,0,0,0.1);
    display: none;
}

.submenu-content.show {
    display: block;
}

/* Body lock when menu is open */
body.menu-open {
    overflow: hidden;
}
