/* Hide the left nav scrollbar when it isn't needed (Sphinx book theme). */
.bd-sidebar,
.bd-sidebar .sidebar-content {
  scrollbar-width: none;
}

.bd-sidebar::-webkit-scrollbar,
.bd-sidebar .sidebar-content::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Swap logo based on light/dark theme. */
html[data-theme="dark"] .logo__image {
  content: url("../images/logo-dark.png");
}

html[data-theme="light"] .logo__image {
  content: url("../images/logo-light.png");
}
