/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Sticky Header */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #4CAF50;
    color: #fff;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    transition: height 0.3s ease, padding 0.3s ease;
}

.logo {
    height: 50px;
    transition: height 0.3s ease;
}

/* Shrink header when scrolling */
.header-small {
    padding: 5px;
}

.logo-small {
    height: 30px;
}

.hamburger-menu {
    font-size: 30px;
    cursor: pointer;
}

/* Hamburger Menu Styling */
#mobileMenu {
    display: none;
    background-color: #333;
    position: absolute;
    top: 100px;
    right: 0;  /* Menü am rechten Rand ausrichten */
    /*left: 0;*/
    right: 0;
    z-index: 100;
    width: 200px;
}

#mobileMenu.nav-visible {
    display: block;
}

#mobileMenu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#mobileMenu ul li {
    padding: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

/* Farben für das Hamburger-Menü */
#mobileMenu ul li:nth-child(1) {
    background-color: #a0c4f7; /* Helleres Blau für Start */
    color: #fff;
}

#mobileMenu ul li:nth-child(2) {
    background-color: #fde293; /* Helleres Gelb für Kalender */
    color: #fff;
}

#mobileMenu ul li:nth-child(3) {
    background-color: #f7c6c6; /* Helleres Rot für ToDo */
    color: #fff;
}

#mobileMenu ul li:nth-child(4) {
    background-color: #a7e6a2; /* Helleres Grün für Hilfe */
    color: #fff;
}

#mobileMenu ul li:nth-child(5) {
    background-color: #d3b4f0; /* Helleres Violett für den fünften Punkt */
    color: #fff;
}
#mobileMenu ul li:last-child {
    background-color: #ddd; /* Weiss für den letzten Punkt */
    color: #000;
}

/* Aktiver Hamburger-Menüeintrag */
#mobileMenu ul li.active {
    background-color: #4285f4; /* Blau für aktiven Start */
}

#mobileMenu ul li.active:nth-child(2) {
    background-color: #fbbc04; /* Gelb für aktiven Kalender */
}

#mobileMenu ul li.active:nth-child(3) {
    background-color: #f28b82; /* Rot für aktiven ToDo */
}

#mobileMenu ul li.active:nth-child(4) {
    background-color: #34a853; /* Grün für aktiven Hilfe */
}

#mobileMenu ul li.active:nth-child(5) {
    background-color: #9b59b6; /* Kräftiges Violett für den fünften Punkt */
}

#mobileMenu ul li.active:last-child {
    background-color: #fff; /* Weiss für den letzten Punkt */
}

/* Hover-Effekt für das Hamburger-Menü, Farbe je nach späterer aktiver Farbe */
#mobileMenu ul li:nth-child(1):hover {
    background-color: #4285f4; /* Blau für Start */
}

#mobileMenu ul li:nth-child(2):hover {
    background-color: #fbbc04; /* Gelb für Kalender */
}

#mobileMenu ul li:nth-child(3):hover {
    background-color: #f28b82; /* Rot für ToDo */
}

#mobileMenu ul li:nth-child(4):hover {
    background-color: #34a853; /* Grün für Hilfe */
}

#mobileMenu ul li:nth-child(5):hover {
    background-color: #9b59b6; /* Kräftiges Violett für den fünften Punkt */
}
#mobileMenu ul li:last-child:hover {
    background-color: #fff; /* Weiss für den letzten Punkt */
}

#mobileMenu ul li a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 10px;
}

