/* Grundlegendes Layout */
        body {
            font-family: Arial, sans-serif;
            background-color: #f0f2f5;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* Header-Styling */
        header {
            background-color: #333;
            color: white;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-logo img {
            max-width: 100%;
        }
        .header-nav a {
            color: white;
            text-decoration: none;
            margin-left: 1.5rem;
            font-weight: bold;
        }

        /* Hauptinhalt-Container */
        .main-container {
            width: 100%;
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
            flex-grow: 1;
        }
        
        /* Textbereich */
        .text-area {
            background-color: #e9ecef;
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            text-align: center;
        }

        /* Container für die Suchboxen */
        .search-box-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .search-box-container .container {
            flex: 1;
            min-width: 300px; 
        }
        
        /* Box-Styling */
        .container {
            background-color: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 600px;
        }
        h1 {
            text-align: center;
            color: #333;
        }
        #chat-form {
            display: flex;
            margin-top: 20px;
        }
        #chat-input {
            flex-grow: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        #chat-button {
            padding: 10px 15px;
            border: none;
            background-color: #007bff;
            color: white;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            margin-left: 10px;
        }
        #chat-button:hover {
            background-color: #0056b3;
        }
        #chat-response {
            margin-top: 20px;
            padding: 15px;
            background-color: #e9ecef;
            border-radius: 5px;
            white-space: pre-wrap;
            word-wrap: break-word;
        }

        /* Footer-Styling */
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 1rem 0;
            margin-top: auto; 
        }
        
        /* Nach oben-Button-Styling */
        #scrollToTopBtn {
            display: none; 
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 99;
            border: none;
            outline: none;
            background-color: #007bff;
            color: white;
            cursor: pointer;
            padding: 15px;
            border-radius: 50%;
            font-size: 18px;
            transition: opacity 0.3s;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        #scrollToTopBtn:hover {
            background-color: #0056b3;
        }

        /* Cookie-Banner-Styling */
        #cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #fff;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            padding: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            z-index: 100;
        }
        .cookie-button {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 10px;
        }
        #accept-cookies {
            background-color: #007bff;
            color: white;
        }
        #decline-cookies {
            background-color: #f0f0f0;
            color: #333;
        }
        #revoke-consent, #cache-reset {
            background-color: #dc3545;
            color: white;
        }
        
        .settings-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        /* Mobile-Menü-Styling */
        .menu-toggle {
            display: none; /* Auf Desktop ausgeblendet */
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 101;
        }

        @media (max-width: 768px) {
            header {
                flex-wrap: wrap;
                justify-content: space-between;
                padding: 1rem;
            }
            .header-nav {
                display: none; /* Standardmäßig auf Mobilgeräten ausgeblendet */
                flex-direction: column;
                width: 100%;
                text-align: center;
                background-color: #444;
                padding: 1rem 0;
                margin-top: 1rem;
            }
            .header-nav.active {
                display: flex;
            }
            .header-nav a {
                margin: 0.5rem 0;
            }
            .menu-toggle {
                display: block; /* Auf Mobilgeräten anzeigen */
            }
        }