/* In ../css/support_inbox.css oder einer neuen CSS-Datei für das Chat-Widget */

#support-container { /* Der Hauptcontainer für das Support-Chat-Widget */
    height: calc(100dvh - 120px);
    width:100%;
    max-width:500px;
    margin:0 auto;
    background-color: #fff;
    /* border-radius: 8px; */
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;*/
    z-index: 1000;
}

.support-chat-widget {
    display: flex;
    flex-direction: column;
    height: 100%; /* Füllt den #support-container */
}

.chat-header {
    background: linear-gradient(135deg, #fff, var(--support-bg-header)); /* Heller Mint-Gradient wie im Screenshot */
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.loggedin .chat-header {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.chat-header .header-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-header .logo {
    height: 30px; /* Anpassen */
    width: auto;
    margin-right: 12px;
}

.chat-header .header-text h2 {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 600;
    color: var(--support-header-text);
}

.chat-header .header-text p {
    margin: 0;
    font-size: 20px;
    color: var(--support-header-text);
}

.chat-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: #f7f9fa; /* Sehr heller Hintergrund für den Body */
}


/* NEU oder angepasst: Container für den linken Textteil */
.start-conversation-prompt .prompt-content {
    display: flex;
    flex-direction: column; /* Titel und Antwortzeit untereinander */
    flex-grow: 1; /* Nimmt den verfügbaren Platz ein, drückt den Pfeil nach rechts */
}


#start-new-support-message-link:hover .prompt-title {
    color:var(--rot);
}


.message-list-area {
    /* Stile für Nachrichten (aus support_inbox.css ggf. übernehmen/anpassen) */
    padding-bottom: 10px; /* Platz für die letzte Nachricht über dem Eingabefeld */
}
/* Beispiel Nachricht-Styling (kannst du aus deinem Support-Postfach CSS nehmen und anpassen) */
.message-list-area .message { margin-bottom: 10px; display: flex; }
.message-list-area .message.sent { flex-direction: row-reverse; }
.message-list-area .message-bubble {
    padding: 8px 12px; border-radius: 15px; max-width: 70%;
    font-size: 14px; line-height: 1.4;
}
.message-list-area .message.received .message-bubble { background-color: #e9ecef; border-top-left-radius: 3px;}
.message-list-area .message.sent .message-bubble { background-color: var(--rot); color: white; border-top-right-radius: 3px;}
.message-list-area .message-timestamp { font-size: 11px; color: #888; margin: 5px 10px 0 10px; }


.chat-footer, .chat-nav-footer {
    padding: 10px 15px;
    border-top: 1px solid #e0e0e0;
    background-color: #fff;
}

#support-chat-composer-area { /* Der Footer mit dem Texteingabefeld */
    display: flex;
    align-items: flex-end; /* Buttons und Textarea unten ausrichten */
}

#support-reply-textarea {
    flex-grow: 1;
    border: 1px solid #ccc;
    border-radius: 20px; /* Abgerundete Ecken */
    padding: 10px 15px;
    font-size: 14px;
    resize: none; /* Keine manuelle Größenänderung */
    min-height: 10px; /* Mindesthöhe, damit es nicht zu klein wird */
    max-height: 100px; /* Maximale Höhe, bevor gescrollt wird */
    overflow-y: auto;
    line-height: 1.4;
    margin-right: 10px;
}

.composer-actions {
    display: flex;
    align-items: center; /* Icons vertikal zentrieren */
}

.composer-actions .action-btn, .composer-actions .send-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #555;
}
.composer-actions .action-btn svg, .composer-actions .send-btn svg { /* Falls du SVGs für die Buttons nutzt */
    width: 22px; height: 22px; display:block;
}
.composer-actions .action-btn:hover, .composer_actions .send-btn:hover { color: var(--rot); }
.composer-actions .send-btn { font-size: 20px; color: var(--rot); } /* Senden-Pfeil größer/farbig */


