/* Basic responsive styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #ffffff;
    color: #333333;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
}

.container3 {
    max-width: 200px;
    margin: 0 auto;
    padding: 20px 20px 20px 20px;
    display: flex;
    /*justify-content: space-between;*/
}

.container1 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 60px 40px 30px;
    /* display: flex; */ /* Entfernen oder auskommentieren */
    /* justify-content: space-between; */ /* Entfernen oder auskommentieren */
    text-align: center; /* Sicherstellen, dass der Inhalt zentriert ist, falls nicht schon im header */
}

.container5 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 170px 40px 30px;
    /* display: flex; */ /* Entfernen oder auskommentieren */
    /* justify-content: space-between; */ /* Entfernen oder auskommentieren */
    text-align: center; /* Sicherstellen, dass der Inhalt zentriert ist, falls nicht schon im header */
}

.container6 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 170px 40px 30px;
    /* display: flex; */ /* Entfernen oder auskommentieren */
    /* justify-content: space-between; */ /* Entfernen oder auskommentieren */
    text-align: center; /* Sicherstellen, dass der Inhalt zentriert ist, falls nicht schon im header */
}

header {
    text-align: center;
    padding: 20px 0;
    background-color: #1e3a8a; /* Dunkles Blau als Akzent */
    color: #ffffff; /* Weiße Schrift für Kontrast */
    position: relative;
}

header a {
    color: #ffffff;
    text-decoration: none;
}

header a:focus {
    outline: 3px solid #ffd700; /* Goldener Fokus für Barrierefreiheit */
    outline-offset: 2px;
}

header img {
    max-height: 100px; /* Anpassbare Höhe für das Logo */
    vertical-align: middle;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: #93c5fd; /* Helles Blau für Navigation */
    padding: 10px 0;
}

nav ul li a {
    text-decoration: none;
    color: #0d1b3f;
    padding: 5px 10px;
}

nav ul li a.active {
    font-weight: bold;
    /*border-bottom: 2px solid #1e3a8a;
    background-color: #bfdbfe; Leichtes Blau als Hervorhebung */
}

nav ul li a:focus {
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}

.sidebar {
    width: 20%;
    padding: 20px;
    background-color: #f3f4f6; /* Helles Grau für Sidebar */
}

.content {
    width: 75%;
    padding: 20px;
    margin-top: 0;
    background-color: #ffffff; /* Weißer Hintergrund für Inhalt */
}

.flag {
    margin: 5px;
    transition: transform 0.2s;
}

.flag:focus {
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}

.form table {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    border-collapse: collapse;
}

.form input, .form textarea, .form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 2px solid #1e3a8a; /* Dunkles Blau für Formulare */
}

.form .butt {
    padding: 10px 20px;
    background-color: #1e3a8a;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.form .butt:focus {
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }
    .container3 {
        max-width: 100%;
        padding: 10px;
    }
    .container1 {
        max-width: 100%;
        padding: 10px;
        text-align: center;
    }
    .sidebar {
        width: 100%;
        padding: 10px;
    }
    .content {
        width: 100%;
        padding: 10px;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px;
    }
    header img {
        max-height: 80px; /* Kleinere Logo-Größe auf Mobilgeräten */
    }
}