/**
 * GeoIP Popup Styles
 * McDowells GeoIP Module
 */

.geoip-redirect-modal-custom {
    max-width: 650px !important;
    width: 90% !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    background: #fff !important;
}

.geoip-header {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: none;
}

.geoip-title {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.geoip-content {
    text-align: center;
    padding: 10px 0 30px 0;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

.geoip-text {
    display: inline-block;
    text-align: center;
    white-space: normal;
    font-size: 18px;
}

.geoip-footer {
    border-top: none;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.geoip-btn-accept {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    font-weight: 600;
    padding: 12px 35px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.geoip-btn-accept:hover {
    background-color: #333;
    border-color: #333;
}

.geoip-btn-decline {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
    font-weight: 600;
    padding: 12px 35px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.geoip-btn-decline:hover {
    background-color: #000;
    color: #fff;
}