/* Main Content Area */
main {
    flex: 1;
    /* top | right | bottom | left */
    padding: 0px 20px 0 20px;
    margin-top: 70px; /* Space for sticky header */
    margin-bottom: 70px; /* Space for sticky footer */
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Bottom Navigation */
.bottom-nav {
    display: flex;
    justify-content: space-around;
    background-color: #f1f1f1;
    padding: 10px;
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Höherer z-index, damit es über dem Kalender liegt */
}

/* Auf mobilen Geräten (Bildschirmbreite kleiner als 768px) wird der Text ausgeblendet, die Icons bleiben */
@media (max-width: 768px) {
    .bottom-nav a p {
        display: none; /* Blendet den Text aus */
    }

    .bottom-nav a i {
        font-size: 24px;  /* Vergrößert die Icons ein wenig für bessere Sichtbarkeit */
    }
}

/* Styling for the bottom navigation tabs */
.bottom-nav a {
    text-align: center;
    padding: 10px;
    flex-grow: 1;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

/* Farben für die gesamten Tabs */
.bottom-nav a:nth-child(1) {
    background-color: #a0c4f7; /* Helleres Blau für Start */
}

.bottom-nav a:nth-child(2) {
    background-color: #fde293; /* Helleres Gelb für Kalender */
}

.bottom-nav a:nth-child(3) {
    background-color: #f7c6c6; /* Helleres Rot für ToDo */
}

.bottom-nav a:nth-child(4) {
    background-color: #a7e6a2; /* Helleres Grün für Hilfe */
}

.bottom-nav a:nth-child(5) {
    background-color: #d3b4f0; /* Helleres Violett für Kontakt */
}


/* Aktiver Tab in der jeweiligen Farbe */
.bottom-nav a.active:nth-child(1) {
    background-color: #4285f4; /* Blau für Start */
}

.bottom-nav a.active:nth-child(2) {
    background-color: #fbbc04; /* Gelb für Kalender */
}

.bottom-nav a.active:nth-child(3) {
    background-color: #f28b82; /* Rot für ToDo */
}

.bottom-nav a.active:nth-child(4) {
    background-color: #34a853; /* Grün für Hilfe */
}

.bottom-nav a.active:nth-child(5) {
    background-color: #9b59b6; /* Violett für Hilfe */
}


/* Hover-Effekt für die Tabs, Farbe je nach späterer aktiver Farbe */
.bottom-nav a:nth-child(1):hover {
    background-color: #4285f4; /* Blau für Start */
}

.bottom-nav a:nth-child(2):hover {
    background-color: #fbbc04; /* Gelb für Kalender */
}

.bottom-nav a:nth-child(3):hover {
    background-color: #f28b82; /* Rot für ToDo */
}

.bottom-nav a:nth-child(4):hover {
    background-color: #34a853; /* Grün für Hilfe */
}

.bottom-nav a:nth-child(5):hover {
    background-color: #9b59b6; /* Violett für Hilfe */
}


/* Icon und Text im Tab */
.bottom-nav a i {
    font-size: 24px;
    margin-right: 8px;
}

.bottom-nav a p {
    margin: 0;
    font-size: 16px;
    color: #fff;
}

/* Kalender Wochenenden Samstag, Sonntag */
#calendar .fc-day-sun, #calendar .fc-day-sat {
    background-color: #f4f5d7;
}

/* Grid Layout for Tiles on Start Page */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.grid-item {
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s, transform 0.3s;
}

.grid-item:hover {
    transform: scale(1.05);
}

/* Farben für die Kacheln */
.todo-tile {
    background-color: #f28b82; /* Helles Rot für ToDo */
}

.calendar-tile {
    background-color: #fbbc04; /* Sonniges Gelb für Kalender */
}

.help-tile {
    background-color: #34a853; /* Freundliches Grün für Hilfe */
}

.start-tile {
    background-color: #4285f4; /* Freundliches Blau für Start */
}

.contact-tile {
    background-color: #d3b4f0; /* Freundliches Violett für Start */
}


/* To-Do List */
.todo-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.todo-container h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.todo-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

.todo-list {
    list-style-type: none;
    padding: 0;
}

.todo-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.todo-list li.completed {
    text-decoration: line-through;
    color: #888;
}

.todo-buttons {
    display: flex;
    gap: 5px;
}

.todo-buttons button {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.todo-buttons button.complete {
    background-color: #4CAF50;
    color: white;
}

.todo-buttons button.delete {
    background-color: #f44336;
    color: white;
}

/* Help form styling */
.help-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.help-container h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.help-container p {
    text-align: center;
}

.help-form input[type="text"],
.help-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.help-form button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.help-form button:hover {
    background-color: #45a049;
}

.help-form .form-group {
    margin-bottom: 15px;
}

.help-buttons {
    display: block; /* Statt flex, damit die Buttons nicht gestreckt werden */
    gap: 10px;
    margin-bottom: 20px;
    text-align: center; /* Buttons zentrieren */
}

.help-buttons button {
    padding: 5px 10px; /* Padding für den inneren Abstand */
    margin: 10px 0; /* Abstand nach oben und unten zwischen den Buttons */
    font-size: 12px;
    border: 2px solid #4CAF50; /* Rahmen um die Buttons */
    border-radius: 10px; /* Abgerundete Ecken für die Buttons */
    background-color: #f0f0f0; /* Hellerer Hintergrund für die Buttons */
    color: #4CAF50; /* Farbe des Texts */
    cursor: pointer;
    display: inline-block; /* Buttons passen sich der Textbreite an */
    width: auto; /* Breite an den Inhalt anpassen */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.help-buttons button:hover {
    background-color: #45a049; /* Grüne Hintergrundfarbe beim Hover */
    border-color: #45a049; /* Ändere auch den Rahmen beim Hover */
    color: white; /* Textfarbe beim Hover */
}

/* Stellt sicher, dass der Button und das Loading-Element nebeneinander stehen */
.help-button-loading-wrapper {
    display: flex;
    align-items: center;
}

.submit-btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
    background-color: #45a049; /* Nur beim Hover, wenn der Button nicht deaktiviert ist */
}

.submit-btn:disabled {
    background-color: grey;
    cursor: not-allowed;
}

/* Optional: Platz zwischen dem Button und dem Loading-Element */
#loading {
    margin-left: 10px;
}

.response {
    margin-top: 20px;
    padding: 10px;
    background-color: #e7f3fe;
    border: 1px solid #b3d4fc;
    border-radius: 5px;
}

/* Container für die Visitenkarten */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: left;
}

