/* MONAS reading plane: hide Logseq product navigation and non-reading chrome.
   Shared across every MONAS site via nginx sub_filter (see the "Site: <n>"
   blocks in default.conf) -- edit only this one file, never a per-site copy.
   Pairs with debrand.js (Flashcards has no href, so it is hidden there by
   text match instead of by selector). */

/* Left sidebar: keep the sidebar itself (page tree, favorites, journal nav);
   remove only the Logseq product-navigation links that don't belong on the
   reading plane. */
#left-sidebar a[href="#/whiteboards"],
#left-sidebar a[href="#/graph"],
#left-sidebar a[href="#/all-pages"] {
  display: none !important;
}

/* Right sidebar (Contents / Page graph / Help, including Logseq docs,
   community, about, terms) has no reading-plane purpose. Commentary uses
   its own composer UI, not this panel. */
.toggle-right-sidebar,
#right-sidebar {
  display: none !important;
}
