/* _content/CainiaoBridge.Web/Views/Shared/_Layout.cshtml.rz.scp.css */
/* _Layout 的 scoped CSS（ASP.NET Core CSS isolation）。

   ⚠ 這裡的每一條規則在編譯後都會被加上 `[b-xxxxxxxxxx]` 屬性選擇器，
   例如 `.footer` 會變成 `.footer[b-5la53gm2b4]`，特異性 (0,2,0)。
   那會同時壓過 Tabler 的 `.footer` (0,1,0) 與 site.css 的 `footer.footer` (0,1,1)，
   而且 CainiaoBridge.Web.styles.css 還是 <head> 裡最後載入的一支。
   → 在這裡寫的東西，site.css 覆寫不掉。要改樣式請去 site.css，不要往這裡加。

   原本的 ASP.NET 範本規則已全部移除，兩類原因：

   ① 與版面打架
      `.footer{position:absolute;bottom:0;line-height:60px}` —— 頁尾「漂浮」的真兇。
      absolute 讓頁尾脫離文件流，所以內容一長就被蓋住；line-height:60px 又讓
      任何壓高度的嘗試都把字裁掉。改用 Tabler 骨架後頁尾靠
      `.footer{margin-top:auto}` 貼底，position 必須留在預設的 static（在流內）。

   ② 與 Tabler 主題打架
      `a{color:#0077cc}`、`.btn-primary{background:#1b6ec2}`、`.nav-pills`、
      `.border-top/.border-bottom{#e5e5e5}` —— 都是範本寫死的舊配色，
      會把 Tabler 的主題色與 CSS 變數蓋掉（btn-primary 有 12 處在用）。
      移除後改吃 Tabler 的 --tblr-* 變數，深淺色主題才會一致。

   保留 a.navbar-brand：與配色無關，只是讓過長的站名可以換行。 */

a.navbar-brand[b-st3jrlcu48] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}
