.sle-search-icon-wrapper {
    display: inline-block;
    cursor: pointer;
}

.sle-search-icon-wrapper i {
    font-size: var(--sle-icon-size, 24px);
    color: var(--sle-icon-color, #000);
}

/* Lightbox Styles */
.sle-lightbox {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.sle-lightbox.active {
    display: flex;
}

.sle-lightbox-content {
    position: relative;
    background-color: transparent;
    padding: 20px;
    width: 80%;
    max-width: 600px;
}

.sle-close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.sle-search-form {
    display: flex;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}

.sle-search-field {
    flex-grow: 1;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    outline: none;
}

.sle-search-submit {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
}
