/*
 * Empty state — shown when a page has no data yet (no agents, no
 * journal entries, etc.) or when a surface is a stub waiting for a
 * future phase. Icon + title + explanation, centered in a card.
 */

@layer components {
  .empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 3rem 2rem;
    background: var(--color-white);
    border: 1px dashed var(--color-border);
    border-radius: 0.75rem;
  }

  .empty-state__icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--sidebar-icon);
    margin-bottom: 0.25rem;
  }

  .empty-state__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-heading);
  }

  .empty-state__body {
    margin: 0;
    max-width: 48ch;
    font-size: 0.875rem;
  }
}
