body {
    background-color: #EBEDEE;
}

/* nicked from https://www.w3schools.com/Css/tryit.asp?filename=trycss_table_fancy */
table {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
  max-width: 600px;
}

td, th {
  border: 1px solid #ddd;
  padding: 8px;
}

tr:nth-child(even){background-color: #cacaca;}

tr:hover {background-color: #ddd;}

th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #4a5fc1;
  color: white;
}