/*
 * Beyond Beauty Chatbot — Base CSS
 * Core positioning/styles are injected by chatbot.js using dynamic colors from settings.
 * This file only provides supplemental overrides and the pointer-events fix for the root wrapper.
 */

#bbc-root {
  position: fixed !important;
  z-index: 2147483647 !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: visible !important;
  pointer-events: none !important;
}

/* Re-enable pointer events on actual interactive elements */
#bbc-launcher,
#bbc-win,
#bbc-pill {
  pointer-events: auto !important;
}
