/* Trims the toolbar down to what makes sense for a single, read-only
   portfolio document: sidebar toggle, find, page nav, and zoom.
   Hidden via CSS rather than removed from the HTML, so PDF.js's own JS
   (which looks these elements up by id during init) never hits a null
   reference — they just take no space and can't be interacted with. */
#editorModeButtons,   /* Highlight / Text / Draw / Add image / signature annotation tools */
#printButton,
#downloadButton,      /* Save/Download — removed for a cleaner, single-purpose
                          toolbar. Note: this is cosmetic, not real protection —
                          the PDF is still a plain public file at a known URL. */
#secondaryToolbarToggle, /* the "Tools" (...) button */
#secondaryToolbar {      /* its dropdown menu */
  display: none !important;
}
