/* ツールバー全体を非表示 */
#toolbarContainer,
#toolbarViewer,
#toolbarSidebar,
.toolbar {
  display: none !important;
}

/* サイドバーを非表示 */
#sidebarContainer,
#sidebarContent {
  display: none !important;
}

/* メインコンテナを全幅に */
#mainContainer {
  margin-left: 0 !important;
}

/* ビューアコンテナを上に詰める */
#viewerContainer {
  top: 0 !important;
  position: absolute;
  inset: 0 !important;
}

/* ダイアログを非表示（検索、設定など） */
#findbar,
#secondaryToolbar,
#editorModeButtons {
  display: none !important;
}

/* 右クリック無効化・テキスト選択禁止 */
#viewerContainer {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* 印刷・ダウンロード・保存ボタンを念のため非表示 */
#printButton,
#downloadButton,
#secondaryPrint,
#secondaryDownload,
#openFile,
#secondaryOpenFile {
  display: none !important;
}