/* Standard Kacheldarstellung */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Visitenkarte */
.contact-card {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: scale(1.05);
}

/* Profilbild */
.contact-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover; /* Bild proportional zuschneiden, ohne zu verzerren */
}

/* Name */
.contact-card h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

/* Kontaktinformationen */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    word-wrap: break-word; /* Längere Wörter (wie E-Mail-Adressen) umbrechen */
    overflow: hidden; /* Verhindert, dass der Inhalt über den Rand hinausgeht */
    text-overflow: ellipsis; /* Zeigt "..." bei sehr langem Text an */
}

.contact-info a:hover {
    color: #000;
}

/* Listendarstellung */
.contact-list {
    display: block;
}

.contact-list .contact-card {
    display: flex;
    width: 100%; /* Volle Breite */
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
}

.contact-list .contact-card img {
    width: 50px; /* Kleinere Bilder in der Liste */
    height: 50px;
    margin-right: 20px;
}

.contact-list .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* Icons */
.contact-info i {
    font-size: 20px;
    color: #4CAF50;
}

/* WhatsApp Icon */
.contact-info a[href*="wa.me"] i {
    color: #25D366;
}


/* Zusätzliche Informationen (wie Gruppe, Geburtsdatum, etc.) */
.contact-additional-info {
    margin-top: 10px; /* Abstand nach oben */
    font-size: 0.85em; /* Kleinere Schriftgröße */
    color: #666; /* Sekundäre Textfarbe */
}

.contact-additional-info span {
    display: block; /* Blockweise Darstellung */
    margin-bottom: 4px; /* Abstand zwischen den Informationen */
}

