/* Helper class used by the script to hide/show rows
   (keeps original display type when visible) */
.rowa-hidden {
  display: none !important;
}

:root {
  --rowa-admin-offset: 0px;
}

/* Small header (Zeile B): keep it pinned to the top of the viewport.
   Using fixed instead of sticky avoids "sticky container" edge cases
   where the header suddenly stops and scrolls away. */
.zeile-b {
  position: fixed;
  top: var(--rowa-admin-offset);
  left: 0;
  right: 0;
  z-index: 9999;
}

