/* Create a top navigation bar with a black background color  */
.topnav {
  background-color: #8e6a00;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the links inside the navigation bar */
.topnav a.right {
  float: right;
  color: #f2f2f2;
  background-color: red;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

#content {
  padding: 1vh;
  text-align: center;
}

/* Set table styling */
table, th, td {
    border:1px solid black;
    text-align: left;
}

table {
    margin-left: auto;
    margin-right: auto;
}

th {
    text-align: center;
}

/* Set styling for green rows */
tr.green {
    background-color: rgb(71, 255, 47);
}