/* Floating chat: only the bottom-right region accepts pointer events (rest of page stays usable) */
#dovercourt-chat-container {
  position: fixed;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  height: min(100dvh, 100vh);
  max-height: 720px;
  pointer-events: none;
  z-index: 999999;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#dovercourt-chat-iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: auto;
  background: transparent;
  display: block;
}

@media (max-width: 480px) {
  #dovercourt-chat-container {
    width: 100%;
    max-height: min(85dvh, 85vh);
  }
}

@media print {
  #dovercourt-chat-container {
    display: none !important;
  }
}
