/*
 * SCHIET's minimal PDF.js viewer.
 * Keep this file separate from the upstream PDF.js distribution so upgrades
 * and rollback remain straightforward.
 */

:root {
  color-scheme: light;
  --toolbar-height: 0px;
  --body-bg-color: #eef2f5;
}

#toolbarContainer,
#sidebarContainer {
  display: none !important;
}

#mainContainer {
  min-width: 0;
}

#viewerContainer {
  inset: 0 !important;
}

.pdfViewer {
  padding-block: 12px;
}

@media (max-width: 600px) {
  .pdfViewer {
    padding-block: 6px;
  }
}
