:root {
    --primary-color: #2ea98b;
    --secondary-color: #1b3547;
    --accent-color-1: #d1ffec;
}

body {
    background-color: white;
    margin: 0;
}

a {
    color: var(--secondary-color);
}

td {
    padding-left: 5px;
    padding-right: 5px;
}

h1, h2, h3 {
    margin-top: 0;
}

div.ul {
    height: 3px;
    background-color: var(--primary-color);
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-top: 0;
    padding-bottom: 0;
}

#outerbody {
    display: flex;
    flex-direction: column;
}

#header {
    text-align: center;
    padding-top: 5px;
    height: 75px;
}

#header img {
    height: 70px;
}

#menu {
    text-align: center;
}

#body {
    background-color: var(--accent-color-1);
    height: auto;
}

#innerbody {
    margin: auto;
    width: 1000px;
    min-height: 500px;
    padding: 1rem;
}

#footer {
    text-align: center;
}

.value {
    background-color: #fff7b6;
    color: #121212;
    padding: 1px 5px 1px 5px;
    font-family: monospace;
}

.testresults {
    display: flex;
    flex-direction: column;
    width: max-content;
}

.testresult {
    margin-bottom: 1rem;
}

.testresult-header {
    display: flex;
    flex-direction: row;
}
.test-result-details {
    padding: 2px;
}

.testresult div {
    margin-right: 5px;
}

.test-outcome {
    width: 30px;
    height: 30px;
    background-color: darkgray;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    line-height: 30px;
    border-radius: 5px;
}
.test-outcome-success {
    background-color: forestgreen;
}
.test-outcome-warning {
    background-color: darkorange;
}
.test-outcome-neutral {
    background-color: #3b82f6;
}
.test-outcome-error {
    background-color: #cf0000;
}

.test-name {
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    line-height: 30px;
    font-size: 21px;
}
.test-result {
    font-weight: bold;
}
.test-result-explanation {
}
table.result-listing {
    border-collapse: collapse;
    width: 100%
}
table.result-listing thead {
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    text-align: left;
    font-weight: bold;
}
table.result-listing thead th {
    border: 0;
    padding: 2px 5px;
}

.quickstart-box {
    width: 400px;
    margin: auto;
    padding: 1.5rem 10px;
    text-align: center;
    border: 2px solid var(--secondary-color);
    background-color: white;
    display: flex;
    flex-direction: column;
}

.quickstart-box .email {
    font-weight: bold;
    font-size: 200%;
    margin: 10px 0;
}

.waitbar-container {
    margin-top: 1rem;
}

.waitbar {
    display: flex;
    width: max-content;
    overflow: clip;
    border: var(--secondary-color) solid 1px;
    padding: 3px 0px;
}

.waitbar-bar {
    color: white;
    background-color: var(--primary-color);
    animation: waitbar-move 14s linear;
    animation-fill-mode: forwards;
    animation-delay: 1s;
    text-align: right;
    padding: 2px;
    height: 5px;
    width: 500px;
}

@keyframes waitbar-move {
    to {
        transform: translateX(-100%);
    }
}
