/* ═══ Selection Ask toolbar (Phase 3) ═══ */
#aioAiSelectionAsk {
  position: fixed;
  z-index: 100050;
  display: none;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 10px;
  background: var(--surface-panel-modal, #0d0d1e);
  border: 1px solid var(--border-glow, rgba(124, 58, 237, .35));
  box-shadow: 0 8px 28px rgba(0, 0, 0, .35), 0 0 0 1px rgba(124, 58, 237, .12);
  pointer-events: auto;
  animation: aioSelAskIn .16s cubic-bezier(.34, 1.56, .64, 1);
}

#aioAiSelectionAsk.is-visible {
  display: inline-flex;
}

@keyframes aioSelAskIn {
  from {
    opacity: 0;
    transform: translateY(6px) scale(.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#aioAiSelectionAsk .aio-sel-ask-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s, opacity .15s;
}

#aioAiSelectionAsk .aio-sel-ask-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(124, 58, 237, .35);
}

#aioAiSelectionAsk .aio-sel-ask-btn i {
  font-size: 0.78rem;
}

:root[data-mockup-theme-resolved="light"] #aioAiSelectionAsk {
  box-shadow: 0 10px 28px rgba(15, 23, 42, .12), 0 0 0 1px var(--border);
}