/* The provider host spans the viewport. Keep the transparent host click-through;
     its launcher/window explicitly opt back in inside the shadow-root theme. */
  #widg-app-root {
    pointer-events: none !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
  }
  #widg-app-root.nex-ai-chat-ready {
    opacity: 1;
    visibility: visible;
  }
  @media (prefers-reduced-motion: reduce) {
    #widg-app-root { transition-duration: .01ms !important; }
  }
  @media print {
    #widg-app-root,
    [data-nex-ai-chat-host],
    .widg-container,
    .widg-window,
    .widg-launcher-stack,
    #widgLauncherStack,
    #widgBtn,
    #widgLauncherTooltip,
    .nex-rmp-chat-dock-trigger,
    .nex-rmp-chat-dock-close {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }
  }
