/* Overlay */
#wc-lead-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9998;
  display: none;
}

/* Modal */
#wc-lead-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  max-width: calc(100% - 32px);
  background: #ffffff;
  border-radius: 5px;
  padding: 28px;
  border:2px solid #0b2c78;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  z-index: 9999;
  display: none;
}

/* Close Button (Top Right – Perfect Alignment) */
#wc-lead-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #0b2c78;
  border: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#wc-lead-close:hover {
  background: #215387;
}

/* Text */
.wc-lead-text {
  margin-bottom: 18px;
  font-size: 15px;
  text-align: center;
}

/* Form */
#wc-lead-form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
}

#wc-lead-form button {
  width: 100%;
  padding: 12px;
  background: #0b2c78;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

#wc-lead-form button:hover {
  background: #215387;
}

/* Success Message */
#wc-lead-success {
  display: none;
  text-align: center;
  font-weight: 600;
  color: #16a34a;
}
