/* Night 3 bridge for the server-backed non-home templates in app.js. */
.cue {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cue-select {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: 0;
  text-align: start;
}

.cue-speak {
  display: grid;
  place-items: center;
  flex: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card);
  color: var(--primary);
}

.cue-speak .icon { width: 16px; height: 16px; }
.context-card h2 { margin-block: 10px; }
.context-card > p { margin-block-end: 18px; color: var(--muted); }
.saved-terms { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-block-start: 18px; }
.library-categories .category-tile:disabled { opacity: 1; cursor: not-allowed; }
.category-tile span { display: flex; align-items: center; gap: 7px; padding: 10px; }
.category-tile span small { margin-inline-start: auto; color: var(--muted); font-size: 10px; }
.evidence-item:where(button) { width: 100%; text-align: start; }
.pp-route-mobile { display: none; }

@media (max-width: 600px) {
  .cue-select { grid-template-columns: 48px minmax(0, 1fr); }
  .pp-route-desktop { display: none; }
  .pp-route-mobile { display: block; }
}
