#cae-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: Arial, sans-serif;
    z-index: 10000;
}
#cae-chatbot-box {
    display: none;
    flex-direction: column;
    width: 300px;
    height: 400px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}
#cae-chatbot-box.visible {
    display: flex;
}
#cae-header {
    background: #333;
    color: white;
    padding: 10px;
    font-weight: bold;
}
#cae-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
}
.user-msg, .bot-msg {
    margin: 5px 0;
}
.user-msg {
    text-align: right;
    color: blue;
}
.bot-msg {
    text-align: left;
    color: green;
}
#cae-user-input {
    border: none;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}
#cae-toggle-btn {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    background: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
}
