html {
    font-size: 14px;
    height: 100%; /* 改為 height 100% */
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* --- 核心修正開始 --- */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* 讓 body 至少佔滿整個視窗高度 */
    margin-bottom: 0; /* 移除原本的 60px 邊距 */
}

/* 關鍵修正：強制 Footer 回歸正常流 */
.footer {
    position: static !important; /* 強制移除 absolute/fixed */
    width: 100%;
    background-color: #f8f9fa;
    margin-top: auto; /* 當內容不足時，自動貼到底部 */
    py: 3;
}

footer {
    flex-shrink: 0; /* 確保 footer 不會被壓縮 */
}
/* --- 核心修正結束 --- */

/* 導覽列按鈕樣式保持不變 */
.nav-btn-green-active {
    background-color: #28a745 !important;
    color: white !important;
    border-radius: 5px;
}

.nav-btn-white {
    color: #333;
}
