/* DS §05.10 — Empty state component (web) · token-only */

.ds-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-12) var(--sp-8);
  gap: var(--sp-4);
  font-family: var(--font-sans);
}

.ds-empty-compact {
  padding: var(--sp-8) var(--sp-6);
  gap: var(--sp-3);
}

.ds-empty-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--rad-lg);
  background: var(--bg2);
  color: var(--fg3);
  flex-shrink: 0;
}

.ds-empty-illustration {
  width: 80px;
  height: 80px;
  opacity: 0.6;
}

.ds-empty-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--fg1);
  margin: 0;
}

.ds-empty-desc {
  font-size: var(--text-sm);
  color: var(--fg3);
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

.ds-empty-action {
  margin-top: var(--sp-2);
}

/* Inline empty (inside a table / list) */
.ds-empty-inline {
  padding: var(--sp-8) var(--sp-6);
  border: 1px dashed var(--border);
  border-radius: var(--rad-md);
  background: var(--bg2);
}
