html {
    height: 100%;
}

body {
    background-color: #f7efef;
    @media (prefers-color-scheme: dark) {
        background-color: #0A0A2E;
        color: #eeeeee;
    }

    font-family: "Liberation Sans", "Arial", "sans-serif";
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
}

@media (prefers-color-scheme: dark) {
    a {
        color: #ff79c6;
    }

    a:visited {
        color: #ffaaee;
    }
}

.page-title {
    font-family: "Noto Serif", "Palatino Linotype", "serif";
    font-size: 1.2rem;
    text-align: center;
}

.controls {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    max-width: 1300px;
    font-family: "Noto Serif", "Palatino Linotype", "serif";
    position: relative;
}

.nav {
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
}

.pending-icon {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.centre-nav {
    display: inline-block;
    margin: 0 auto;
}

.nav-link {
    font-weight: bold;
}

.nav-link > a, .nav-link > a:visited {
    color: #0000EE;
    @media (prefers-color-scheme: dark) {
        color: #AAAAFF;
    }
}

.form-field {
    padding: 5px;
}

.form-field>div {
    display: inline-block;
    vertical-align: middle;
}

.field-label {
    width: 110px;
    font-weight: bold;
}

.field-input {
    padding-top: 4px;
    padding-bottom: 4px;
}

.form-submit {
    padding-top: 20px;
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
}

.form-submit>input {
    width: 110px;
}

.subtle-link:link, .subtle-link:visited {
  color: inherit;
  text-decoration: inherit;
}

.subtle-link:hover {
    color: #111188;
    @media (prefers-color-scheme: dark) {
        color: #bd93f9;
    }
    text-decoration: underline;
}

.content {
    width: 99%;
    max-width: 1200px;
    flex-grow: 1;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 97%;
    align-items: center;
}

hr {
    width: 100%;
    max-width: 1300px;
    margin: 7px;
    @media (prefers-color-scheme: dark) {
        background-color: #666;
    }
}

.minor-rule {
    border: none;
    height: 0.11em;
    background-color: #888;
    @media (prefers-color-scheme: dark) {
        background-color: #666;
    }
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 98%;
    max-width: 1300px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 5px;
}

.signature {
}

.contact {
}

