@charset "UTF-8";
/* ==========================================================================
   客戶自定義樣式 (Client Custom Styles)
   此檔案包含客戶自行新增的樣式，與核心框架分離，以利未來核心檔案更新。
   請在引入 inseb-style.css 之後，再引入此檔案。
   ========================================================================== */
/* 1. 通用輔助類別 (Helper Classes) - Bootstrap 風格 */
.text-danger {
  color: #dc3545 !important;
}

.text-center {
  text-align: center !important;
}

/* 2. 表格樣式 (Table Styles) - 客戶新增的表格框線與排版 */
table.table.table-bordered {
  width: 100%;
  max-width: 1160px;
  border-collapse: collapse;
  margin-bottom: 1rem;
  background-color: transparent;
  border: 2px solid #e1e4e9;
}

table.table td,
table.table th {
  padding: 8px 10px;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #e1e4e9;
}

/* 3. 全域捲軸樣式 (Global Scrollbar Customization) */
::-webkit-scrollbar-track {
  width: 8px;
  height: 8px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #c5c6c9;
  border-radius: 20px;
}