/**
 * NagishLi custom chrome — scoped under html.nl-custom-nagishli (Ilkashi-style).
 * Hides the stock floating strip visually; menus remain functional.
 * Improves accordion / mobile panel scrolling.
 */

html.nl-custom-nagishli #NagishLiBarStrip,
html.nl-custom-nagishli #NagishLiBarStrip.open {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
}

html.nl-custom-nagishli #NagishLiMenus {
  max-height: min(
    100dvh,
    calc(
      100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)
    )
  ) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}
