/* File: assets/css/popup.css */
.user-geo-popup-body {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.user-geo-column {
    flex: 1;
    min-width: 200px;
}

.user-geo-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 14px;
}

.user-geo-select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.user-geo-list {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #eee;
    padding: 10px;
    display: none; /* Can be shown for alternative list view */
}

.user-geo-current-display {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.user-geo-current-display p {
    margin: 5px 0;
}

.user-geo-confirm-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.user-geo-confirm-btn:hover:not(:disabled) {
    background: #005a87;
}

.user-geo-detect-btn {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    margin-top: 8px;
    cursor: pointer;
}

.user-geo-detect-btn:hover {
    background: #e0e0e0;
}

.user-geo-help-text {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}