#chatbot-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

#chatbot-btn {
     background-color: #004a99; /* cor do botão */
    -webkit-mask-image: url('/en/static/images/dental/bot-icon.svg');
    mask-image: url('/en/static/images/dental/bot-icon.svg');
    -webkit-mask-size: 60%;
    mask-size: 60%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    border: none;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background-image: none;
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

#chatbot-window {
    width: 320px;
    height: 440px;
    background: rgb(252, 249, 249);
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,.2);
    position: absolute;
    bottom: 60px;
    right: 0;
    display: none;
    flex-direction: column;
}

#chatbot-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #004a99;
    padding: 14px;
    color:white;
    border-radius: 14px 14px 0 0;
}

#chatbot-header img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 50%;
}

#chatbot-messages {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
}

.message {
    padding: 8px 12px;
    margin-bottom: 10px;
    border-radius: 12px;
    max-width: 80%;
}

.bot { background: #eaf2ff; color:#003c7a; align-self: flex-start;
    border: 1px solid #d7e7ff}
.user { background: #004a99; color:white; margin-left:auto; align-self:flex-end;}
#chatbot-input-area { display:flex; border-top:1px solid #ddd; }
#chatbot-input { flex:1; border:none; padding:12px; }
#chatbot-send { background:#004a99;border:none;color:white;padding:0 16px;cursor:pointer; }