/* 复选框包装器 */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

/* 自定义复选框 */
.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #d9d9d9;
  border-radius: var(--radius-sm);
  margin-right: 8px;
  position: relative;
  transition: all var(--transition-base);
  background: white;
}

.checkbox-custom.checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.checkbox-custom.checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-wrapper input {
  display: none;
}
