/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    cursor: url('/geo_targeting.png'), pointer;
}

/* Popup Content */
.popup-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    background: white;
    width: 600px;
    height: 450px;
    border-radius: 10px;
    cursor: url('/geo_targeting.png'), pointer;
}

    /* Close Button */
    .popup-content button {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: url('/geo_targeting.png'), pointer;
    }

/* Prevent click propagation */
.popup-content {
    cursor: default;
}
