/* Infinity Push Menu Styles */
.infinity-push-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: #003366;
    z-index: 1050;
    overflow-y: auto;
    transition: all 0.3s ease;
    /*box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);*/
}

.infinity-push-menu.open {
    left: 0;
}

.infinity-push-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}

.infinity-push-menu-overlay.open {
    display: block;
}

.menu-header {
    padding: 15px;
    background-color: #002244;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-title {
    font-size: 18px;
    font-weight: bold;
}

.menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items li {
    border-bottom: 1px solid #004488;
}

.menu-items li.active {
    background-color: #004488;
}

.menu-items li a {
    display: block;
    padding: 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-items li a:hover {
    background-color: #004488;
}

/* Mobile Navigation Styles */
.mobile-nav {
    padding: 15px 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    padding: 0;
    margin-left: 15px;
    cursor: pointer;
}

.menu-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #fff;
    margin: 4px 0;
}

/* Push effect for body */
body.menu-open {
    overflow: hidden;
}

@media (min-width: 768px) {
    .infinity-push-menu,
    .infinity-push-menu-overlay,
    .mobile-nav {
        display: none;
    }
}
