/* your styles go here */
.table-striped tbody tr {
    background-color: #E0FFFF;
  }

  .table-striped tbody tr:hover {
    background-color: #1E90FF;
  }

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #87CEEB;
  }
  
  .table-striped tbody tr:nth-of-type(odd):hover {
    background-color: #1E90FF;
  }