.custom-radio-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--clrbrd);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.custom-radio-button.selected {
  border-color: #008aff;
}

.custom-radio-inner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.2s ease;
}

.custom-radio-button.selected .custom-radio-inner {
  background-color: #008aff;
}

.custom-radio-button:not(.selected) .custom-radio-inner {
  background-color: transparent;
}