/* Template grounding — AI generation grounding, share-as-template, and the
   "Suggest a stop" helper (issue #135, see js/features/template-grounding/).
   No hidden-by-default class here — unlike css/features/itinerary-agent.css's
   .feature-itinerary-agent convention, every element this feature touches is
   rebuilt fresh on each render and gates on window.__FEATURES__?.templateGrounding
   inline at that point (same reasoning as css/features/idea-pool.css). The
   suggestion cards themselves reuse idea-pool.css's .idea-suggestion-* classes
   directly rather than duplicating them — this file is just the category picker. */

.suggest-stop-categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding: var(--space-lg) 0 var(--space-xs);
}

.suggest-stop-categories .btn-small {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}
