@media print {
  html,
  body {
    height: auto !important;
  }
  [data-guide-cursor] {
    background: none !important;
  }
  [data-guide-cursor-line] {
    display: none !important;
  }
}

.ai-guide-sent-message mjx-container.MathJax {
    /* Brighten the colors rendered by MathJax for macros like `\red`,
     * `\purple`, etc. so they have accessible contrast with dark backgrounds.
     * `hue-rotate(180deg) invert(1)` inverts the lightness of the color (so
     * dark colors become light and light colors dark) without affecting hue.
     * brightness(1.1) gives the color an extra contrast boost.
     */
    filter: hue-rotate(180deg) invert(1) brightness(1.1);
    /* Since the line above inverts the color for the entire math element, we
     * also have to force MathJax's default color to be black (so it will be
     * white when inverted).
     */
    color: black;
}

