/* Layout styling for your target divs */
.pdf-container-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
}

.document-box {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  background: #f9f9f9;
}
/* Make the iframes completely fill their target container divs */
.pdf-viewer-frame {
  width: 100%;
  height: 40vh;
  border: none;
}
.pdf-viewer-frame-portrait {
  width: 100%;
  height: 80vh;
  border: none;
}

