/* Fix some mobile ActionSheet/layout quirks.
   This file is referenced by /index.html as /action-sheet-fix.css */

/* Avoid iOS bounce + safe-area overlap issues */
html, body {
  height: 100%;
}

/* Vant ActionSheet safe area */
.van-action-sheet {
  padding-bottom: env(safe-area-inset-bottom);
  padding-bottom: constant(safe-area-inset-bottom);
}

/* Prevent body scroll when overlay is open (Vant uses this class) */
.van-overflow-hidden {
  height: 100%;
}

