/* persistent themes */
html {
  font-family: Arial;
  max-width:1500px;
  min-width: 1000px;
  margin: auto;
  overflow-y: scroll;
  color: black;
  height: 100vh;
}

body {
  margin: auto;
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
}

nav {
  display: flex;
  flex-direction: row;
  width: 100%;
  letter-spacing: normal;
  position: relative;
  height: 4rem;
  align-items: center;
  margin-bottom: 3rem;
  background-color: #fff;
  /* border-bottom: 10px solid black; */
}

.links {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 75%;
  word-spacing: normal;
  letter-spacing: normal;
  align-items: center;
}

.links a {
  height: 100%;
  width: 25%;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  line-height: 4rem; 
  color: #002D72;
}

.links a:hover, .links a.active {
  border-bottom: solid #DA291C;
  color: #002D72;
}

a, a:visited { 
  text-decoration: none; 
  color: #002D72; 
  font-size: 1.5rem;
}
 
.header {
    color: #fff;
    background-color: #002D72;
    width: 100%;
    margin: auto;
    padding: 5px 0px;
    text-align: center;
    vertical-align: middle;
    font-size: 1.5rem;
}

.wrapper {
  /* background-color: #fafafa; */
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
}

table {
  width: 80%;
  font-size: 1.5rem;
  margin-top: 0;
  margin-right: auto;
  background-color: #ededed;
  table-layout: fixed;
}

td {
  padding: 5px;
  overflow-wrap: break-word;
}

th {
  overflow-wrap: break-word;
}

.odd_row {
  background-color: #e1e1e1;
} 

#scopes {
  width: 100%;
  font-size: 1.5rem;
  margin: 0 auto;
  background-color: #ededed;
  text-align: center;
}