/* AI Model panel — staff/admin-only per-account Voice/Scanning/Custom Games
   model switcher. Lives INSIDE the hamburger menu as a nested toggle +
   inline .game-options-panel (same pattern as the Cloud Snapshots panel
   nested inside Cloud Options) rather than a separate overlay modal — the
   shell (padding/border/blur/background) comes free from .game-options-panel
   in game-options-ui.css; only the inner row/select/status styles below are
   specific to this panel's content. */

.ai-model-panel-intro {
  margin: 0 0 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.ai-model-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.ai-model-row:last-of-type {
  margin-bottom: 0;
}

.ai-model-row-label {
  font-size: 0.92rem;
  color: var(--ink);
  flex: 1 1 auto;
}

.ai-model-select {
  flex: 0 0 auto;
  min-width: 160px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm, 6px);
  background: var(--panel-alt, var(--panel));
  color: var(--ink);
  font-size: 0.9rem;
  box-sizing: border-box;
}

.ai-model-status {
  margin: 8px 0 0;
  min-height: 1.2em;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 420px) {
  .ai-model-row {
    flex-wrap: wrap;
  }

  .ai-model-select {
    flex: 1 1 100%;
  }
}
