#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: 350px;
    height: 500px;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    position: fixed;
    bottom: 20%;
    right: 20px;
    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 {
	color: red;
}

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

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

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

#mistral-chatbot-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ccc;
}

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

#mistral-chatbot-send-button {
    margin-left: 10px;
    padding: 8px 15px;
    background: #00b0f0;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

