/* Country Modal Styles */
#country-modal {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10000 !important;
}

#country-modal-overlay {
    z-index: 9999 !important;
}

.country-item {
    cursor: pointer;
    padding: 10px;
    transition: background-color 0.2s;
}

.country-item:hover {
    background-color: #f5f5f5;
}

._73580470 {
    max-height: 300px;
    overflow-y: auto;
}

/* Spinner Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

