/* Zebra striping for table rows (if not using Bootstrap's table-striped) */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f2f2f2;
}
.table-striped tbody tr:nth-of-type(even) {
    background-color: #ffffff;
}
