
/* embed_fix.css - forces the TABLE (canvas) to 2:1 without forcing the iframe */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  overflow: hidden; /* prevent scrollbars inside the iframe */
}

/* If there is a canvas, make it behave like a 2:1 table */
canvas {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 2 / 1 !important;  /* TABLE is 2:1 */
  max-width: 100% !important;
}
