#mistral-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #0073aa;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
}

#mistral-chat-box {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    height: 400px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    z-index: 9999;
}

#mistral-chatbot-container {
    width: 18%;
    min-width: 250px;
    height: 70%;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    position: fixed;
    bottom: 15%;
    right: 4%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.think {
    color: lightblue;
    font-style: italic;
}

.answer {
    color: darkblue;
}

.unknown, .error {
    color: red;
}

#mistral-chatbot-header {
    background: #00b0f0;
    color: #fff;
    padding: 10px;
    text-align: center;
    height: 10%
}

#mistral-chatbot-header h3 {
    color: #fff;
}

div#thinking {
    background: url(images/spinner.gif) no-repeat left center;
    height: 50px;
    margin-left: 65px;
    margin-top: -30px;
}

#mistral-chatbot-messages {
    height: 70%;
    overflow-y: auto;
    padding: 10px;
}

#mistral-chatbot-user-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 4%;
}

#mistral-chatbot-send-button {
    padding: 8px 15px;
    background: #00b0f0;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    height: fit-content;
    font-size: 18px;
}

.mistral-chatbot-link-rechts {
    float: right;
    margin-top: -20px;
    margin-right: 20px;
}
.mistral-chatbot-link-rechts a {
    text-decoration: none;
}
.mistral-chatbot-link-rechts .dashicons {
    vertical-align: middle;
}
