/* === Background Color Fix === */
/* 1. Force td to be transparent so tr background shows through */
.el-table__body tr.el-table__row > td.el-table__cell {
  background-color: transparent !important;
}
/* 2. Default white background on tr */
.el-table__body tr.el-table__row {
  background-color: #fff;
}
/* 3. Hover: rows WITH custom background - subtle darken effect */
.el-table__body tr.el-table__row[class*='custom-bg-color-']:hover {
  filter: brightness(0.93);
}
/* 4. Hover: rows WITHOUT custom background - default gray */
.el-table__body tr.el-table__row:not([class*='custom-bg-color-']):hover > td.el-table__cell {
  background-color: #f5f7fa !important;
}
/* 5. Ensure edited-row highlight works */
.el-table__body tr.edited-row > td.el-table__cell {
  background-color: #e6f7ff !important;
}