.chat-nav-footer { /* Der Footer mit Home/Nachrichten Buttons */
    display: flex;
    justify-content: space-around;
}

.chat-nav-footer .nav-btn {
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    border-radius: 4px;
}
.chat-nav-footer .nav-btn svg {
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
    fill: currentColor;
}
.chat-nav-footer .nav-btn.active {
    color: var(--rot); /* Aktiver Button */
}
.chat-nav-footer .nav-btn:hover {
    background-color: #f0f0f0;
}



#support-container .support-chat-widget { /* Stellt sicher, dass das Widget den Container füllt */
    position:relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%; /* Fügt hinzu, um sicherzustellen, dass es die Breite des Containers nutzt */
    background-color: #fff; /* Standard-Hintergrund für das Widget selbst */
    border-radius: inherit; /* Übernimmt den Radius vom #support-container, falls dort gesetzt */
}

/* --- Header-Stile (innerhalb des Widgets) --- */
#support-container .chat-header { /* Basis für beide Header-Typen */
    padding: 20px 20px 80px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-start;
    height:30%;
    /* border-top-left-radius und border-top-right-radius vom #support-container übernehmen lassen oder hier setzen */
}

#support-chat-body-home {
    margin-top: -50px;
}

/* "Home"-Header des Widgets (der mit dem großen Hilfe-Icon und Mint-Gradient) */
#support-container #support-chat-home-header {
    /* Dein Gradient: background: linear-gradient(135deg, #fff, var(--kapitel-anzeige)); */
    /* Alternativer, etwas sanfterer Gradient, falls --kapitel-anzeige sehr kräftig ist: */
    background: linear-gradient(135deg, var(--support-bg-header0,#fff), var(--support-bg-header1), var(--support-bg-header, #e0f2f7));
    color: var(--support-header-headl, #003c42); /* Dunklere Farbe für guten Kontrast auf hellem Gradient */
    border-bottom: 1px solid #d0e0e3; /* Leichte Trennlinie */
}

#support-container #support-chat-home-header .header-info {
    display: flex;
    align-items: center;
    gap: 10px; /* Dein Gap */
}

#support-container #support-chat-home-header #chat-widget-icon-home { /* Dein .undo-btn Container */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; /* Deine Größe oder angepasst */
    height: 36px;
}
#support-container #support-chat-home-header #chat-widget-icon-home svg path.efot {
    fill: var(--titel-blau, #003c42); /* Passend zur Header-Textfarbe */
}
#support-container #support-chat-home-header #chat-widget-icon-home svg {
    width: 100%; /* SVG füllt den Wrapper */
    height: 100%;
}

#support-container .chat-header .close-chat-btn { /* Gilt für beide Schließen-Buttons in Headern */
    height: 30px;
    display: flex;
    border-radius: 50px;
    background-color: var(--support-bg-close-chat);
    top: 40px;
    right: 40px;
    position: absolute;
    /* background: none; */
    border: none;
    font-size: 25px;
    font-weight: normal;
    color: var(--support-close-chat-text);
    cursor: pointer;
    width: 30px;
    line-height: 1;
    opacity: 0.9;
    justify-content: center;
    align-items: flex-start;
}
#support-container .chat-header .close-chat-btn:hover { opacity: 1; }


/* Konversations-Header (der weiße Header mit Zurück-Button und Team-Avataren) */
#support-container #support-chat-conversation-header {
    border-radius: 0;
    flex-direction: row;
    background: #eee;
    border-bottom: 1px solid #e8e8e8;
    padding: 10px 12px;
    color: #444;
}

#support-container .conversation-view-header .back-btn {
    background: none; border: none; color: inherit;
    cursor: pointer; padding: 8px; margin-right: 8px; /* Dein Margin */
    display: flex; align-items: center; justify-content: center;
}
#support-container .conversation-view-header .back-btn svg {
    width: 22px; height: 22px; fill: currentColor;
}

