/* ===== Utility Classes =====
 * 由 index.html 內聯樣式遷移而來的工具類別。
 * 只收錄實際使用到的類別，保持精簡。
 */

/* Display utilities
 * 不使用 !important：專案透過 el.style.display = 'block' 切換可見性，
 * inline style 須能覆蓋 class。初始隱藏由 class 提供，顯示由 inline style 贏過。
 */
.is-hidden { display: none; }

/* Table column widths (for <th> cells) */
.col-w-40  { width:  40px; }
.col-w-50  { width:  50px; }
.col-w-52  { width:  52px; }
.col-w-60  { width:  60px; }
.col-w-80  { width:  80px; }
.col-w-90  { width:  90px; }
.col-w-140 { width: 140px; }
.col-w-150 { width: 150px; }
.col-w-240 { width: 240px; }
.col-w-260 { width: 260px; }

/* Text helpers */
.u-nowrap      { white-space: nowrap; }
.u-text-center { text-align: center; }

/* Cursor */
.u-cursor-pointer { cursor: pointer; }
