/* Sidebar scroll fix (mobile + desktop)
   Loaded after app.css to override AdminLTE defaults. */

.sidebar.custom-sidebar {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  height: calc(100vh - 3.5rem - 1px) !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.main-sidebar .sidebar.custom-sidebar {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 991.98px) {
  .main-sidebar {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .main-sidebar .sidebar {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    height: 100vh !important;
    max-height: 100vh !important;
  }
}

