/*
 * WebAI Widget — Minimal host-page CSS.
 * All widget styles live inside Shadow DOM (see widget.js).
 * This file only styles the Shadow host container.
 */
#webai-host {
  position: fixed;
  z-index: 2147483647;
  pointer-events: none;
}

/* Inline chat panel (shortcode) */
#webai-inline-chat.webai-inline {
  width: 100%;
  max-width: 480px;
  height: 500px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  flex-direction: column;
}
