/* BeSSiL – Radiobutton-Kontrast-Fix */

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  width: 17px;
  height: 17px;
  border: 2px solid #9ca3af;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  margin: 0;
  vertical-align: middle;
  flex-shrink: 0;
  box-sizing: border-box;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

input[type="radio"]:checked {
  border-color: #3b82f6;
  background: #3b82f6;
  box-shadow: inset 0 0 0 3px #ffffff;
}

input[type="radio"]:hover:not(:checked) {
  border-color: #6b7280;
}
