/* Elementor Verify Popup - Styles */
#evp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  backdrop-filter: blur(2px);
}
.evp-modal {
  width: min(92vw, 420px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  padding: 28px 24px 24px;
  text-align: center;
  position: relative;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
.evp-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #6b7280;
}
.evp-close:hover { color: #111827; }
.evp-icon {
  width: 60px;
  height: 60px;
  margin: 4px auto 16px;
  display: grid;
  place-items: center;
  border-radius: 999px;
}
.evp-spinner {
  border: 4px solid #e5e7eb;
  border-top-color: #2563eb;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  animation: evp-spin 1s linear infinite;
}
@keyframes evp-spin { to { transform: rotate(360deg); } }
.evp-check {
  background: #ecfdf5;
  color: #10b981;
  font-size: 36px;
}
#evp-title { margin: 0 0 6px; font-size: 20px; color: #111827; }
p { margin: 0; color: #6b7280; }
