/* style.css */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

/* Chat fly-out panels, now bigger */
#chatFlyoutA,
#chatFlyoutB {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 500px;   /* was 350px */
  height: 600px;  /* was 500px */
  background: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
  z-index: 9999;
}

#chatFlyoutA.open,
#chatFlyoutB.open {
  transform: translateX(0);
}

#chatFlyoutA iframe,
#chatFlyoutB iframe {
  width: 100%;
  height: 100%;
  border: none;
}