.green-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 2px solid #22c55e;
    background: #22c55e;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.2s;
    vertical-align: middle;
  }

  .green-checkbox:checked {
    background: #22c55e;
    border-color: #22c55e;
  }

  .green-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.35rem;
    height: 0.7rem;
    border: solid #fff;
    border-width: 0 0.18rem 0.18rem 0;
    transform: translate(-50%, -60%) rotate(45deg);
    pointer-events: none;
    display: block;
  }

  .green-checkbox:not(:checked) {
    background: #fff;
  }

  .green-checkbox:focus {
    outline: 2px solid #22c55e;
    outline-offset: 1px;
  }

.rating-radio {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #D1D5DB;
  border-radius: 50%;
  background: #fff;
  outline: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  flex-shrink: 0;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.rating-radio:checked {
  border-color: #22c55e;
}

.rating-radio:checked::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
}

.rating-radio:focus {
  outline: 2px solid #22c55e;
  outline-offset: 1px;
}