Is there a way to apply specific styles to individual rows in a data table based on certain JSON values?
For instance, I want to color a row red if the temperature value is greater than 30, green if it's between 30 and 50, and else green.
Currently, I can only target even or odd rows using:
tr:nth-child(even)/tr:nth-child(odd)
.