#expertiq-chat-container {
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}
#expertiq-chat-log {
    border: 1px solid #ccc;
    padding: 10px;
    height: 300px;
    overflow-y: auto;
    background: #f9f9f9;
    margin-bottom: 10px;
    border-radius: 10px;
}
.user-bubble, .bot-bubble {
    max-width: 80%;
    padding: 10px;
    margin: 8px;
    border-radius: 15px;
    clear: both;
}
.user-bubble {
    background: #d1e7dd;
    float: right;
    text-align: right;
}
.bot-bubble {
    background: #fff;
    float: left;
}
.error {
    color: red;
}
#expertiq-user-message {
    width: 100%;
    height: 60px;
    padding: 10px;
    font-size: 14px;
}
#expertiq-send-message {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
#expertiq-send-message:hover {
    background: #005177;
}
