/**
 * HIDE MKDOCS SIDEBAR ON MOBILE ONLY
 * Custom bottom sheet navigation for mobile/tablet
 * Desktop keeps normal mkdocs sidebar
 */

/* ============================================
   MOBILE ONLY: Hide mkdocs sidebar
   ============================================ */

@media screen and (max-width: 76.24em) {
  /* Hide primary sidebar (left navigation) on mobile */
  .md-sidebar--primary {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* Hide drawer checkbox (mobile menu toggle) */
  #__drawer {
    display: none !important;
  }

  /* Hide hamburger menu button in header */
  .md-header__button.md-logo,
  .md-header__button[for="__drawer"] {
    display: none !important;
  }

  /* Ensure content uses full width on mobile */
  .md-content {
    margin: 0 !important;
    padding: 1rem !important;
  }
}

/* ============================================
   DESKTOP: Keep mkdocs sidebar as normal
   ============================================ */

@media screen and (min-width: 76.25em) {
  /* Desktop keeps the default mkdocs sidebar - no changes! */
}
