
/* Admin sidebar overflow hotfix (desktop) */
@media (min-width:1200px){
  #adminSidebar.admin-sidebar{
    max-height: 100vh !important; /* keep the cap */
    overflow-y: auto !important;  /* scroll inside instead of overflowing page */
    overflow-x: hidden;           /* avoid horizontal bleed */
    overscroll-behavior: contain; /* prevent body scroll chaining */
    -webkit-overflow-scrolling: touch;
  }
}
