input[type="checkbox"]:has(+ .custom-checkbox) {
  display: none !important;
}

input[type="checkbox"]:not(:checked) + .custom-checkbox svg {
  display: none;
}

.custom-checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  min-width: 16px;
  height: 16px;
  padding: 0;
  margin: 0;
  background-color: var(--white);
  border-radius: 2px;
  cursor: pointer;
}

.custom-checkbox svg {
  width: 12px;
  height: 10px;
  border: 0;
  color: var(--red);
}

.custom-checkbox svg path {
  display: none;
}
