/* 設定字體為 Inter (主要) 及 Noto Sans TC (中文 fallback) */
body {
    /* 使用 Inter 配合 Noto Sans TC 確保中文顯示正常 */
    font-family: 'Inter', 'Noto Sans TC', sans-serif;
    background-color: #f7fafc; /* 輕微的灰色背景 */
}

/* 強調輸入欄位的標籤 */
.input-group label {
    font-weight: 600;
}

/* 為表格內容加入斑馬紋效果，提高可讀性 */
.table-striped tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

/* 確保表格中的文字不被裁切，並維持視覺清晰 */
.table-striped tbody td {
    white-space: nowrap;
    padding: 0.75rem 0.5rem; /* 稍微調整 padding */
    text-align: left;
    font-size: 0.875rem; /* 14px */
}