/* 你原本隱藏的元素 (維持不變) */
form .text-right { text-align: center !important; }

/* 強制釋放網頁與主要容器的高度限制 */
body, html, 
.dialog-off-canvas-main-canvas, /* 補上這個 Drupal 最外層容器 */
main,                           /* 補上 main */
.region-content, 
.layout-container,
.webform-submission-form, 
.webform-confirmation,    
.container.layout-max-width {
    height: auto !important;
    min-height: 0 !important;
    
    /* 【關鍵新增】強制覆寫任何 vh (Viewport Height) 設定，阻斷無限迴圈 */
    max-height: none !important; 
}

/* 【關鍵新增】隱藏 Drupal 的 AJAX 載入動畫殘留，避免干擾底部高度 */
.ajax-progress, 
.ajax-progress-throbber {
    display: none !important;
}