/* Shared dashboard/menu box sizing fix */
.sidebar, aside.sidebar, .dashboard-sidebar, .admin-sidebar, .side-menu, .side-nav {
  height: fit-content !important;
  min-height: 0 !important;
  max-height: min(720px, calc(100vh - 96px)) !important;
  overflow-y: auto;
}
@media (max-width:980px){
  .sidebar, aside.sidebar, .dashboard-sidebar, .admin-sidebar, .side-menu, .side-nav {
    height:auto !important;
    min-height:0 !important;
    max-height:min(76dvh, calc(100dvh - 104px - env(safe-area-inset-bottom))) !important;
    overflow-y:auto !important;
    -webkit-overflow-scrolling:touch;
  }
}
