/*
  Minimal override to remove unwanted hover highlight from SurveyJS radio and checkbox (modern theme)
  This disables the pre-selection highlight effect before user interaction.
*/
.sv-radio--allowhover:hover .sv-radio__svg {
  /* Remove fill and border highlight on hover */
  fill: transparent !important;
  background: unset !important;
  border: 3px solid var(--border-color, rgba(64, 64, 64, 0.5)) !important;
}

.sv-checkbox--allowhover:hover .sv-checkbox__svg {
  /* Remove fill and border highlight on hover */
  fill: transparent !important;
  background: unset !important;
  border: 3px solid var(--border-color, rgba(64, 64, 64, 0.5)) !important;
}
