.msm-wrapper-6d202b2d {
    position: relative;
}

.msm-toggle-btn-6d202b2d {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}
.msm-toggle-btn-6d202b2d svg {
    fill: currentColor;
}

.msm-overlay-6d202b2d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.msm-overlay-6d202b2d.is-active {
    opacity: 1;
    visibility: visible;
}

.msm-panel-6d202b2d {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

.msm-panel-6d202b2d.is-active {
    transform: translateX(0);
}

.msm-close-btn-6d202b2d {
    background: transparent;
    border: none;
    cursor: pointer;
    align-self: flex-end;
    padding: 10px;
    color: #333;
}

.msm-close-btn-6d202b2d svg {
    fill: currentColor;
}

.msm-nav-container-6d202b2d ul.menu {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.msm-nav-container-6d202b2d ul.menu li {
    margin-bottom: 15px;
}

.msm-nav-container-6d202b2d ul.menu li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    display: block;
}
