
#chatbot-bubble {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #a51c30 !important;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    font-size: 20px;
}
#chatbot-box {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 340px;
    height: 460px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
    display: none;
    flex-direction: column;
    z-index: 9998;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    overflow: hidden;
}
#chat-header {
    background: #a51c30 !important;
    color: white;
    padding: 10px;
    font-weight: bold;
    text-align: center;
}
#chat-window {
    flex: 1;
    overflow-y: auto;
    height: 330px;
    padding: 10px;
    background: #f9f9f9;
}
#chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
    background: #fff;
}
#user-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#chatbot-box button {
    margin-left: 8px;
    padding: 8px 12px;
    border: none;
    background: #a51c30 !important;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}
.chat-bubble {
    margin-bottom: 10px;
}
.chat-bubble.user {
    text-align: right;
    color: #333;
}
.chat-bubble.bot {
    display: flex;
    align-items: flex-start;
}
.chat-avatar {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}
