/* Complete reset - pure white page with centered text */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hide all Quarto-generated elements */
header,
nav,
.sidebar,
.navbar,
.page-footer,
#quarto-header,
#quarto-sidebar,
#quarto-search,
#quarto-search-results,
.quarto-title-block,
.breadcrumb,
.quarto-secondary-nav,
.headroom {
  display: none !important;
}

/* Make content container full screen and centered */
#quarto-content,
main,
.page-columns {
  width: 100vw !important;
  height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
