.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;

  input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    cursor: pointer;
    width: 0;
    height: 0;

    &:checked ~ .box {
      border-color: #2196f3;
      background-color: #2196f3;
    }
  }

  .box {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    border: 2px solid #ccc;
    border-radius: 4px;
    background: white;
    width: 20px;
    height: 20px;
  }

  .label {
    transition: color 0.2s ease;
    color: #666;
    font-size: 14px;
  }
}

.checked {
  &.box {
    border-radius: 50%;
    background-color: #387c44;
  }
}
