#travelChatbotBtn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    border:none;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    font-size:30px;
    cursor:pointer;
    z-index:9999;
}

#travelChatbot{
    position:fixed;
    right:20px;
    bottom:100px;
    width:360px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 0 25px rgba(0,0,0,.2);
    display:none;
    z-index:9999;
}

.chatbot-header{
    background:#111;
    color:#fff;
    padding:15px;
    display:flex;
    justify-content:space-between;
}

#chatbotLeadStep,
#chatbotMainStep{
    padding:15px;
}

#chatbotLeadStep input,
.chatbot-footer input{
    width:100%;
    padding:12px;
    margin-bottom:10px;
}

#chatbotLeadStep button,
.chatbot-footer button{
    width:100%;
    padding:12px;
    background:#111;
    color:#fff;
    border:none;
    cursor:pointer;
}

.chatbot-body{
    height:300px;
    overflow:auto;
    background:#f8f8f8;
    padding:15px;
}

.bot-message{
    background:#fff;
    padding:12px;
    border-radius:10px;
    margin-bottom:10px;
}

.travel-result{
    background:#fff;
    padding:12px;
    border-radius:10px;
    margin-bottom:10px;
}

.travel-result a{
    color:#25D366;
    text-decoration:none;
    font-weight:bold;
}