
 /* Overlay styles */
 .menu-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black overlay */
    display: none;
    z-index: 210;
}

/* Slide-out menu styles */
.slide-out-container {
    position: fixed;
    top: 0;
    right: -100%;
    /* Initially off-screen to the right */
    width: 95%;
    /* Adjust this width as needed */
    max-width: 25%;
    /* Max width for larger screens */
    height: 100%;
    background-color: #fff;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 220;
}

/* Button container styles */
.btn-contain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    color: #f7f7f7;
    background-color:#111;
}

.menu-title{
    font-size: 1.5rem;
    font-weight: 600;
}  

/* Close button styles */
.menu-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #f7f7f7;
    font-size: 1.125rem;
}

/* Menu container styles */
.menu-container {
    padding: 1rem;
}

.menu-container .nested{
    background: #f3f5f9;
}
.menu-container p{
    margin-bottom: 0;
}

.menu-container a,.menu-container .nested a {
    font-size: 1.125rem;
    padding: 1.25rem;
    display: block;
    border-bottom: solid thin gray;
    color:#111;
}

.menu-container .accordion-menu .nested.is-accordion-submenu{
    margin-left:0;
}
/* Hide scrollbar for the menu container */
.menu-container::-webkit-scrollbar {
    display: none;
}

/* Media queries for responsive design */
@media (max-width: 1440px) {
    .slide-out-container {
        width: 33%;
    }
}

@media (max-width: 1024px) {
    .slide-out-container {
        width: 50%;
        max-width: 80%;
        /* Adjust max-width as needed */
    }
}

@media (max-width: 960px) {
    .slide-out-container {
        width: 85%;
        max-width: 100%;
        /* Full width for smaller screens */
    }
}