/* Verifika — Fixed sidebar (desktop ≥1024px) */

/* Base: sidebar behavior (mobile-first, drawer mode) */
#nav-drawer {
  position: fixed;
  left: -280px;
  top: 0;
  bottom: 0;
  width: 260px;
  background: #161a1f;
  border-right: 1px solid rgba(255,255,255,.08);
  z-index: 101;
  transition: left .25s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 20px;
}

#nav-drawer.open { left: 0; }

/* Desktop: sidebar always visible, content pushed right via body padding */
@media (min-width: 1024px) {
  #nav-drawer {
    left: 0 !important;
    transition: none !important;
  }

  #nav-overlay {
    display: none !important;
    pointer-events: none !important;
  }

  /*
   * Body padding pushes all content right of the sidebar.
   * This preserves mx-auto centering on inner max-w-* containers
   * since they center within (viewport - 260px), not the full viewport.
   */
  body {
    padding-left: 260px;
  }

  .hamburger-btn {
    display: none !important;
  }
}
