tbody tr {
	cursor: pointer;
}

tbody tr:nth-child(even) {
  background-color: #f9f9f9; /* A very light grey for even rows */
}

tbody tr:nth-child(odd) {
  background-color: #ffffff; /* White for odd rows */
}

/* This applies a hover effect to all tr elements inside a tbody */
tbody tr:hover {
    background-color: #A4D8EE;
}