/* Popup de geolocalización */
.geo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.geo-popup {
    background: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

.geo-popup h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}

.geo-info-display {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.geo-flag {
    font-size: 48px;
    margin-bottom: 15px;
}

.close-geo-popup {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.close-geo-popup:hover {
    background: #005a87;
}

.geo-popup-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dont-show-again {
    background: #ccc;
    color: #333;
}
