body {
    background-color: white;
    color: black;
    font-family: sans-serif;
    text-align: justify;
    margin: 0;
    padding-bottom: 3.2em;
    font-size: 100%;
    min-height: calc(100vh - 3.2em);
    position: relative;
}

a {
    color: #4D6AFF;
}

a.warning {
    color: #FF6746;
}

#header {
    width: 100%;
    background: black;
    color: white;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
}
#header li {
    list-style: none;
    padding: 0;
}
#header img {
    height: 4em;
    margin: 1em;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 1em 0;
    line-height: 1.2em;
    background-color: black;
    color: white;
}
footer a {
    color: inherit;
}

h1 {
    text-align: center;
}

h2 {
    text-align: center;
}

p.info {
  text-align: center;
}

#file-input {
    display: none;
}
#file-input + label {
    padding: 0.5em 2em;
    border: none;
    border-radius: 0.25em;
    color: white;
    background-color: #4D6AFF;
    text-transform: uppercase;
    font: inherit;
    font-weight: bold;
    cursor: pointer;
}


table {
  margin: 1ex auto 1ex auto;
  text-align: center;
  border-spacing: 0px;
  border-collapse: collapse;
}
 
table th {
  font-weight: normal;
  padding: 0.5ex;
  border: 1px solid #cccccc;
  color: inherit;
  background-color: #eeeeee;
}
 
table td {
  padding: 0.5ex;
  border: 1px solid #cccccc;
}

ul {
    margin: 0;
}

td.status > .statusDetail {
    position: relative;
    display: none;
}

td.status:hover > .statusDetail {
    text-align: left;
    position: absolute;
    z-index: 1;
    display: block;
    border: 1px solid #cccccc;
    color: inherit;
    background-color: white;
    padding: 0 2ex;
    margin: 2ex 1ex;
    box-shadow: 0 0 1ex #0007;
    border-radius: 0.25em;
}
