input[type="radio"]:hover {
  outline: 2px solid #25c09e; /* Green outline */
  cursor: pointer;
    
}

/* Optional: Style the label when radio is hovered */
input[type="radio"]:hover + label {
  color: #25c09e; /* Green text */
  font-weight: bold;
  font-size: 16px;
}