/* ===== Flutter Web 專用補丁 ==================================== */
/* 1️⃣ 避免被父層 <iframe> 或 WP 主題鎖死捲動 ---------------------- */
html, body {
  overflow: auto !important;          /* 強制可滾動 */
}

/* 2️⃣ Flutter 畫布 (flt-glass-pane) 只允許垂直手勢 --------------- */
#flt-glass-pane {
  touch-action: pan-y !important;     /* 允許上下捲動，阻擋水平 */
}

/* 3️⃣ 若未來自訂其他樣式，可直接往下加 --------------------------- */
/* .your-class { … } */

/* 加到 web/styles.css 最後 */
#flt-glass-pane {
  overflow-y: auto !important;          /* 強制可垂直捲動 */
  -webkit-overflow-scrolling: touch;    /* iOS 慣性 */
  touch-action: pan-y !important;       /* 阻擋水平手勢，避免誤觸 */
}

