.sn-74-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.sn-74-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.sn-74-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 25vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sn-74-panel.is-active {
    right: 0;
}

.sn-74-close {
    background: none;
    border: none;
    cursor: pointer;
    align-self: flex-end;
    font-size: 24px;
    padding: 10px;
    margin-bottom: 20px;
}

.sn-74-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sn-74-nav ul li {
    margin-bottom: 5px;
}

.sn-74-nav ul li a {
    display: block;
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.2s ease;
}

.sn-74-nav ul.sub-menu {
    padding-left: 20px;
}

.elementor-editor-active .sn-74-content .elementor-inner-container {
    min-height: 50px;
    border: 1px dashed #ccc;
}