.wsge-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    overflow-y: auto;
}
.wsge-modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 700px;
    border-radius: 8px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.wsge-close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}
.wsge-apply-btn {
    background: #2c7fb8;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}
.wsge-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.wsge-form-field {
    display: flex;
    flex-direction: column;
}
.wsge-full-width {
    grid-column: span 2;
}
.wsge-form-field label {
    font-weight: bold;
    margin-bottom: 5px;
}
.wsge-form-field input, .wsge-form-field select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.wsge-form-field button {
    padding: 8px 16px;
    background: #2c7fb8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.wsge-suggestions {
    background: white;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    margin-top: 5px;
    position: relative;
    z-index: 1001;
}
.wsge-suggestions div {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}
.wsge-suggestions div:hover {
    background: #f0f0f0;
}


.wsge-search-btn {
    background: #fff;
    color: #222;
}
.wsge-search-btn:hover {
}


.wsge-form-message {
    margin-top: 10px;
}
@media (max-width: 768px) {
    .wsge-form-grid {
        grid-template-columns: 1fr;
    }
    .wsge-form-field.wsge-full-width {
        grid-column: span 1;
    }
}
