/* Grundlegende Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background-color: #282c34; /* Dunkler Hintergrund */
    color: #e6e6e6; /* Helle Textfarbe für Kontrast */
}

.container {
    width: 90%; /* Etwas breiterer Container */
    max-width: 1200px; /* Maximale Breite, um Lesbarkeit auf großen Bildschirmen zu gewährleisten */
    margin: 30px auto; /* Etwas Abstand oben/unten, zentriert */
    overflow: hidden;
    padding: 0 20px; /* Innenabstand für kleinere Bildschirme */
}

/* Header-Bereich (Desktop-Standard) */
header {
    background: #1e2126;
    color: #61dafb;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Für Hamburger-Menü Positionierung */
    z-index: 1001; /* Stellt sicher, dass der Header über dem Inhalt liegt */
}

.header-content {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    justify-content: flex-start;
    padding-left: 15px;
    box-sizing: border-box;
}

.site-logo {
    height: 60px;
    width: auto;
    margin-right: 20px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-title h1 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    font-size: 2.5em;
    text-align: left;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.site-title p {
    font-size: 1em;
    color: #f0f0f0;
    margin: 0;
    text-align: left;
}

/* Navigation (Desktop-Standard) */
.desktop-nav { /* Neue Klasse für Desktop-Navigation */
    background: #3a3f44;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    position: sticky;
    top: 0;
    display: block; /* SICHERSTELLEN, DASS ES AUF DESKTOP SICHTBAR IST */
}

.desktop-nav a { /* Für Links in der Desktop-Navigation */
    color: #e6e6e6;
    text-decoration: none;
    padding: 0.8rem 20px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.desktop-nav a:hover {
    background-color: #61dafb;
    color: #1e2126;
    text-decoration: none;
}

/* Hamburger-Menü-Icon (Standardmäßig auf Desktop ausgeblendet) */
.menu-toggle {
    display: none;
}

/* Mobiles Navigationsmenü (Standardmäßig auf Desktop ausgeblendet) */
.mobile-nav {
    display: none;
}


/* Hauptinhaltsbereich */
.main-content {
    background: #33373d;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.main-content p {
    margin-bottom: 1em;
}

.main-content ul {
    /* WICHTIG: Wenn Sie auf bestimmten Listen KEINE Punkte wollen, müssen Sie eine spezifischere Klasse verwenden! */
    list-style-type: disc; /* Standard Aufzählungszeichen */
    margin-left: 20px;
    color: #ccc; /* Etwas helleres Grau für Listenpunkte */
}

.main-content ul li {
    margin-bottom: 10px;
}

.main-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: #61dafb;
    border-bottom: 2px solid #61dafb;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 2.2em; /* Desktop-Größe */
}

.main-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: #4CAF50;
    margin-top: 35px;
    border-bottom: 1px dashed #4CAF50;
    padding-bottom: 5px;
    font-size: 1.6em;
}

.main-content ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #ccc;
}

.main-content ul li {
    margin-bottom: 8px;
}

.main-content strong {
    color: #FFD700;
}

.main-content a {
    color: #61dafb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-content a:hover {
    color: #4CAF50;
    text-decoration: underline;
}

/* Spezifische Lernfeld-Abschnitte */
.lernfeld-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

hr {
    border: 0;
    height: 2px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(97, 218, 251, 0.3), rgba(0, 0, 0, 0));
    margin: 50px 0;
}

.lernfeld-section h4 {
    font-family: 'Montserrat', sans-serif;
    color: #1E88E5; /* Dies war ein blauer Ton, den Sie vorher hatten */
    margin-bottom: 10px;
    font-size: 1.4em;
}

/* Kontaktseite spezifische Styles */
.contact-info p {
    margin-bottom: 15px;
}

.contact-info strong {
    color: #61dafb;
}

form {
    margin-top: 30px;
    padding: 25px;
    background-color: #2c3038;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #f0f0f0;
}

