#whatsapp-chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

#whatsapp-chat-icon img {
    width: 60px;  /* Passe die Größe des Icons an */
    height: 60px; /* Passe die Größe des Icons an */
}

#whatsapp-chat-icon:hover {
    transform: scale(1.1);
}

#whatsapp-chat-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    height: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

#chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #25d366;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.2s;
}

#close-chat:hover {
    transform: rotate(90deg); /* Schöne Drehung beim Hover */
}

#chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px;
    background: #f0f0f0;
    overflow-y: auto;
}

#chat-messages {
    flex: 1;
    margin-bottom: 10px;
}

#chat-body input, #chat-body textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
}

#chat-body button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #25d366;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

#chat-body button:hover {
    background: #20a357;
}

.chat-bubble {
    background: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
