@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');

html {
    font-size: 14px;
    font-family: 'Noto Sans TC', sans-serif;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
        font-family: 'Noto Sans TC', sans-serif;
    }
}

.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;
}

/* 觸控裝置：移除 hover 並強制顯示 outline-primary 的 active 樣式 */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        background: inherit !important;
        color: inherit !important;
        border-color: inherit !important;
    }

    .btn-outline-primary:hover {
        color: #0d6efd !important;
        border-color: #0d6efd !important;
    }

    .btn-outline-primary.active {
        background: #0d6efd !important;
        color: #fff !important;
        border-color: #0d6efd !important;
    }
    .btn-outline-primary.active:disabled {
        background-color: #0d6efd !important;
        border-color: #0d6efd !important;
        color: #fff !important;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}
