/* Hide radio input and pseudo-elements */
.fancy-radio-toggle input[type="radio"] {
  display: none;
}
.fancy-radio-toggle label::before,
.fancy-radio-toggle label::after {
  display: none !important;
}

/* Full-width block-style buttons */
.fancy-radio-toggle label {
  display: block;
  width: 100%;
  margin: 0 0 10px 0 !important;
  padding: 12px 18px;
  text-align: center;
  border: 2px solid #0074d9;
  background-color: #fff;
  color: #0074d9;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

/* Active/selected button */
.fancy-radio-toggle input[type="radio"]:checked + label {
  background-color: #0074d9;
  color: #fff;
}