.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--app-spacing-md);
  padding: var(--app-spacing-md);
  background: var(--app-color-surface);
  border: 1px solid var(--app-color-border);
  border-radius: var(--app-radius-md);
  transition: border-color var(--app-transition-fast);
}

.checklist-item--ok { border-color: var(--app-color-success); }
.checklist-item--warning { border-color: var(--app-color-warning); }
.checklist-item--error { border-color: var(--app-color-error); }

.checklist-item__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checklist-item--ok .checklist-item__icon { color: var(--app-color-success); }
.checklist-item--warning .checklist-item__icon { color: var(--app-color-warning); }
.checklist-item--error .checklist-item__icon { color: var(--app-color-error); }
.checklist-item--pending .checklist-item__icon { color: var(--app-color-text-muted); }

.checklist-item__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: var(--app-spacing-xs);
  min-width: 0;
}

.checklist-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--app-spacing-md);
}

.checklist-item__label {
  font-size: var(--app-font-size-base);
  font-weight: 600;
  color: var(--app-color-text);
}

.checklist-item__value {
  font-size: var(--app-font-size-sm);
  color: var(--app-color-text-muted);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.checklist-item--ok .checklist-item__value { color: var(--app-color-success); font-weight: 700; }
.checklist-item--warning .checklist-item__value { color: var(--app-color-warning); font-weight: 700; }
.checklist-item--error .checklist-item__value { color: var(--app-color-error); font-weight: 700; }

.checklist-item__hint {
  margin: 0;
  font-size: var(--app-font-size-sm);
  color: var(--app-color-text-muted);
  line-height: var(--app-line-height-base);
}
