/* components/atoms/empty-state.css — átomo EmptyState (A14). */

.cmp-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 16px;
  color: var(--text-muted, #9ca3af);
  background: transparent;
}

.cmp-empty-state--compact {
  padding: 12px 8px;
}

.cmp-empty-state__icon {
  margin-bottom: 8px;
  opacity: 0.6;
}
.cmp-empty-state--compact .cmp-empty-state__icon {
  margin-bottom: 4px;
}

.cmp-empty-state__message {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted, #6b7280);
  line-height: 1.4;
}

.cmp-empty-state__sub {
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-muted, #9ca3af);
  line-height: 1.4;
}
