/* Site should remain as usable as possible with JS disabled */


/* Article sidebar */
#autotoc-container:before {
  content: 'Page table of contents requires JavaScript.';
  font-weight: bold;
  color: var(--k_red);
  display: block;
}
#section-articles-container .collapsible-sidebar-toggle {
  display: none !important;
}
.collapsible-sidebar #articles-in-this-section {
  display: block !important;
}


/* Auto-expand collapsible sections */
.collapsible-heading:before {
  content: '';
}
.collapsible-heading:hover {
  background-color: initial;
}
.collapsible-heading {
  cursor: unset;
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}
.collapsible-content {
  display: block !important;
}

/* ERDs and diagrams */

.mxgraph:before {
  content: 'Please enable JavaScript to view embedded diagrams.';
  font-weight: bold;
  color: var(--k_red);
}
