html {
    background-color: #ccc;
}

.file_metadata ul, .header ul {
    list-style-type: none;
}

.logo_container {
    display: block;
    position: relative;
    overflow: auto;
    height: 100%;
}

.pagination {
    list-style-type: none;
    display: flex;
    background-color: #3972a0;
    border-radius: 6px;
    width: 25%;
    margin: 1%;
}

.pagination li {
    color: yellow;
    margin: 1%;
    padding: 3px;
    border-radius: 5px;
    border: 1px solid white;
}

.menu {
    position: relative;
    background-color: #3972a0;
    width: 100%;
    height: 40px;
    display: block;
    overflow: hidden;
}

/*
.menu li a, .pagination li, .menu li div {
    display: inline-block;
    border: 1px solid white;
    padding: 10px;
    background-color: #3972a0;
    color: yellow;
    float: left;
}
*/
.menu a, .menu div {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 6px 8px;
  text-decoration: none;
  font-size: 17px;
  height: 100%;
  position: relative;
  overflow: auto;
}

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

/* Add a color to the active/current link
 TODO make this work
*/
.menu a.active, .menu div.active {
  background-color: #4CAF50;
  color: white;
}

#simp_search {
    float: right;
    border: 1px solid;
    border-radius: 15px;
    height: 75%;
    width: 15%;
    margin-right: 40px;
    margin-top: 3px;
    margin-bottom: 3px;
}

::placeholder {
    color: black;
    opacity: 1;
}

.header {
    display: block;
    position: relative;
    overflow: auto;
    height: 100%;
}

.header h1 {
    font-size: 40px;
}

.content {
    clear: both;
    padding-top: 3vh;
}

.header a {
    float: left;
    padding-right: 5vw;
}

/*
    Advanced search menu container
    Hidden by default
    Sits above everything else
    Has background color to make opaque
*/
#popup_container {
    display: none;
    position: relative;
    z-index: 1;
    line-height: 150%;
    width: max-content;
    height: max-content;
    padding: 10px 10px 30px 10px;
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    background-color: white;
}

#popup_container input, select{
    float: right;
}

.search_item {
    padding-bottom: 5px;
}

.popup_header {
    display: flex;
    padding-bottom: 5px;
}

.popup_header button {
    margin-left: 30%;
}

/*#popup {
    visibility: hidden;
    width: 160px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
}*/

.show {
    visibility: visible;
}

table, th, td {
  border: 2px solid black;
  border-collapse: collapse;
}

h1, h2, h3 {
    margin-block-start: 5px;
    margin-block-end: 5px;
    color: #444; /* Some sort of grey */
}

#container {
    width: 90%;
    margin: 0 auto .5em;
    background: #fff;
    border: 5px solid #3972a0;
    -moz-box-shadow: 0 0 10px 5px #999;
    -webkit-box-shadow: 0 0 10px 5px #999;
    box-shadow: 0 0 10px 5px #999;
    padding: 1em;
    font-family: arial;
}

.catalog {
    padding-left: 5%;
}