form input[type="text"],
    form input[type="email"],
        form textarea {
            width: calc(100% - 20px);
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #444;
            border-radius: 4px;
            background-color: #3e444b;
            color: #e6e6e6;
            outline: none;
        }

        form input[type="text"]:focus,
            form input[type="email"]:focus,
                form textarea:focus {
                    border-color: #61dafb;
                    box-shadow: 0 0 5px rgba(97, 218, 251, 0.5);
                }

                form textarea {
                    resize: vertical;
                    min-height: 120px;
                }

                form button {
                    background-color: #61dafb;
                    color: #1e2126;
                    padding: 12px 25px;
                    border: none;
                    border-radius: 4px;
                    cursor: pointer;
                    font-size: 1.1em;
                    font-weight: bold;
                    transition: background-color 0.3s ease, transform 0.2s ease;
                }

                form button:hover {
                    background-color: #4CAF50;
                    transform: translateY(-2px);
                }

                /* Footer-Bereich (Dein Original-Design) */
                footer {
                    text-align: center;
                    padding: 25px;
                    background: #1e2126;
                    color: #aaa;
                    margin-top: 40px;
                    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
                    font-size: 0.9em;
                }

                /* Custom Icons für Listen */
                .icon-list {
                    list-style: none;
                    padding-left: 0;
                    margin-left: 0;
                }

                .icon-list li {
                    display: flex;
                    align-items: center;
                    margin-bottom: 12px;
                }

                .icon-list li i {
                    margin-right: 15px;
                    font-size: 1.2em;
                    width: 25px;
                    text-align: center;
                }

                /* Farben für die Icons */
                .icon-color-green {
                    color: #4CAF50;
                }

                .icon-color-yellow {
                    color: #FFD700;
                }

                .icon-color-blue {
                    color: #61dafb;
                }

                /* Linktree Section Styles */
                .linktree-section {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 20px;
                    margin-top: 30px;
                    padding: 20px;
                    background-color: #2c3038;
                    border-radius: 10px;
                    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
                    border: 1px solid rgba(255, 255, 255, 0.08);
                }

                .linktree-item {
                    display: flex;
                    align-items: center;
                    background-color: #3e444b;
                    color: #e6e6e6;
                    padding: 15px 20px;
                    border-radius: 8px;
                    text-decoration: none;
                    font-weight: bold;
                    font-size: 1.1em;
                    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
                    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
                }

                .linktree-item i {
                    margin-right: 15px;
                    font-size: 1.4em;
                    color: #61dafb;
                }

                .linktree-item:hover {
                    background-color: #4CAF50;
                    color: #1e2126;
                    transform: translateY(-3px);
                    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
                }

                /* Responsivität für Linktree */
                @media (max-width: 600px) {
                    .linktree-section {
                        grid-template-columns: 1fr;
                    }
                    .linktree-item {
                        font-size: 1em;
                        padding: 12px 15px;
                    }
                    .linktree-item i {
                        font-size: 1.2em;
                    }
                }

                /* Styles für das Profilbild und Kontaktdaten auf der Kontaktseite */
                .profile-display {
                    display: flex;
                    align-items: center;
                    gap: 30px;
                    margin-bottom: 40px;
                    padding: 20px;
                    background-color: #2c3038;
                    border-radius: 8px;
                    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
                    border: 1px solid rgba(255, 255, 255, 0.08);
                }

                .profile-image img {
                    width: 150px;
                    height: 150px;
                    border-radius: 50%;
                    object-fit: cover;
                    border: 3px solid #61dafb;
                    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
                }

                .contact-info {
                    flex-grow: 1;
                }

                .contact-info p {
                    margin-bottom: 10px;
                    font-size: 1.1em;
                }

                .contact-info strong {
                    color: #4CAF50;
                }

                /* Styling für den Welcome-Bereich mit Icon */
                .welcome-section-header {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-bottom: 20px;
                }

                /* Hier Anpassung der h2-Größe für Welcome-Sektion auf Mobilgeräten */
                .welcome-section-header h2 {
                    border-bottom: none;
                    padding-bottom: 0;
                    margin-bottom: 0;
                    margin-right: 15px;
                    text-align: left;
                    white-space: nowrap; /* Standardmäßig kein Zeilenumbruch */
                    /* overflow: hidden; */ /* Nur wenn Text abgeschnitten werden soll */
                    /* text-overflow: ellipsis; */ /* Nur wenn Text abgeschnitten werden soll */
                }

                .welcome-icon {
                    width: 150px;
                    height: auto;
                    vertical-align: middle;
                    border-radius: 50%;
                    object-fit: cover;
                }

                /* Konfigurator-spezifische Stile (Angepasst an dein dunkles Theme) */
                .konfigurator-section {
                    background-color: #2c3038;
                    border: 1px solid rgba(255, 255, 255, 0.08);
                    border-radius: 10px;
                    padding: 30px;
                    margin-bottom: 25px;
                    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
                }

                .konfigurator-section h3 {
                    color: #61dafb;
                    font-family: 'Montserrat', sans-serif;
                    margin-top: 0;
                    margin-bottom: 20px;
                    font-size: 2em; /* Desktop-Größe */
                    border-bottom: 2px solid #61dafb;
                    padding-bottom: 10px;
                    text-align: left;
                    white-space: nowrap; /* Standardmäßig kein Zeilenumbruch */
                }

                .konfigurator-section label {
                    display: block;
                    margin-bottom: 10px;
                    font-weight: bold;
                    color: #f0f0f0;
                    font-size: 1.1em;
                }

                .konfigurator-section select {
                    width: 100%;
                    padding: 12px 15px;
                    border: 1px solid #444;
                    border-radius: 8px;
                    font-size: 1em;
                    background-color: #3e444b;
                    color: #e6e6e6;
                    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    appearance: none;
                    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2361dafb%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-6.5%200-12.3%203.2-16.1%208.1-3.9%204.9-4.7%2011.6-2.6%2017.6l139%20223.9c1.7%202.9%204.2%205.2%207.1%206.7%202.9%201.5%206.2%202.3%209.4%202.3s6.5-.8%209.4-2.3c2.9-1.5%205.4-3.8%207.1-6.7l139-223.9c2.1-6-.7-12.7-4.6-17.6z%22%2F%3E%3C%2Fsvg%3E');
                    background-repeat: no-repeat;
                    background-position: right 15px center;
                    background-size: 14px;
                    cursor: pointer;
                    transition: border-color 0.3s ease, box-shadow 0.3s ease;
                }

                .konfigurator-section select:focus {
                    border-color: #4CAF50;
                    outline: none;
                    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
                }

                .selected-component-details {
                    background-color: #3e444b;
                    border-left: 5px solid #4CAF50;
                    padding: 20px;
                    margin-top: 25px;
                    border-radius: 8px;
                    color: #e6e6e6;
                    box-shadow: inset 0 0 8px rgba(0,0,0,0.3);
                    position: relative;
                    padding-left: 60px;
                }

                .selected-component-details::before {
                    content: '\f058';
                    font-family: 'Font Awesome 6 Free';
                    font-weight: 900;
                    position: absolute;
                    left: 20px;
                    top: 50%;
                    transform: translateY(-50%);
                    font-size: 2em;
                    color: #4CAF50;
                    border-right: 2px solid rgba(255, 255, 255, 0.1);
                    padding-right: 15px;
                }

                /* Spezifische Icons für verschiedene Komponententypen */
                .selected-component-details.cpu-details::before { content: '\f2db'; }
                .selected-component-details.mainboard-details::before { content: '\f109'; }
                .selected-component-details.ram-details::before { content: '\f538'; }
                .selected-component-details.gpu-details::before { content: '\f1b0'; }
                .selected-component-details.netzteil-details::before { content: '\f0e7'; }

                /* Responsivität für Header und Navigation (Mobile Ansicht) */
                @media (max-width: 768px) {
                    /* Header-Anpassung für schmale Leiste */
                    header {
                        height: 60px;
                        padding: 0 15px;
                        justify-content: space-between;
                        align-items: center;
                    }

                    .header-content {
                        flex-direction: row;
                        justify-content: flex-start;
                        width: auto;
                        padding-left: 0;
                        flex-grow: 1;
                    }

                    .site-logo {
                        display: block;
                        height: 40px;
                        margin-right: 10px;
                    }

                    .site-title {
                        text-align: left;
                        flex-grow: 1;
                    }

                    .site-title h1 {
                        font-size: 1.5em;
                        margin: 0;
                        text-align: left;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }

                    .site-title p {
                        display: none;
                    }

                    /* Hamburger-Menü-Icon */
                    .menu-toggle {
                        display: block;
                        font-size: 1.8em;
                        color: #61dafb;
                        cursor: pointer;
                        padding: 10px;
                        background-color: transparent;
                        border: none;
                        position: absolute;
                        top: 50%;
                        right: 15px;
                        transform: translateY(-50%);
                        z-index: 1002;
                    }

                    /* Desktop-Navigation auf Mobile ausblenden */
                    .desktop-nav {
                        display: none;
                    }

                    /* Mobiles Dropdown-Menü */
                    .mobile-nav {
                        display: none; /* Standardmäßig ausgeblendet, wird durch JS getoggelt */
                        position: absolute;
                        top: 60px; /* Unter dem Header beginnen (Höhe des mobilen Headers) */
                        right: 0;
                        width: 250px;
                        max-width: 80%; /* Oder maximal 80% des Bildschirms, falls 250px zu viel sind */
                        background-color: #3a3f44;
                        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
                        z-index: 1000; /* Unter dem Header, aber über dem Inhalt */
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        border-radius: 0 0 8px 8px;
                        overflow: hidden;
                    }

                    .mobile-nav.open {
                        display: block;
                    }

                    .mobile-nav li a {
                        display: block;
                        padding: 15px 20px;
                        color: #e6e6e6;
                        text-decoration: none;
                        text-align: left;
                        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                        transition: background-color 0.3s ease, color 0.3s ease;
                    }

                    .mobile-nav li:last-child a {
                        border-bottom: none;
                    }

                    .mobile-nav li a:hover {
                        background-color: #61dafb;
                        color: #1e2126;
                    }

                    /* NEUE REGELN FÜR DIE HAUPTÜBERSCHRIFTEN IM INHALT */
                    .main-content h2 {
                        font-size: 1.8em; /* Kleinere Schriftgröße für mobile Ansicht */
                        text-align: center; /* Zentrierung für bessere Optik auf kleinen Bildschirmen */
                        white-space: normal; /* Erlaubt Zeilenumbrüche */
                        word-wrap: break-word; /* Stellt sicher, dass lange Wörter umbrechen */
                        overflow-wrap: break-word; /* Modernere Alternative zu word-wrap */
                    }

                    /* Anpassung für die Welcome-Sektion, um sicherzustellen, dass der Titel passt */
                    .welcome-section-header {
                        flex-direction: column; /* Icon und Text untereinander auf kleinen Bildschirmen */
                        text-align: center;
                    }
                    .welcome-section-header h2 {
                        font-size: 1.8em; /* Auch hier anpassen */
                        margin-right: 0; /* Entfernt eventuellen Margin, der Überlauf verursachen könnte */
                        white-space: normal; /* Erlaubt Umbruch */
                        word-wrap: break-word;
                        overflow-wrap: break-word;
                    }
                    .welcome-icon {
                        width: 110px;
                        border-radius: 50%;
                        object-fit: cover;
                    }

                    /* Responsivität für Profilbild auf Kontaktseite (wenn es auf mobile zu breit war) */
                    .profile-display {
                        flex-direction: column;
                        text-align: center;
                        gap: 20px;
                    }
                    .profile-image {
                        margin-bottom: 0;
                    }
                    .profile-image img {
                        width: 120px;
                        height: 120px;
                    }

                    /* NEUE REGEL FÜR h3 IM MAIN-CONTENT AUF MOBILE */
                    .main-content h3 {
                        font-size: 1.3em; /* Kleinere Schriftgröße für h3 auf Mobilgeräten */
                        white-space: normal; /* Erlaubt Zeilenumbrüche */
                        word-wrap: break-word;
                        overflow-wrap: break-word;
                        text-align: left; /* Behält die Ausrichtung bei, falls nicht zentriert gewünscht */
                    }
                }

                /* Responsivität für Container auf sehr kleinen Bildschirmen */
                @media (max-width: 480px) {
                    .container {
                        padding: 0 10px;
                    }
                    /* Eventuell noch kleinere Schriftgrößen für extrem schmale Bildschirme */
                    .main-content h2, .welcome-section-header h2 {
                        font-size: 1.5em; /* Noch kleiner für sehr schmale Ansichten */
                    }
                    .main-content h3 {
                        font-size: 1.2em; /* Auch h3 noch kleiner für sehr schmale Ansichten */
                    }
                }

                /* --- NEUE STILE FÜR IT-TIPPS & FRAGEN SEITE (UND QUIZ) --- */
                /* Diese Stile können auch für Quiz-Optionen angewendet werden,
                 *  wenn die entsprechenden Klassen im HTML gesetzt werden. */

                /* Spezifische Liste ohne Standard-Bulletpoints, z.B. für Quiz-Optionen oder Listen,
                 *  bei denen der Punkt nicht erwünscht ist. */
                .quiz-options-list { /* Diesen Klassennamen auf das <ul>-Element anwenden, das die Antwortoptionen enthält */
                    list-style-type: none; /* Entfernt den Bulletpoint */
                    padding-left: 0;      /* Entfernt den Standard-Einzug */
                    margin-left: 0;       /* Entfernt den Standard-Außenabstand */
                }


                /* Bereich für Frage/Antwort-Formular */
                .question-form-section {
                    margin-top: 30px;
                    padding: 25px;
                    background-color: #2c3038;
                    border-radius: 8px;
                    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
                    border: 1px solid rgba(255, 255, 255, 0.08);
                }

                .question-form-section h3 {
                    color: #61dafb; /* Akzentfarbe für Überschrift */
                    border-bottom: 2px solid #61dafb;
                    padding-bottom: 10px;
                    margin-bottom: 20px;
                }

                .question-form-section form label {
                    font-weight: bold;
                    color: #f0f0f0;
                    margin-bottom: 8px;
                    display: block;
                }

                .question-form-section form input[type="text"],