#support-container .conversation-view-header .header-team-info { display: flex; align-items: center; flex-grow: 1; }
#support-container .conversation-view-header .avatar-stack { display: flex; margin-right: 10px; }
#support-container .conversation-view-header .avatar-initials {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; border-radius: 50%;
    background-color: var(--titel-blau, #6c757d); /* Deine Farbe */
    color: white; font-size: 10px; font-weight: bold;
    margin-left: -10px; border: 1px solid white; /* Deine Border */
}
#support-container .conversation-view-header .avatar-stack .avatar-initials:first-child { margin-left: 0; }

#support-container .conversation-view-header .header-text { line-height: 1.3; }
#support-container .conversation-view-header .team-name {
    display: block; font-size: 14px; font-weight: 500; /* Etwas weniger fett */ color: #333;
}
#support-container .conversation-view-header .reply-time-indicator {
    display: block; font-size: 11px; color: #777;
}


/* --- Body-Stile (innerhalb des Widgets) --- */
#support-container .chat-body { /* Dies ist dein #support-chat-body-content */
    flex-grow: 1;
    overflow-y: visible;
    background-color: #fff; /* Standard-Hintergrund für den Nachrichtenverlauf */
    height:70%;
}

/* "Home"-Ansicht im Body */
.help-search-container, .start-conversation-prompt, .email-prompt-container {
    position: relative;
    box-sizing: border-box;
    overflow: visible;
    border: 1px solid rgb(229, 229, 229);
    padding: 12px !important;
    background: rgb(255, 255, 255);
    border-radius: 12px;
    box-shadow: rgba(9, 14, 21, 0.06) 0px 4px 28px 0px, rgba(9, 14, 21, 0.06) 0px 1px 4px 0px;
}


#support-container #start-new-support-message-link:hover .prompt-title { color:var(--rot, #d9534f); }

/* Konversations-/Sende-Ansicht im Body */
#support-container #support-chat-body-conversation .system-notice {
    padding: 10px 15px; 
    font-size: 12px; 
    color: #555;
    background-color: #f0f4f7; /* Sehr heller bläulicher Hintergrund */
    border-bottom: 1px solid #e0e6eb;
}

#support-container #support-chat-body-conversation .system-notice p {
    margin:0;
}

#support-container #support-chat-body-conversation .message-list-area {
    padding: 15px;
}
/* Nachricht-Styling (Deine Anpassungen für .message, .sent, .received, .message-bubble, .message-timestamp beibehalten) */
/* Beispiel, um sicherzustellen, dass es innerhalb von #support-container spezifisch ist: */
#support-container .message-list-area .message.sent .message-bubble {
    background-color: var(--rot, #d9534f); /* Deine Farbe */
    color: white;
    /* ... deine anderen Bubble-Stile ... */
}

#support-container .message-list-area .message.sent .message-bubble .message-attachments a {
    padding: 2px 10px;
    width: fit-content;
    border-radius: 10px;
    background-color: #fff;
    text-align: right;
    color: #333;
}

#support-container .message-list-area .message.received .message-bubble {
    background-color: #e9ecef; /* Standard Hellgrau */
    /* ... deine anderen Bubble-Stile ... */
}
#support-container .message-list-area .initial-bot-message .message-bubble {
    background-color: #f1f3f5; border: 1px solid #e9ecef; border-radius: 8px; color: #444;
}
#support-container .message-list-area .initial-bot-message .message-bubble p { margin: 0 0 10px 0; line-height: 1.5; }
#support-container .message-list-area .initial-bot-message .message-bubble p:last-child { margin-bottom: 0; }


/* --- Footer-Stile (innerhalb des Widgets) --- */
#support-container #support-chat-footer-wrapper {
    flex-shrink: 0;
    border-top: 1px solid #e0e0e0; /* Einheitliche Border für den gesamten Footer-Wrapper */
}

