/* Keep account controls visible while long page content scrolls. */
.sidebar {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.sidebar nav {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #315582 transparent;
}

.side-logo,
.nav-title,
.sidebar-bottom {
  flex: 0 0 auto;
}

.sidebar-bottom {
  margin-top: auto;
  background: #0a2344;
}

@media (max-width: 760px) {
  .sidebar.mobile-open {
    position: fixed;
    height: 100dvh;
  }
}