.group-divider {
    height: 2px;

    background: ccc;
    margin: 20px 0 !important; /* Abstand sicherstellen */
    width: 100% !important;
}



/* Container für jeden Dokumenteintrag */
.doku-entry {
    background-color: #f9f9f9; /* Leichtes Grau für den Hintergrund */
    border: 1px solid #ddd; /* Dünne graue Umrandung */
    border-radius: 8px; /* Abgerundete Ecken */
    padding: 15px; /* Innenabstand */
    margin-bottom: 15px; /* Abstand zwischen den Einträgen */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Leichter Schatten für etwas Tiefe */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Übergänge für Hover-Effekte */
}

/* Hover-Effekt für den Dokumenteintrag */
.doku-entry:hover {
   /* transform: scale(1.02); */ /* Leichtes Vergrößern beim Hovern */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Verstärkter Schatten beim Hovern */
}

/* Styling für den Dokumentinhalt */
.doku-content {
    color: #333; /* Dunkles Grau für den Text */
    font-size: 16px; /* Standardgröße des Textes */
    line-height: 1.6; /* Zeilenhöhe für bessere Lesbarkeit */
}

/* Abgrenzung der Doku-ID */
.doku-entry p {
    font-weight: bold; /* Fett für die Doku-ID */
    margin-bottom: 10px; /* Abstand zwischen der Doku-ID und dem Inhalt */
}

/* Verlinkungen innerhalb des Inhalts */
.doku-content a {
    color: #4CAF50; /* Grüne Farbe für Links */
    text-decoration: none; /* Entferne die Standard-Unterstreichung */
    font-weight: bold; /* Mache Links fett */
}

/* Hover-Effekt für Links */
.doku-content a:hover {
    text-decoration: underline; /* Unterstreiche Links beim Hovern */
}

/* Container für den Header, der den Doku-Typ und den Autor enthält */
.doku-header {
    display: flex;
    justify-content: space-between; /* Verteilt den Text und den Autor */
    align-items: center; /* Zentriert sie vertikal */
    margin-bottom: 10px; /* Abstand zum nachfolgenden Inhalt */
}

/* Styling für den Doku-Typ (standardmäßig linksbündig) */
.doku-header p {
    margin: 0;
    font-size: 16px;
}

/* Wrapper für Autor und Datum */
.doku-meta {
    display: flex;
    justify-content: space-between; /* Autor links, Datum rechts */
    align-items: center;
    margin-bottom: 5px;
}

/* Styling für den Autor (links) */
.doku-autor {
    font-size: 14px;
    font-style: italic;
    color: #666;
    text-align: left;
    font-weight: normal;
}

/* Styling für das Datum (rechts) */
.doku-datum {
    font-size: 12px;
    color: #777;
    text-align: right;
    font-weight: normal;
}

/* Überschrift für den Dokumenttyp */
.doku-header p {
    margin: 5px 0;
}

/* Styling für den Eintrag */
.doku-entry {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.doku-content {
    margin-top: 10px;
}


.children-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    table-layout: fixed; /* Fixed Layout für konsistente Spaltenbreiten */
}

.children-table th, .children-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    overflow: hidden; /* Standard: Overflow verstecken */
    word-wrap: break-word;
}

/* Erste Spalte (Profilbild) - feste Breite */
.children-table th:first-child,
.children-table td:first-child {
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
    white-space: nowrap;
    overflow: visible !important; /* Bilder sollen sichtbar bleiben */
}