#support-container .chat-footer, /* #support-chat-composer-area */
#support-container .chat-nav-footer { /* #support-chat-nav-footer */
    padding: 10px 12px; /* Etwas weniger Padding */
    background-color: #f8f9fa; /* Dein Footer-Hintergrund */
    align-items: center;
    /* border-top wird vom Wrapper übernommen */
}

/* Composer-Footer */
#support-container #support-chat-composer-area {
    /* Dein display: flex; align-items: flex-end; bleibt */
}

#support-container #support-reply-textarea {
    /* Deine Stile für flex-grow, border, border-radius, padding, etc. bleiben */
    background-color: #fff;
    border-color: #ced4da; /* Etwas dunklere Border als Standard */
}

#support-container .composer-actions { /* Deine Stile bleiben */ }
#support-container .composer-actions .action-btn,
#support-container .composer-actions .send-btn {
    /* Deine Stile für background, border, cursor, padding bleiben */
    color: #6c757d; /* Standard-Icon-Farbe */
}
#support-container .composer-actions .action-btn svg,
#support-container .composer-actions .send-btn svg {
    width: 20px; height: 20px; display: block; fill: currentColor; /* Deine SVG-Größe */
}
#support-container .composer-actions .action-btn:hover {
    color: var(--rot, #c82333); /* Deine Hover-Farbe */
}
#support-container .composer-actions .send-btn {
    color: var(--rot, #007bff); /* Deine Senden-Farbe */
}


/* Navigations-Footer (Home/Nachrichten) */
#support-container #support-chat-nav-footer {
    /* Dein display: flex; justify-content: space-around; bleibt */
    background-color: #fff; /* Weißer Hintergrund für diesen speziellen Footer */
}

#support-container .chat-nav-footer .nav-btn {
    /* Deine Stile für background, border, color, cursor, padding, flex-direction etc. bleiben */
    color: #6c757d; /* Standard-Grau */
}
#support-container .chat-nav-footer .nav-btn svg {
    /* Deine SVG-Stile bleiben */
    fill: currentColor;
}
#support-container .chat-nav-footer .nav-btn.active {
    color: var(--rot, #007bff); /* Deine Akzentfarbe */
}
#support-container .chat-nav-footer .nav-btn:hover {
    color: var(--rot, #0056b3);
    background-color: #f8f9fa; /* Leichter Hover */
}

.chat-body-conversation .message {
    opacity: 1!important;
}

.message img {
    max-width:400px;
}

