/* Hide editor tools everywhere */
button[id^="editor"],
button[id*="editor"],
#editorModeButtons,
#editorModeSeparator,
#editorModeToggle,
#editorModeToolbar,
#editorMode {
  display: none !important;
}

/* Hide common tool buttons (print/download/open/etc.) */
#openFile, #print, #download, #presentationMode,
#secondaryOpenFile, #secondaryPrint, #secondaryDownload, #secondaryPresentationMode {
  display: none !important;
}

/* Hide the ">>" overflow button */
#secondaryToolbarToggle {
  display: none !important;
}

/* Hide the secondary toolbar panel if it opens */
#secondaryToolbar {
  display: none !important;
}

/* ✅ MOBILE: hide the whole right toolbar section (this removes icons on mobile layouts) */
@media (max-width: 768px) {
  #toolbarViewerRight {
    display: none !important;
  }

  /* Make sure middle area uses full width */
  #toolbarViewerMiddle {
    margin-right: 0 !important;
  }
}