/* Container für die Chatliste */
#chat-list {
    background-color: #f7f7f7;
    border-right: 1px solid #ddd;
    z-index: 1;
    position: relative;
    transform: translateX(0);
    opacity: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

/* Titel der Chatliste */
.chat-title {
    text-align: left;
    font-size: 24px;
    margin: 0 0 20px 0;
    color: #333;
}

/* Logo-Container */
.logo-container {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    padding: 0px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
}

/* Logo-Styling */
.logo-mobile,
.logo-desktop {
    height: auto;
    transition: transform 0.3s ease; /* Transition für Hover-Effekt */
    border-radius: 8px; /* Abgerundete Ecken für die Logos */
    overflow: hidden; /* Stellt sicher, dass das Logo innerhalb der abgerundeten Ecken bleibt */
}

/* Chat-List */
.chat-list {
    width: 100%;
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    flex-grow: 1;
}

/* Einzelnes Chat-Element */
.chat-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    background-color: transparent;
    color: inherit;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.chat-item:hover {
    background-color: #ffffff;
    border-bottom: 2px solid #37c43c;
}

/* Avatar-Styling */
.chat-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #222222; /* Dunkles Grau als Hintergrund für den Avatar */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.chat-avatar i {
    color: #FFFFFF; /* Weiße Icons */
    font-size: 24px; /* Größe der Icons */
}

.chat-avatar .fa-smile.hidden {
    display: none;
}

.chat-item:hover .fa-smile {
    display: inline-block; /* Zeigt das Smiley-Icon bei Hover */
}

/* Chat-Informationen */
.chat-info {
    flex-grow: 1;
    text-align: left;
}

.chat-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.chat-info p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

/* Sprachumschalter-Styling */
.language-switcher {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s ease;
    width: 100%;
    background-color: transparent;
    color: inherit;
    text-decoration: none;
    position: relative;
    z-index: 1;
}


/* Icon-Styling */
.language-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #222222; /* Dunkles Grau als Hintergrund für den Icon */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.language-icon i {
    color: #FFFFFF; /* Weiße Icons */
    font-size: 24px; /* Größe der Icons */
}

/* Informationen und Auswahl-Styling */
.language-info {
    flex-grow: 1;
    text-align: left;
}

.language-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.language-info select {
    margin-top: 5px;
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #333;
    transition: border-color 0.3s ease;
}

.language-info select:focus {
    border-color: #1f679a; /* Unternehmensfarbe für den Fokus */
    outline: none;
}