.moveoz-top-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto;
}
.moveoz-top-form select, .moveoz-top-form button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}
.moveoz-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.moveoz-popup-content {
    background: white;
    padding: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
}
.moveoz-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}