/* Grunddesign für die gesamte Seite */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f5;
    color: #333;
}

/* Header Styling */
header {
    background: linear-gradient(135deg, #0066ff, #003366);
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    letter-spacing: 2px;
}

/* Navigation Styling */
nav {
    background-color: #004080;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #00ccff;
}

/* Container für Seiteninhalt */
.container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Überschriftenstil */
h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #004080;
    border-bottom: 2px solid #00ccff;
    padding-bottom: 10px;
}

/* Links in der Container-Bereich */
ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    padding: 10px 0;
}

ul li a {
    text-decoration: none;
    font-size: 1.1rem;
    color: #0066cc;
    transition: color 0.3s, padding-left 0.3s;
}

ul li a:hover {
    color: #003366;
    padding-left: 10px;
}

/* Footer Styling */
footer {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 15px;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

/* Schattierungen und Abgerundete Kanten für Buttons oder spezielle Inhalte */
.button, .highlight {
    background-color: #0066cc;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

.button:hover, .highlight:hover {
    background-color: #003366;
    transform: translateY(-3px);
    cursor: pointer;
}

/* Responsive Design: Für kleinere Bildschirme */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    .container {
        padding: 20px;
    }

    header h1 {
        font-size: 2rem;
    }

    nav a {
        margin: 10px 0;
        font-size: 1rem;
    }
}
.gsc-input {
            width: 200px; /* Ändere die Breite nach Bedarf */
            height: 30px; /* Ändere die Höhe nach Bedarf */
            font-size: 14px; /* Schriftgröße anpassen */
        }
        
        /* Optional: Setze die Breite und das Aussehen des Suchbuttons */
        .gsc-search-button {
            height: 30px; /* Höhe des Suchbuttons anpassen */
            font-size: 14px; /* Schriftgröße anpassen */
        }
        
        /* Optional: Verstecke die Standard-Autocomplete-Funktion */
        .gsc-autocomplete {
            display: none; /* Versteckt die Autocomplete-Liste */
        }
