@import url(https://fonts.googleapis.com/css?family=Scheherazade&subset=arabic,latin);

/* Allgemeine Stile */
* {
    font-family: Arial, sans-serif !important;
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Links */
a {
    color: #35617F;
    text-decoration: none;
}
a:visited,
a:active {
    color: #35617F;
}

/* Schriftgrößen und Farben */
.text-4 { font-size: 4pt; }
.text-8 { font-size: 8pt; }
.text-10 { font-size: 10pt; }
.text-10-bold { font-size: 10pt; font-weight: bold; }
.text-10-white { font-size: 10pt; font-weight: bold; color: #FFFFFF; }
.text-11 { font-size: 11pt; }
.text-12 { font-size: 12pt; }
.text-12-bold { font-size: 12pt; font-weight: bold; }
.text-red { font-size: 12pt; color: red; }
.text-13 { font-size: 13pt; }
.text-14 { font-size: 14pt; }
.text-14-bold { font-size: 14pt; font-weight: bold; }
.text-15 { font-size: 15pt; }
.text-18 { font-size: 18pt; }
.text-20 { font-size: 20pt; }
.text-36 { font-size: 36pt; }
.message { font-size: 15pt; font-weight: bold; font-family: 'Times New Roman', serif; }

/* Überschriften */
.head1 {
    font-size: 36pt;
    font-weight: bold;
    color: orange;
    font-family: Haettenschweiler;
}
.head2 {
    font-size: 38pt;
    font-family: 'Times New Roman', serif;
}
.head3 {
    font-size: 18pt;
    font-family: Impact, sans-serif;
}

/* Tabellen */
td {
    padding: 4px;
}
td.or { background-color: orangered; }
td.pv { background-color: palevioletred; line-height: 9pt; }
td.yg { background-color: yellowgreen; line-height: 15pt; text-align: center; }
td.orunten { background-color: orangered; line-height: 24pt; }
td.co { background-color: coral; line-height: 14pt; }
td.blau, th {
    background-color: #01AEF0;
    color: #FFFFFF;
    font-weight: bold;
}
table.nav {
    margin-bottom: 5em;
    border-collapse: collapse;
}
table.nav tr.navpoints td {
    border: 1px solid #559BCC;
    border-top: none;
    border-right: none;
    background-color: #6AC2FF;
}
table.nav tr.navpoints td:last-of-type {
    border-right: 1px solid #559BCC;
}
table.nav tr.navpoints td a {
    color: white;
    text-decoration: none;
}
table.nav tr.navpoints td.active {
    background-color: #559BCC;
}

/* Trennlinie */
hr.end {
    width: 800px;
    height: 1px;
    border: none;
    background-color: #559BCC;
    margin: 5em auto;
}

/* Formularelemente */
select, input[type='submit'] {
    padding: 4px;
}
input[type='submit'] {
    width: 50px;
    height: 25px;
    background-color: white;
}

/* Container */
.containerCenter {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}
.container {
    width: 70%;
    max-width: 750px;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.content {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
}
.content.hinweis {
    color: #000;
    font-size: 2rem;
}
.content.hinweis2 {
    color: #CCC;
    font-size: 0.7rem;
    text-align: left;
}
.hint {
    color: #559BCC;
    font-weight: bold;
}

/* Navigation */
.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #559BCC;
    margin: 0 0 5rem 0;
    padding: 0;
}
.nav-item {
    min-width: 160px;
    text-align: center;
}
.nav-item a {
    padding: 5px;
    white-space: nowrap;
    display: block;
    line-height: 41px;
    width: 100%;
    height: 100%;
    color: white;
    background-color: #559BCC;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-item a:hover {
    background-color: #6AC2FF;
    color: white;
}
.nav-item.active a {
    background-color: #6AC2FF;
}

/* Kopfbereich */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 6em;
    font-family: 'Scheherazade', serif;
    color: white;
    background-color: #6AC2FF;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-item {
        width: 100%;
    }
    .header {
        font-size: 3em;
    }
}
@media (max-width: 480px) {
    .nav-item {
        width: 100%;
    }
    .header {
        font-size: 2em;
    }
}
