/**
 * GEEKS toolbar override — keep ONLY the Print button in the PDF.js toolbar.
 * Linked from viewer.html (re-add that line when upgrading PDF.js).
 */

/* Hide the left (sidebar/find/paging) and middle (zoom) toolbar groups. */
#toolbarViewerLeft,
#toolbarViewerMiddle,
/* Right group: hide everything except the print group. */
#editorModeButtons,
#editorModeSeparator,
#downloadButton,
#secondaryToolbarToggle,
#toolbarViewerRight > .verticalToolbarSeparator {
	display: none !important;
}

/* The print group is hidden on medium/small screens by default — keep it. */
#toolbarViewerRight > .toolbarHorizontalGroup.hiddenMediumView {
	display: flex !important;
}
