/**
 * 網站整體字體設定
 * 調整 html 的 font-size 會影響全站以 rem 為單位的文字與間距（含 Bootstrap）
 * 預設 16px；可改為 14px（較小）或 18px（較大）等
 * 因為專案使用 Bootstrap，很多字體與間距是用 rem，而 1rem = 根元素（html）的 font-size。
 * 所以改這裡就會一併影響全站以 rem 為單位的文字與間距，不需要再改其他地方。
 */
html {
    font-size: 18px;
}

/* 全站統一：讓所有 .badge 字級等同於 Bootstrap 的 fs-6（1rem） */
.badge {
    font-size: 1rem;
}

.app-navbar-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.navbar-meta {
    gap: 0.5rem 0.75rem;
}

.navbar-meta .navbar-text {
    white-space: normal;
    line-height: 1.2;
}

.navbar-meta .badge {
    white-space: nowrap;
}
