/* Highlight rows with inbounds past 30 days */
.row-inbound-past-30 {
  background-color: #ffe0e0 !important; /* Light red */
}

.row-inbound-past-30 > .tabulator-cell {
  background-color: #ffe0e0 !important; /* Light red for cells */
}

.row-inbound-past-30:hover {
  background-color: #ffc9c9 !important; /* Slightly darker red on hover */
  cursor: help;
}

.row-inbound-past-30:hover > .tabulator-cell {
  background-color: #ffc9c9 !important; /* Light red for cells on hover */
}
