/* Roboto Thin */
@font-face {
    font-family: 'Roboto';
    src: url('/fonts/roboto/Roboto-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/roboto/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Roboto Italic */
@font-face {
    font-family: 'Roboto';
    src: url('/fonts/roboto/Roboto-Italic.ttf') format('truetype');
    font-style: italic;
}

/* Roboto Bold */
@font-face {
    font-family: 'Roboto';
    src: url('/fonts/roboto/Roboto-Bold.ttf') format('truetype');
    font-style: bold;
}

html {
    overflow-y: scroll;
}

:root {
    --schrift1: 'Roboto', sans-serif;
    --farbe1: #1a4273;
    --farbe3: #009FE3;
    --farbe2: #313131;
    --farbe4: #000000;
}


.divider {
    margin: 1em 0em 1em 0em;
}


body {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: var(--schrift1);
    color: var(--farbe4);
    font-style: light;
}

#main {
    color: var(--farbe4);
    font-size: 20px;
    line-height: 1.5;
    font-family: var(--schrift1);
    font-weight: 300;
    font-style: normal;
    text-align: justify;
}


strong,
b {
    font-weight: bold;
    color: var(--farbe1);
}

a {
    color: var(--farbe4)
}

em,
i {
    font-style: italic;
}

h1 {
    color: var(--farbe1);
}

h2,
h3 {
    color: var(--farbe1);
    margin-bottom: -10px;
}

form input,
form select,
form button {
    width: 50%;
    padding: 10px;
    margin-bottom: 2px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1;
    font-family: var(--schrift1);

}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Zwei gleiche Spalten */
    gap: 20px;
}

.eingabe {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 70px;
    /* Mindesthöhe statt fester Höhe */
}

.eingabe label {
    height: 25px;
    /* Feste Höhe nur für Labels */
    display: flex;
    align-items: flex-end;
    margin-bottom: 5px;
}

.eingabe select,
input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1;
}


form label {
    width: 50%;
    padding: 0px;
    margin-bottom: 2px;
    line-height: 1;
    font-family: var(--schrift1);

}

form button {
    background-color: var(--farbe1);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

form button:hover {
    background-color: var(--farbe3);
}

button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    line-height: 1.5;
    font-family: var(--schrift1);
    background-color: var(--farbe1);
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: var(--farbe3);
}

/*********************************************************************************/
/* Nav                                                                           */
/*********************************************************************************/

#aufz ul {
    list-style-type: none;
    /* Entfernt die Standard-Punkte */
    padding-left: 30px;

}

#aufz ul li {
    padding-bottom: 15px;
}

#aufz ul li::before {
    content: "";
    /* Fügt einen Strich vor jedem Listeneintrag ein */
    color: black;
    /* Farbe des Strichs */
    margin-right: 0px;
    /* Abstand zwischen Strich und Text */
    padding-bottom: 5px;
}

#nav ul {
    display: inline-block;
    padding: 0em 0em;
    border-radius: 0;
    /* Keine runden Ecken benötigt */
    border-top: 3px solid var(--farbe1);
    /* Nur oberer Rand */
    border-bottom: 3px solid var(--farbe1);
    /* Nur unterer Rand */
    margin: 0;
    /* Entfernt den Standard-Abstand */
    text-align: center;
    /* Zentriert den Text */
    width: 100%;
    /* Volle Breite */
}

#nav>ul>li {
    font-family: var(--schrift3);
    font-weight: 400;
    font-style: regular;
    font-size: 15pt;
    line-height: 1em;
    color: var(--farbe1);
    display: inline-block;
}

#nav>ul li::before {
    content: "";
    margin-right: 0px;
}

#nav>ul>li:last-child {
    padding-right: 0;
}

#nav>ul>li>a,
#nav>ul>li>span {
    display: block;
    padding: 1.3em 1.5em;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1em;
    outline: 0;
    color: var(--farbe1);
}

#nav>ul>li>a:hover {
    color: var(--farbe3);
}

#nav li.active a {
    color: #FFF;
}

#nav>ul>li>ul {
    display: none;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    color: var(--farbe3);
    font-weight: bold;
    font-size: 28px;
    margin-right: 10px;
    margin-top: -5px;
}

.feature-icon {
    font-size: 24px;
    margin-right: 15px;
    margin-top: 2px;
}

.feature-content {
    flex: 1;
    line-height: 1.5;
}

#idField {

    margin-top: 0px;
    display: none;

}

input[readonly] {
    background-color: #e9e9e9;
}

.hidden {
    display: none;
}