/* Botón flotante */
#aichatBtn{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 2147483647;
  background: #0d6efd;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 8px 18px rgba(13,110,253,.25);
  font: 600 14px/1.1 system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  cursor: pointer;
}
#aichatBtn:hover{ background:#0a58ca; }

/* Panel */
#aichatPanel{
  position: fixed;
  right: 16px;
  bottom: 72px; /* deja espacio para el botón */
  width: 340px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 24px 48px rgba(0,0,0,.15);
  overflow: hidden;
  display: none; /* inicia oculto */
  z-index: 2147483647;
}

/* Encabezado del panel */
#aichatHeader{
  padding: 10px 12px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  font: 600 14px/1.2 system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

/* Contenido (iframe ocupa todo) */
#aichatFrame{
  width: 100%;
  height: calc(100% - 42px);
  border: 0;
}
