/* 
Currently I can't at the same time enable breadcrumbs, etc. 
and disable the actual sidebar... 
So I have to go to ./styles/sidebar.css and manually make a display: none query. 
*/

div[class="sidebar-menu-container"] {
    display: none !important;
}

/* ... which resulted in disappearing collapsing sidebars. I just make the collapsing button disappear. */

button[aria-label="Toggle sidebar navigation"], a[aria-label="Toggle sidebar navigation"] {
    display: none !important;
}

/* Also changing the bg color of secondary navbar (at least that's what they call it in html) */

nav[class="quarto-secondary-nav"] {
    background-color: #D1E1DF !important;
}
