/* ================================
   RewardsPlus Survey – Full CSS
   Elementor Safe / Text Visible
   ================================ */

/* Modal container */
.rps-modal {
  background: #0b1320;
  border-radius: 18px;
  border: 1px solid rgba(218,183,105,0.35);
  color: #ffffff;
}

/* INPUT FIELDS */
.rps-modal input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  background-color: #ffffff !important;

  /* TEXT FIX */
  color: #000000 !important;
  caret-color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;

  outline: none;
  box-shadow: none;
  font-size: 16px;
}

/* Input focus */
.rps-modal input:focus {
  border-color: #D9B669;
  box-shadow: 0 0 0 2px rgba(217,182,105,0.25);
}

/* Placeholder text */
.rps-modal input::placeholder {
  color: rgba(0,0,0,0.5) !important;
}

/* YES / NO BUTTONS */
.rps-yesno button {
  flex: 1;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Selected Yes/No */
.rps-yesno button.is-selected {
  background: rgba(217,182,105,0.25);
  border-color: #D9B669;
  color: #FCF282;
}

/* PRIMARY BUTTON (Next / Submit) */
.rps-primary {
  background: linear-gradient(180deg, #FCF282, #D9B669);
  color: #111111;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
}

/* Disabled state */
.rps-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Progress bar */
.rps-progress-bar {
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  overflow: hidden;
}

.rps-progress-bar span {
  background: linear-gradient(90deg, #D9B669, #FCF282);
}

/* Close button */
.rps-close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
}

/* Overlay */
.rps-overlay {
  background: rgba(0,0,0,0.65);
}
