.custom-radio{
  padding-bottom: 10px;
}
/* Style the container for the custom radio button */
.custom-radio label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px; /* Space for the custom radio button */
  margin-right: 15px;
  font-size: 16px;
  line-height: 20px;
}

/* Create the outer circle for the radio button */
.custom-radio label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* Create the inner dot for the checked state */
.custom-radio label::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #007bff;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Style for the checked state */
.custom-radio input[type="radio"]:checked + label::before {
  border-color: #007bff;
}

.custom-radio input[type="radio"]:checked + label::after {
  opacity: 1;
}

/* Hover effect */
.custom-radio label:hover::before {
  border-color: #007bff;
}