:root {
    --juh-blue: #000548;
    --juh-red: #eb003c;
    --juh-grey: #e5e5e5;
    --border-radius: 5px;
}

@font-face {
    font-family: "Maven Pro";
    src: url("/static/MavenPro-VariableFont_wght.ttf");
}

body{
    margin: 20px auto;
    padding: 10px;
    max-width:650px;
    line-height: 1.4;
    font-size: 16px;
    text-align: justify;
    font-family: "Maven Pro", sans-serif;
    color: var(--juh-blue);
}
h1, h2, h3 {font-weight: 300;}
h2, h3 {margin-bottom: 0;}
.error {color: #f00;}
.head {display: flex; align-items: flex-end; padding-bottom: 25px;}
.head img {
    margin-right: 2ch;
    width: 7ch;
    position: relative;
    top: 0.5em;
}
.head h1 {line-height: 1.0; margin: 0;}
.head h2 {line-height: 1.0; margin: 0;}
.head a {text-decoration: none; color: #000;}
label {font-weight: 500; font-size: 0.8em;}
input{
    cursor: pointer;
    display: block;
    border: 1px solid #000;
    font-size: inherit;
    font-family: inherit;
    padding: .375rem .75rem;
    margin: 0 .5em .5em 0;
    font-size: 1rem;
    line-height: 1.5;
}
input[type="submit"]{
    color: #fff;
    background-color: var(--juh-red);
    border-radius: var(--border-radius);
    border: none;
    font-weight: bold;
    padding: 0.6em;
}

input[type="submit"]:hover {
    background-color: #EC3361;
}

input[type="mail"],input[type="text"],input[type="password"]{
    width: 40ch;
    border-radius: var(--border-radius);
}

button {
    background-color: var(--juh-red);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.6em;
    color: white;
    font-weight: bold;
    margin-right: 0.5ch;
}

button:hover {
    background-color: #EC3361;
}

td button {
    margin-right: 0;
}

tr > * {
    padding: 0.5em 1ch 0.5em 1ch;
}

table tr:nth-child(odd) {
    background-color: #7E9E00;
}

table tr:nth-child(even) {
    background-color: #4DC79C;
}

table tr:first-child:not(.service-accounts) {
    font-weight: bold;
    background-color: var(--juh-grey);
}

table tr:not(:first-child):not(.service-accounts):hover {
    background-color: #D9F860;
    cursor: pointer;
}

table {
    margin: 1ch 0 1.5ch 0;
}

ul {
    padding: 0;
    list-style-position: inside;
}