.cf7-geoip-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cf7-geoip-modal {
  background: #fff;
  border-radius: 6px;
  max-width: 520px;
  width: 90%;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
}
.cf7-geoip-modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.cf7-geoip-modal-content p {
  margin: 0 0 8px 0;
}
.cf7-geoip-modal-content .cf7-geoip-secondary {
  color: #56616b;
  font-size: 13px;
}
#cf7-geoip-captcha-slot {
  margin-top: 12px;
}

/* Mobile Fix: Ensure captcha is above the button and visible */
.cf7-geoip-inline-slot {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    clear: both;
}

@media (max-width: 768px) {
    .cf7-geoip-inline-slot {
        margin-bottom: 15px;
        width: 100%;
        min-width: 100%;
        flex-basis: 100%;
    }
    
    /* Ensure iframe doesn't overflow */
    .cf7-geoip-inline-slot > div, 
    .cf7-geoip-inline-slot iframe {
        max-width: 100% !important;
        transform-origin: 0 0;
    }
}

@media (max-width: 360px) {
    .cf7-geoip-inline-slot iframe {
        transform: scale(0.92);
        transform-origin: 0 0;
    }
}
