code {
    display: block;
    white-space: pre-wrap;
}

body,html{
  font-family: 'Frutiger LT Std', Roboto, Helvetica, Verdana, Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #000;
  background: #fff;
  height: 100%;
  font-size: 16px;
}


p {
  margin-top: 1rem;
  margin-bottom: 0;
}

nav ul{
  list-style: none;
  padding-left: 0;
  width: 50%;
}

nav ul li{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container{
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px;
}

.right {
  text-align: right;
}

h1{
  margin-top: 0;
  font-size: 30px;
  font-weight: 300;
}

h2 {
  font-size: 18px;
  font-weight: 500;
  border-top: 1px solid #fb8712;
  margin: 30px 0 10px 0;
  padding-top: 30px;
}

h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 30px 0 10px 0;
}

h4 {
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  margin: 20px 0 7px 0;
}

h5 {
  font-size: 13px;
  text-decoration: underline;
  font-style: italic;
  margin: 15px 0 5px 0;
}

img {
  max-width: 100%;
}

nav{
  background: #666;
  color: white;
  padding: 10px;
  width: auto;
}

nav .nav-wrapper{
  max-width: 820px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  margin: 0 auto;
}

nav .nav-wrapper .left-nav a {
  margin-right: 10px;
  font-weight: 300;
}
nav .nav-wrapper .left-nav a:hover {
  color: #aaa;
}

nav a {
  color: white;
  transition: all .2s ease-out;
  text-decoration: none;
}

nav a:hover{
  cursor: pointer;
  color: #aaa;
  text-decoration: none;
}


table {
  margin-top: 10px;
}
table thead tr {
  background-color: #999;
  color: #fff;
}
table thead th {
  border-bottom: 1px solid #c0c0c0;
  padding: 3px 15px 0 3px;
}
table tbody td {
  border-bottom: 1px solid #e0e0e0;
  padding-right: 15px;
  padding: 3px 15px 0 3px;
}
tbody tr:nth-child(odd){
  background-color: #f0f0f0;
}


.spinner {
  float: left;
  margin-top: 20px;
}
.spinner img {
  height: 50px;
  margin-right: 10px;
}


.center { text-align: center; }

.alert { 
  position: relative;
  padding: .75rem 1.25rem;
  margin: 0 0 1rem 0;
  border: 1px solid transparent;
  border-radius: .25rem;
}

.danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
