/* Remove the top margin for #quarto-document-content */
#quarto-document-content {
    margin-top: 0 !important; /* Ensures no space at the top */
  }
  
  /* Ensure the entire page is used */
  #full-page-app {
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important; /* Full viewport height */
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2d2d2d; /* Optional: Set background color */
  }
  
  /* Hide other Quarto elements like headers, footers, and sidebars */
  #full-page-app ~ * {
    display: none !important;
  }
  
  /* Ensure iframe spans the full container */
  #full-page-app iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
  }
  
  /* Hide the sidebar */
  #quarto-sidebar {
    display: none !important; /* Hides the sidebar for this page */
  }