/* Toggle Button */
.ssp-toggle-f28c2abc {
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.ssp-toggle-f28c2abc:hover {
    opacity: 0.8;
}

/* Overlay */
.ssp-overlay-f28c2abc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    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;
}

.ssp-overlay-f28c2abc.is-open {
    opacity: 1;
    visibility: visible;
}

/* Slide Panel */
.ssp-panel-f28c2abc {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.ssp-panel-f28c2abc.is-open {
    right: 0;
}

/* Panel Header */
.ssp-panel-header-f28c2abc {
    padding: 20px 30px;
    display: flex;
    justify-content: flex-end;
}

.ssp-close-f28c2abc {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
}

/* Panel Content */
.ssp-panel-content-f28c2abc {
    padding: 30px;
    flex-grow: 1;
}

.ssp-search-form-f28c2abc {
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.ssp-search-field-f28c2abc {
    width: 100%;
    border: none;
    background: transparent;
    padding: 15px 0;
    font-size: 1.2rem;
    outline: none;
    color: #333;
}

.ssp-search-field-f28c2abc:focus {
    box-shadow: none;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}