#aivora-container{
position:fixed;
right:20px;
bottom:90px;
z-index:999999;
opacity:0;
visibility:hidden;
transition:all .35s ease;
font-family:Arial,sans-serif;
}

#aivora-container.active{
opacity:1;
visibility:visible;
}

#aivora-toggle{
width:64px;
height:64px;
border-radius:50%;
background:linear-gradient(135deg,#10b981,#059669);
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
cursor:pointer;
box-shadow:0 12px 35px rgba(0,0,0,.25);
transition:.3s ease;
color:#fff;
}

#aivora-toggle:hover{
transform:scale(1.05);
}

#aivora-chat{
display:none;
flex-direction:column;
position:absolute;
bottom:85px;
right:0;
width:360px;
height:540px;
background:#fff;
border-radius:22px;
overflow:hidden;
box-shadow:0 18px 50px rgba(0,0,0,.22);
border:1px solid #e5e7eb;
backdrop-filter:blur(10px);
}

#aivora-header{
background:linear-gradient(135deg,#065f53,#0f766e);
color:#fff;
padding:18px;
font-weight:700;
text-align:center;
font-size:18px;
letter-spacing:.3px;
}

#aivora-messages{
flex:1;
padding:16px;
overflow-y:auto;
background:#f3f4f6;
display:flex;
flex-direction:column;
gap:12px;
}

.aivora-message{
padding:12px 16px;
border-radius:18px;
max-width:82%;
font-size:14px;
line-height:1.5;
word-wrap:break-word;
animation:aivoraFade .25s ease;
}

.aivora-message.bot{
background:#fff;
color:#111827;
align-self:flex-start;
border-bottom-left-radius:6px;
box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.aivora-message.user{
margin-left:auto;
background:linear-gradient(135deg,#10b981,#059669);
color:#fff;
align-self:flex-end;
border-bottom-right-radius:6px;
box-shadow:0 2px 8px rgba(16,185,129,.25);
}

#aivora-input{
padding:16px;
border:none;
border-top:1px solid #e5e7eb;
outline:none;
font-size:14px;
background:#fff;
color:#111827;
}

#aivora-input::placeholder{
color:#9ca3af;
}

@keyframes aivoraFade{

from{
opacity:0;
transform:translateY(8px);
}

to{
opacity:1;
transform:translateY(0);
}

}

@media(max-width:768px){

#aivora-container{
right:14px;
bottom:85px;
}

#aivora-chat{
width:92vw;
height:78vh;
right:0;
bottom:80px;
border-radius:20px;
}

#aivora-toggle{
width:58px;
height:58px;
font-size:26px;
}

}