input[type="radio"] {
  position: relative;
  appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid #B6722F;
  margin-right: 4px;
}

input[type="radio"]:checked:after {
  content: '';
  position: absolute;
  inset: 0;
  background: #B6722F;
  border-radius: 50%;
  margin: 2px;
}

input[type="radio"]:not(:checked):hover {
  cursor: pointer;
}

input[type=checkbox] {
  width: 13px;
  height: 13px;
  accent-color: #B6722F;
  cursor: pointer;
  border-radius: 2px;
  margin-right: 4px;
}

input[type=checkbox]:not(:checked) {
  appearance: none;
  border: 1px solid #B6722F;
}
