/* Engagement SDK base styles — chat widget and consent banner positioning */

/* Zero-size anchor only. The chat widget lives in a shadow root under here and
   positions itself (position:fixed, tracking the visual viewport on touch — see
   buildChatStyles in engagement.js), so this element's own box never sizes it. */
#cw-chat-root {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
}

#cw-consent-root {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}
