/* Feature Checkbox Fix - Removes checkmarks while keeping styling */

/* Override the checkmark that appears after checkbox is checked */
.form-step[data-step="2"] .feature-checkbox input[type="checkbox"]:checked + label::after {
  content: none !important; /* Remove the checkmark */
}

/* Keep the background color change to indicate selection */
.form-step[data-step="2"] .feature-checkbox input[type="checkbox"]:checked + label {
  background: rgba(0, 40, 70, 0.8);
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

/* Enhance the background of the checkbox area to make selection more visible without checkmark */
.form-step[data-step="2"] .feature-checkbox input[type="checkbox"]:checked + label::before {
  background: linear-gradient(135deg, #ff00ff, #00ffff);
  border-color: transparent;
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}
