body {
  background-color: #f2f2f2;
  font-family: Arial, sans-serif;
}

#nav {
  background-color: #27496d;
  padding: 10px;
  color: white;
}

#nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#nav li {
  display: inline-block;
  margin-right: 20px;
}

#nav li:last-child {
  margin-right: 0;
}

#nav a {
  color: white;
  text-decoration: none;
}

#nav a:hover {
  text-decoration: underline;
}

#h1 {
  background-color: #a2c4c9;
  padding: 10px;
  margin-bottom: 20px;
  color: white;
}

#myTable {
  width: 100%;
  border-collapse: collapse;
}

#myTable th,
#myTable td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

#myTable th {
  background-color: #27496d;
  color: white;
}

#myTable_wrapper {
  margin-bottom: 20px;
}

#foot {
  background-color: #a2c4c9;
  padding: 10px;
  color: white;
  text-align: center;
}

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