#chatbot-btn{
    position:fixed;
    right:20px;
    bottom:95px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:9999;
    font-size:28px;
}

#chatbot-box{
    position:fixed;
    right:20px;
    bottom:170px;
    width:350px;
    height:500px;
    background:#fff;
    border-radius:15px;
    display:none;
    overflow:hidden;
    box-shadow:0 0 25px rgba(0,0,0,.20);
    z-index:9999;
}

.chatbot-header{
    background:#0d6efd;
    color:#fff;
    padding:15px;
    font-weight:bold;
}

#chatbot-mensajes{
    height:370px;
    overflow-y:auto;
    padding:15px;
}

.bot-msg{
    background:#f4f4f4;
    padding:10px;
    border-radius:10px;
    margin-bottom:10px;
}

.user-msg{
    background:#dbeafe;
    padding:10px;
    border-radius:10px;
    margin-bottom:10px;
    text-align:right;
}

.chatbot-footer{
    display:flex;
    gap:8px;
    padding:10px;
}

#chatbot-input{
    flex:1;
    border:none;
    outline:none;
    border-radius:10px;
    padding:10px;
    border:1px solid #ddd;
}

#chatbot-enviar{

    width:45px;
    height:45px;

    border:none;

    border-radius:50%;

    background:#003A7D;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    transition:.3s;

}

#chatbot-enviar:hover{

    transform:scale(1.05);

}


@media(max-width:768px){

    #chatbot-box{

        width:80%;
        right:2.5%;
        bottom:80px;

    }

}