.ai-chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.ai-chatbot-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0084ff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ai-chatbot-bubble img,
.ai-chatbot-bubble svg {
    width: 30px;
    height: 30px;
}

.ai-chatbot-chat {
    display: none;
    width: 300px;
    height: 400px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ai-chatbot-header {
    background-color: #0084ff;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-chatbot-header h3 {
    margin: 0;
    font-size: 16px;
}

.ai-chatbot-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.ai-chatbot-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.ai-chatbot-messages {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.ai-chatbot-message {
    max-width: 80%;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.ai-chatbot-message.user-message {
    margin-left: auto;
    background-color: #0084ff;
    color: #fff;
}

.ai-chatbot-message.bot-message {
    margin-right: auto;
    background-color: #f0f0f0;
    color: #000;
}

.ai-chatbot-input {
    display: flex;
    padding: 10px;
}

.ai-chatbot-input input {
    flex-grow: 1;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.ai-chatbot-input button {
    margin-left: 5px;
    padding: 5px 10px;
    background-color: #0084ff;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}