@layer components {
  .empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    gap: 0.75rem;
  }

  .empty-state-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: var(--muted);
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;

    & svg {
      width: 1.5rem;
      height: 1.5rem;
    }
  }

  .empty-state-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    letter-spacing: -0.01em;
  }

  .empty-state-description {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    max-width: 24rem;
    line-height: 1.5;
  }

  .empty-state-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
}
