#chatbot-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: #FF9209;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    cursor: pointer;
}
#chatbot-window {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 340px;
    max-width: 95vw;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
    z-index: 10000;
    flex-direction: column;
    overflow: hidden;
}
#chatbot-header {
    background: #FF9209;
    color: #fff;
    padding: 14px 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#chatbot-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}
#chatbot-input-area {
    display: flex;
    border-top: 1px solid #eee;
    background: #fff;
}
#sendQuestion {
    background: #FF9209;
    color: #fff;
    border: none;
    padding: 0 18px;
    font-size: 18px;
    cursor: pointer;
}
.ai-chat-output {
    padding: 16px;
    background: #fafafa;
    font-size: 15px;
    border-radius: 0 0 12px 12px;
    height: 340px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}
.ai-chat-output .chatbot-msg {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}
.ai-chat-output .chatbot-msg.user {
    align-items: flex-end;
}
.ai-chat-output .chatbot-msg.bot {
    align-items: flex-start;
}
.ai-chat-output .chatbot-bubble {
    padding: 8px 14px;
    border-radius: 16px;
    max-width: 80%;
    display: inline-block;
}
.ai-chat-output .chatbot-msg.user .chatbot-bubble {
    background: #FF9209;
    color: #fff;
}
.ai-chat-output .chatbot-msg.bot .chatbot-bubble {
    background: #eee;
    color: #222;
}
.ai-chat-question {
    font-size: 16px;
    color: #061121;
    font-weight: 400;
    display: inline-block;
    background: #f1f1f1;
    padding: 6px 16px;
    border-radius: 25px;
}
.ai-chat-response {
    font-size: 16px;
}