/* Radio-style appearance for extra service checkboxes */
input.cs-form-label-checkbox[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #bfa77a;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: relative;
  outline: none;
  cursor: pointer !important;
  margin-right: 8px;
  vertical-align: middle;
  transition: border-color 0.2s;
}

/* Ensure pointer cursor on hover for all checkboxes */
input.cs-form-label-checkbox[type="checkbox"]:hover,
.label-checkbox input[type="checkbox"]:hover,
.label-checkbox.obligatory input[type="checkbox"]:hover {
  cursor: pointer !important;
}

/* Ensure the label is also clickable */
.label-checkbox,
.label-checkbox.obligatory {
  cursor: pointer !important;
}

input.cs-form-label-checkbox[type="checkbox"]:checked {
  border-color: #bfa77a;
  background-color: #fff;
}

input.cs-form-label-checkbox[type="checkbox"]:checked::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: #bfa77a;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
}
