/* Custom radio and checkbox styling */
input[type="radio"],
input[type="checkbox"] {
  position: relative;
  cursor: pointer;
}

/* Checked state for radio */
input[type="radio"]:checked {
  background: radial-gradient(circle, #529599 30%, white 30%);
  border-color: #529599;
}

/* Checked state for checkbox */
input[type="checkbox"]:checked {
  background-color: white;
  border-color: #529599;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='%23529599' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 11-1.06-1.06l7.25-7.25a.75.75 0 011.06 0Z'/%3E%3Cpath d='M2.22 9.22a.75.75 0 001.06 1.06L6.5 6.56l1.06 1.06a.75.75 0 101.06-1.06L7.56 5.5a.75.75 0 00-1.06 0L2.22 9.22Z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
