/**
 * CHAT WIDGET COMPONENT
 * Styles for the floating chat icon and chat window
 */

/* Chat-Icon-Stil */
.chat-icon {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: 0.5s;
    z-index: 99;
}

/* Chat-Fenster-Stil */
.chat-window {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 1000;
}

.chat-window header {
    font-size: 18px;
    margin-bottom: 10px;
}

.chat-window form {
    display: flex;
    flex-direction: column;
}

.chat-window textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.chat-window button {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
}