/* In support_chat.css */
.email-prompt-container {
    padding: 20px;
    text-align: center;
}
.email-prompt-container h4 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--titel-blau, #333);
}
.email-prompt-container p {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}
.email-prompt-container input[type="email"] {
    width: calc(100% - 22px); /* Berücksichtigt Padding */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
.email-prompt-container button {
    padding: 10px 20px;
    background-color: var(--rot, #007bff); /* Deine Akzentfarbe */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.email-prompt-container button:hover {
    opacity: 0.9;
}
.email-prompt-container .error-message {
    color: var(--rot, #d9534f);
    font-size: 12px;
    margin-top: 8px;
}

/* Styling für den gesamten "previous-conversations" Bereich */
.conversation-list { /* Dies ist dein <div id="support-previous-conversations" class="conversation-list"> */
    /* Hier kannst du generelle Styles für den Block einfügen, falls nötig,
       z.B. padding, wenn der h4 nicht schon genug hat */
}

.conversation-list h4 { /* Styling für die Überschrift "Ihre früheren Konversationen" */
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
    padding-left: 15px; /* Damit es mit den List Items bündig ist, falls die padding haben */
}

/* Styling für die ungeordnete Liste selbst */
#user-previous-conversations-list { /* Zielt direkt auf die ID deiner UL */
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    min-height:50px;
}

/* Styling für jedes Listenelement (li) */
.conversation-list-item {
    display: flex;
    align-items: center; /* Vertikale Zentrierung der direkten Kinder (Avatar, Details, Meta) */
    padding: 12px 15px;
    border-bottom: 1px solid #eaeaea; /* Etwas hellere Border */
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.conversation-list-item:last-child {
    border-bottom: none; /* Keine Border für das letzte Element */
}

.conversation-list-item:hover {
    background-color: #f5f7fa; /* Heller Hover-Effekt */
}

.conversation-list-item.active {
    background-color: #e9f2ff; /* Etwas anderer Blauton für aktiv */
}

.conversation-item-avatar {
    width: 36px;  /* Etwas kleiner für kompaktere Liste */
    height: 36px;
    border-radius: 50%;
    background-color: #007bff; /* Beispielhafte Primärfarbe */
    color: white;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500; /* Etwas weniger fett */
    font-size: 0.9em;
    flex-shrink: 0; /* Verhindert Schrumpfen des Avatars */
}

.conversation-item-details {
    flex-grow: 1;
    min-width: 0; /* Wichtig für Flexbox, damit text-overflow funktioniert */
    /* overflow: hidden; ist schon da, gut so */
}

.conversation-item-sender {
    display: block;
    font-weight: 600; /* Sender etwas hervorheben */
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.9em; /* Etwas kleiner für Kompaktheit */
    margin-bottom: 2px;
}

.conversation-item-subject { /* War vorher kombiniert mit Sender, jetzt separat für Feinjustierung */
    display: block;
    font-weight: normal; /* Betreff nicht fett */
    color: #444;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.85em; /* Betreff etwas kleiner */
    margin-bottom: 3px;
}

.conversation-item-preview {
    display: block;
    font-size: 0.8em; /* Vorschau noch etwas kleiner */
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* margin-top: 2px; war ok */
}

.conversation-item-meta {
    margin-left: 10px;
    text-align: right;
    font-size: 0.75em; /* Meta-Infos kleiner */
    color: #888;
    flex-shrink: 0;
    display: flex; /* Um den Indikator besser zu positionieren */
    flex-direction: column;
    align-items: flex-end; /* Text rechtsbündig, Indikator auch */
}

.conversation-item-time {
    display: block;
    white-space: nowrap; /* Verhindert Umbruch der Zeit */
}

.conversation-item-unread-indicator {
    display: inline-block; /* War schon ok, aber da es jetzt allein in meta steht, ggf. block wenn es unter der Zeit sein soll */
    width: 8px;
    height: 8px;
    background-color: #007bff;
    border-radius: 50%;
    margin-top: 5px; /* Mehr Abstand zur Zeit, wenn es darunter ist */
    /* margin-left: 5px; /* Nur wenn es neben der Zeit ist */
}

/* support_chat.css oder deine Haupt-CSS-Datei */
.custom-emoji-picker {
    display: none; /* Initial versteckt */
    position: absolute; /* Für die Positionierung */
    border: 1px solid #ccc;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px;
    width: 290px; /* Breite anpassen nach Bedarf */
    max-height: 200px; /* Maximale Höhe, danach scrollbar */
    overflow-y: auto;
    z-index: 1010; /* Muss über anderen Elementen im Chat liegen */
    box-sizing: border-box;

    /* Grid-Layout für die Emojis */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(32px, 1fr)); /* Responsive Spaltenanzahl */
    gap: 4px; /* Abstand zwischen den Emojis */
}

.custom-emoji-picker .emoji-char {
    cursor: pointer;
    padding: 5px;
    text-align: center;
    font-size: 22px; /* Größe der Emojis */
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.custom-emoji-picker .emoji-char:hover {
    background-color: #f0f0f0; /* Hover-Effekt */
}

.help-container {
    padding: 5px;
    border-radius: 50px;
    background-color: var(--support-header-headl);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Styling für die Suche */
.search-box-wrapper { position: relative; }

/* Ergebnisliste */
.search-results-list {
    margin-top: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    position: relative; /* Überlagert den Rest */
    width: 100%; /* Padding abziehen */
    z-index: 100;
}

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.1s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: #f5f5f5; }
.search-result-item .result-title { font-weight: 600; font-size: 14px; display: block; color: #333; }
.search-result-item .result-arrow { color: #ccc; font-size: 18px; }

/* Artikel Ansicht */
.chat-body-article { padding: 0 20px; background: #fff; overflow: hidden;}
.article-header-nav {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0; /* Sehr feine Linie */
}
#support-article-title { font-size: 18px; margin-bottom: 15px; color: #000; }
#support-article-body { font-size: 15px; line-height: 1.6; color: #444; }
#support-article-body img { max-width: 100%; height: auto; border-radius: 4px; }

/* Der Button selbst */
#support-close-article-btn {
    display: inline-flex;       /* Wichtig für Icon + Text Ausrichtung */
    align-items: center;        /* Vertikal zentrieren */
    background-color: transparent;
    border: none;
    color: #666;                /* Dezentere Farbe */
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 12px 8px 0;    /* Klickfläche vergrößern */
    transition: all 0.2s ease;
}

/* Das SVG Icon im Button */
#support-close-article-btn svg {
    fill: currentColor;         /* Nimmt die Textfarbe an */
    width: 20px;                /* Etwas kleiner für Eleganz */
    height: 20px;
    margin-right: 6px;
    transform: translateX(0);   /* Startposition für Animation */
    transition: transform 0.2s ease;
}

/* Hover-Effekte */
#support-close-article-btn:hover {
    color: var(--titel-blau, #000); /* Deine Primärfarbe oder Schwarz */
}

#support-close-article-btn:hover svg {
    transform: translateX(-3px); /* Kleiner "Pfeil bewegt sich"-Effekt */
}

/* 2. Layout & Trennung */

/* Container für die Suche etwas "luftiger" machen */
.help-search-container {
    padding: 0 5px; /* Seitenabstand leicht anpassen */
    margin-bottom: 40px; /* Großer Abstand nach unten zum nächsten Block */
    position: relative;
}

/* Das Suchfeld selbst als "Karte" stylen */
.search-box-wrapper input {
    width: 100%;
    padding: 16px 15px 16px 45px; /* Mehr Padding für "Karten"-Look */
    border: 1px solid transparent; /* Kein sichtbarer Rahmen im Normalzustand */
    border-radius: 12px;           /* Modernere Rundung */
    font-size: 15px;
    background-color: #fff;        /* Weißer Hintergrund */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); /* Sanfter Schatten lässt es schweben */
    transition: all 0.3s ease;
}


.search-box-wrapper input:focus {
    background-color: #fff;
    border-color: var(--titel-blau, #ccc);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* Stärkerer Schatten bei Fokus */
    outline: none;
}

.search-box-wrapper .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none; /* Klicks gehen durch das Icon */
}

/* --- 2. Der Bereich "Sende uns eine Nachricht" --- */
.start-conversation-prompt {
    margin-top: 20px; /* Zusätzlicher Abstand nach oben */
    padding: 0 5px;   /* Seitenabstand angleichen */
}

.start-conversation-prompt a {
    background-color: #fff;
    border-radius: 12px; /* Gleiche Rundung wie Suchfeld */
    padding: 20px;       /* Großzügigeres Padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
    
    /* Schatten für den "Karten"-Effekt */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); 
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.start-conversation-prompt a:hover {
    transform: translateY(-2px); /* Leichtes Anheben beim Hover */
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    border-color: rgba(0,0,0,0.05);
}

/* Text-Styling in der Box */
.start-conversation-prompt .prompt-title {
    font-size: 16px;
    font-weight: 700; /* Dickerer Text wie bei Intercom */
    color: #1a1a1a;
    margin-bottom: 4px;
    display: block;
}

.start-conversation-prompt .prompt-reply-time {
    font-size: 13px;
    color: #737373; /* Sanftes Grau */
}

.start-conversation-prompt .prompt-arrow {
    color: var(--titel-blau, #007bff);
    font-size: 24px;
}

.article-content-wrapper {
	overflow-y: auto;
	height: calc(100% - 50px);
}