/* Zweite Spalte (Name) - feste Breite */
.children-table th:nth-child(2),
.children-table td:nth-child(2) {
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Dritte Spalte (Doku/Prognose) - nimmt restlichen Platz */
.children-table th:nth-child(3),
.children-table td:nth-child(3) {
    /* Keine feste Breite - nimmt restlichen Platz */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Vierte Spalte (Aktionen) - feste Breite */
.children-table th:nth-child(4),
.children-table td:nth-child(4) {
    width: 350px !important;
    min-width: 350px !important;
    max-width: 350px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ausnahme: KI-Ausgabe-Zellen dürfen umbrechen (colspan="5" Zellen) */
.children-table td.children-loading {
    white-space: normal !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow-x: auto;
    word-break: break-word;
    overflow: auto; /* Scrollbar bei Bedarf */
    width: 100% !important; /* Nimmt die volle Breite der Tabelle ein */
}

/* Versteckte Zeilen (KI-Ausgabe) sollen die volle Tabellenbreite nutzen */
.children-hidden-row td {
    width: 100% !important;
    max-width: 100% !important;
}

/* Bilder in Tabellen-Zellen sollen ihre Größe behalten */
.children-table td img {
    border-radius: 50%;
    object-fit: cover;
    /* width und height werden durch HTML-Attribute gesetzt (width="100" height="100") */
    /* Keine CSS-Regeln, die die Größe überschreiben - HTML-Attribute haben Vorrang */
}

.children-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.children-table a {
    color: #3498db;
    text-decoration: none;
}

.children-table a:hover {
    text-decoration: underline;
}

.children-hidden-row {
    display: none;
}
.children-loading {
    font-style: italic;
    color: grey;
    white-space: normal !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow-x: auto;
}

/* Spezielle Regel für KI-Ausgabe-Zellen */
.children-table td.children-loading,
.children-table #dokus-* td {
    white-space: normal !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow-x: auto;
    word-break: break-word;
}

/* Tab-Menü-Styling */
.tab-menu {
    list-style: none;
    padding: 0;
    display: flex;
    border-bottom: 1px solid #ccc;
}

.tab-menu li {
    margin-right: 10px;
}

.tab-menu li a {
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    border-bottom: none;
}

.tab-menu li.active a {
    background-color: #fff;
    border-bottom: 1px solid #fff; /* Lässt das aktive Tab "verschmolzen" erscheinen */
}

.tab-contents {
    border: 1px solid #ccc;
    padding: 20px;
    background-color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


/* Chat styles for Hilfe page */
.chat-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chat-header {
    flex: 0 0 auto;
    margin-bottom: 15px;
}

.chat-messages {
    flex: 1 1 auto;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px;
    background-color: #f8f9fa;
}

.chat-input {
    flex: 0 0 auto;
    margin-top: 15px;
}
.chat-bubble {
    max-width: 70%;
    padding: 10px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
    position: relative;
    clear: both;
}

/* Button styles */
.chat-btn-primary {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.chat-btn-primary:hover {
    background-color: #45a049;
    border-color: #45a049;
}
.user-bubble {
    background-color: #007bff;
    color: white;
    float: right;
}
.assistant-bubble {
    background-color: #f0f0f0;
    color: black;
    float: left;
}
.user-timestamp {
    font-size: 0.7em;
    color: #e7e5e5;
    margin-top: 5px;
}
.assistant-timestamp {
    font-size: 0.7em;
    color: #0000009d;
    margin-top: 5px;
}

/* Stil für kleinere Bildschirme (z.B. mobile Geräte) */
@media (max-width: 768px) {
    .contact-card {
        width: 40%;  /* Jede Karte nimmt etwa die Hälfte des verfügbaren Platzes ein */
        padding: 15px; /* Weniger Padding */
        font-size: 14px; /* Kleinere Schriftgröße */
    }

    .contact-card img {
        width: 80px;
        height: 80px;
    }

    .contact-card h2 {
        font-size: 14px;  /* Kleinere Schriftgröße */
    }

    .contact-info a {
        font-size: 12px;  /* Kleinere Schriftgröße für die Links */
    }

    .contact-info i {
        font-size: 14px;  /* Kleinere Icons */
    }
}


.ai-content-container {
    max-width: 100%;
    overflow-x: auto;
    word-wrap: break-word;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}