#chatbot-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0b5ed7;
    color: white;
    padding: 12px 18px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
}

#chatbot-window {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 340px;
    height: 460px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    font-family: Arial, sans-serif;
    z-index: 9999;
}

#chatbot-header {
    background: #0b5ed7;
    color: white;
    padding: 12px;
    font-size: 14px;
}

#chatbot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-size: 14px;
}

.chatbot-msg {
    margin-bottom: 10px;
}

.chatbot-user {
    text-align: right;
}

.chatbot-user span {
    background: #0b5ed7;
    color: white;
    padding: 6px 10px;
    border-radius: 10px;
    display: inline-block;
}

.chatbot-bot span {
    background: #f1f1f1;
    padding: 6px 10px;
    border-radius: 10px;
    display: inline-block;
}

#chatbot-input {
    display: flex;
    border-top: 1px solid #ddd;
}

#chatbot-input input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
}

#chatbot-input button {
    background: #0b5ed7;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

