/* 修正 rwd-table 導致 Bootstrap 表格邊線不見 */
.table,
.table-bordered {
  border: 1px solid #dee2e6 !important;
  border-collapse: collapse !important;
}
.table th,
.table td {
  border: 1px solid #dee2e6 !important;
}

/* 修正 Bootstrap 5 container padding 改變造成的窄化問題 */
.container,
.container-fluid {
  --bs-gutter-x: 15px !important; /* 改回 v4 時期的間距 */
}

/* 修正 rwd-table 可能設定的 display:block 導致 table 寬度不滿 */
.table-responsive table {
  display: table !important;
  width: 100% !important;
}

/* 修正第一欄（日期、編號等）被強制換行的問題 */
.table-responsive th:first-child,
.table-responsive td:first-child {
  white-space: nowrap !important; 
}

/* 微調表格欄位 padding，避免內容太擠 */
.table th,
.table td {
  padding: 0.5rem 0.75rem !important; /* 比預設略寬 */
}