/* app.css or a <style> block in your HTML */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  #app {
    width: 100%;
    height: 100%;
  }
  
  /* Ensure that the container you created fills the screen */
  .full-screen {
    width: 100vw;
    height: 100vh;
  }
  
  /* Override the embed element styles */
  retool-embed {
    display: block;      /* Ensure it behaves like a block element */
    width: 100%;
    height: 100%;
  }
  
  /* Also ensure that the iframe inside fills the embed element */
  retool-embed iframe {
    width: 100%;
    height: 100%;
    border: none;        /* Remove any default borders */
  }
  