/* Add logo above the sidebar contents */
#sidebar::before {
  content: '';
  display: block;
  width: 140px;
  height: 60px;
  margin: 1rem 0 0.5rem 1rem;
  background-image: url('assets/specforge_bb.svg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  opacity: 0.95;
  flex-shrink: 0;
}

/* Use black & white logo for dark themes */
.rust #sidebar::before,
.coal #sidebar::before,
.navy #sidebar::before,
.ayu #sidebar::before {
  background-image: url('assets/specforge_bw.svg');
}

#sidebar {
  display: flex;
  flex-direction: column;
}

#sidebar .sidebar-scrollbox {
  padding-top: 65px;
  box-sizing: border-box;
}
