.added-row {
  background-color: #ccffcc; /* Light green for added rows */
}
.removed-row {
  background-color: #ffcccc; /* Light red for removed rows */
}

.ant-table-tbody > tr.added-row > .ant-table-cell {
  background-color: #ccffcc !important; /* Light green for added rows, with !important to ensure override */
}

.ant-table-tbody > tr.removed-row > .ant-table-cell {
  background-color: #ffcccc !important; /* Light red for removed rows, with !important to ensure override */
}

