/*
 * Chatbase's actual chat content (text, message bubbles, input box) lives
 * inside a cross-origin iframe, so its font-size can't be changed directly
 * from our CSS. Instead, this scales the whole widget window down as a
 * unit with a CSS transform — that shrinks literally everything it
 * renders, including the iframe's text, proportionally together.
 *
 * transform-origin is set to the bottom-left corner (where the widget is
 * anchored via `bottom`/`left`), so it shrinks toward that corner rather
 * than toward the center.
 */
#chatbase-bubble-window {
  transform: scale(0.8);
  transform-origin: bottom left;
}
