#viviria-chat-button{

position:fixed;

right:25px;

bottom:25px;

width:60px;

height:60px;

background:#24c26b;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

cursor:pointer;

box-shadow:0 10px 30px rgba(0,0,0,.25);

z-index:999999;

}

#viviria-chat{

display:none;

position:fixed;

right:25px;

bottom:100px;

width:360px;

height:520px;

background:white;

border-radius:18px;

overflow:hidden;

box-shadow:0 20px 50px rgba(0,0,0,.25);

z-index:999999;

font-family:Arial;

}

.chat-header{

background:#123c66;

color:white;

padding:15px;

display:flex;

justify-content:space-between;

align-items:center;

}

.chat-body{

height:380px;

overflow:auto;

padding:15px;

background:#f8fafc;

}

.chat-footer{

display:flex;

padding:10px;

gap:8px;

}

.chat-footer input{

flex:1;

padding:10px;

}

.chat-footer button{

background:#24c26b;

border:none;

color:white;

padding:10px 15px;

cursor:pointer;

border-radius:8px;

}

.bot-message{

background:#e9f5ff;

padding:12px;

border-radius:10px;

margin-bottom:10px;

}

.user-message{

background:#24c26b;

color:white;

padding:12px;

border-radius:10px;

margin:10px 0;

text-align:right;

}