.question-form-section form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px; /* Etwas weniger Abstand */
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #3e444b;
    color: #e6e6e6;
    outline: none;
}

.question-form-section form input[type="text"]:focus,
.question-form-section form textarea:focus {
    border-color: #4CAF50; /* Grün beim Fokus */
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.question-form-section form button[type="submit"] {
    background-color: #61dafb;
    color: #1e2126;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.question-form-section form button[type="submit"]:hover {
    background-color: #4CAF50;
    transform: translateY(-2px);
}

/* Liste der Fragen und Antworten */
.questions-list-section {
    margin-top: 30px;
}

.questions-list-section h3 {
    color: #61dafb; /* Akzentfarbe für Überschrift */
    border-bottom: 2px solid #61dafb;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.question-item {
    background-color: #2c3038;
    padding: 25px;
    margin-bottom: 30px; /* Abstand zwischen den Fragen */
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.question-item h4 {
    color: #FFD700; /* Gold für Frage-Titel */
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 10px;
}

.question-meta {
    font-size: 0.9em;
    color: #aaa;
    margin-bottom: 15px;
}

.question-meta strong {
    color: #ccc;
}

.question-content {
    color: #e6e6e6;
    margin-bottom: 20px;
}

/* Antworten-Bereich */
.answers-section {
    background-color: #33373d; /* Etwas dunkler als Frage-Item */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 20px;
    margin-top: 20px;
}

.answers-section h5 {
    color: #4CAF50; /* Grün für Antworten-Überschrift */
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(76, 175, 80, 0.3);
    padding-bottom: 5px;
}

.answer-item {
    background-color: #3e444b; /* Noch dunkler als answers-section, aber heller als Hintergrund */
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.answer-meta {
    font-size: 0.85em;
    color: #bbb;
    margin-bottom: 5px;
}

.answer-meta strong {
    color: #ddd;
}

.answer-content {
    color: #e6e6e6;
}

.no-answers {
    font-style: italic;
    color: #aaa;
    margin-left: 20px;
}

/* Formular zum Antworten */
.answer-form {
    margin-top: 20px;
    padding: 20px;
    background-color: #3e444b;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.answer-form h6 {
    color: #FFD700; /* Gold für Antworten-Form-Überschrift */
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 15px;
}

.answer-form label {
    font-weight: bold;
    color: #f0f0f0;
    margin-bottom: 8px;
    display: block;
}

.answer-form input[type="text"],
.answer-form textarea {
    width: calc(100% - 20px);
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #4a5059; /* Dunkler als Eingabefeld oben, um sich abzuheben */
    color: #e6e6e6;
    outline: none;
}

.answer-form button[type="submit"] {
    background-color: #4CAF50; /* Grün für Antworten-Button */
    color: #1e2126;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.answer-form button[type="submit"]:hover {
    background-color: #61dafb; /* Türkis beim Hover */
    transform: translateY(-2px);
}

/* Erfolgs- und Fehlermeldungen */
.success-message {
    color: #4CAF50; /* Grün */
    background-color: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.error-message {
    color: #FF0000; /* Rot */
    background-color: rgba(255, 0, 0, 0.2);
    border: 1px solid #FF0000;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}
