/* Chat Icon */

#chat-icon{
position:fixed;
bottom:20px;
right:20px;
width:60px;
height:60px;
background:#007bff;
color:white;
font-size:28px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
cursor:pointer;
box-shadow:0 0 10px rgba(0,0,0,0.2);
z-index:999;
}


/* Chatbox */

#ai-chatbot{
position:fixed;
bottom:90px;
right:20px;
width:320px;
background:white;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.2);
font-family:Arial;
overflow:hidden;
z-index:999;
}


/* Hide Chat */

.chat-hidden{
display:none;
}


/* Header */

#chat-header{
background:#007bff;
color:white;
padding:12px;
font-weight:bold;
display:flex;
justify-content:space-between;
}


/* Chat Body */

#chat-body{
height:300px;
overflow-y:auto;
padding:10px;
}


/* Messages */

.user{
text-align:right;
margin:6px;
}

.bot{
text-align:left;
margin:6px;
color:#007bff;
}


/* Input */

#chat-input{
display:flex;
border-top:1px solid #eee;
}

#chat-input input{
flex:1;
padding:10px;
border:none;
outline:none;
}

#chat-input button{
padding:10px;
border:none;
background:#007bff;
color:white;
cursor:pointer;
}