/* Custom CSS for MachineAvatars Documentation */

/* 
 * Fix: Enable full sidebar scrolling for long navigation lists
 * Issue: Backend Services section has 20+ pages that get cut off
 * Solution: Make the entire sidebar scrollable with proper height constraints
 */

/* Force sidebar to be scrollable and take full viewport height */
.md-sidebar--primary {
  height: 100vh !important;
}

/* Make the inner scroll container properly scrollable */
.md-sidebar--primary .md-sidebar__scrollwrap {
  height: 100% !important;
  overflow-y: auto !important;
}

/* Ensure navigation takes available space */
.md-sidebar--primary .md-sidebar__inner {
  height: 100% !important;
}
