html {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  display: inline-flex;
  width: 99%;
  height: 99%;
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 15px;
  line-height: 1.6;
  color: #222;
}

nav {
  width: 15%;
  height: 100%;
  min-width: 175px;
}

nav > section {
  padding: 5px;
  margin: 0;
}

nav > section > ul {
  display: inline-flex;
  width: 100%;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style-type: none;
  list-style-position: inside;
}

nav > section > ul > li {
  width: 100%;
  transition: all 0.5s ease;
  display: inline-flex;
  height: 100%;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

nav > section > ul > li:hover {
  background-color: lightgray;
}

nav > section > ul > li > a {
  flex-grow: 1;
  align-items: center;
  display: inline-flex;
  text-decoration: none;
  color: #222;
  min-height: 25px;
  padding-left: 25px;
}

nav > section > ul > li > a:hover {
  color: #000;
}

body > section {
  width: 85%;
  height: 95%;
  overflow-y: scroll;
  padding: 5px 15px;
  margin-right: 10px;
}

td {
  padding: 5px;
  vertical-align: top;
}

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

table {
  border-collapse: collapse;
}

a {
  color: #444;
}

a:hover {
  color: #000;
}

h1 tt {
  font-size: 1rem;
  font-weight: bold;
}
