/* 載入 Google 字體 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+HK:wght@300;400;500;700&display=swap');

body {
    font-family: 'Noto Sans HK', sans-serif;
}

/* ==========================================
   全域自訂樣式 (Global Styles)
========================================== */

/* 自訂暗黑風格 Scrollbar (瀏覽器右邊嗰條拉落條) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #09101f; /* 配合你網站嘅最深底色 */
}

::-webkit-scrollbar-thumb {
    background: #1e3a8a; /* 藍鯨深藍色 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0891b2; /* 滑鼠移過去變水藍色 */
}

/* 隱除 Tailwind 預設 input 數字嗰啲上下箭嘴 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}