#orn-city-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

#orn-city-modal {
    background: #ffffff;
    max-width: 450px;
    width: 100%;
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

#orn-city-modal h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

#orn-city-modal p {
    margin-top: 0;
    margin-bottom: 1rem;
}

#orn-city-modal select {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 1rem;
}

#orn-city-modal .orn-modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

@media (max-width: 480px) {
    #orn-city-modal {
        max-width: 100%;
        padding: 16px;
        border-radius: 6px;
    }
}
