/* 基礎字體設定 */
body { font-family: 'Noto Sans TC', 'Noto Sans', sans-serif; }
.font-thai { font-family: 'Noto Sans Thai', 'Noto Sans', sans-serif; }

/* 隱藏捲軸但保持可滾動 */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* 修復瀏覽器輸入框自動填寫 (Autofill) 的預設背景色 */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

/* 深色模式下的 Autofill 修復 */
.dark input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #111113 inset !important;
    -webkit-text-fill-color: white !important;
}

/* 簽名檔預覽 Iframe 縮放控制 */
#signature-preview-iframe {
    transform: scale(0.9);
    transform-origin: top left;
    width: 111%;
    height: 111%;
}