#ciae-bot {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    font-family: 'Poppins', sans-serif;
    display: none;
    z-index: 9999;
    overflow: hidden;
}
#ciae-bot-header {
    background: #333;
    color: white;
    padding: 12px;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
}
#ciae-bot-msg {
    padding: 10px;
    max-height: 260px;
    overflow-y: auto;
    font-size: 14px;
}
.ciae-msg {
    padding: 10px;
    margin: 6px 0;
    border-radius: 10px;
    max-width: 90%;
}
.ciae-msg.bot {
    background: #f1f1f1;
}
.ciae-msg.user {
    background: #d0ebff;
    text-align: right;
    margin-left: auto;
}
#ciae-bot-input {
    display: flex;
    border-top: 1px solid #ccc;
}
#ciae-user-query {
    flex: 1;
    padding: 10px;
    border: none;
}
#ciae-send {
    background: #333;
    color: white;
    border: none;
    padding: 10px;
}
#ciae-open {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    font-size: 22px;
    border: none;
    z-index: 9999;
}