#ai-umar-chat-container{
position:fixed;
bottom:20px;
right:20px;
z-index:999999;
}

#ai-umar-chat-widget{
width:340px;
background:#ffffff;
border-radius:12px;
box-shadow:0 10px 35px rgba(0,0,0,0.25);
font-family:Arial, sans-serif;
overflow:hidden;
display:flex;
flex-direction:column;
}

.ai-header{
background:#111;
color:#fff;
padding:12px;
font-weight:600;
}

.ai-body{
height:260px;
overflow-y:auto;
padding:10px;
background:#f5f5f5;
}

.ai-bot{
background:#e9e9e9;
padding:8px 10px;
border-radius:8px;
margin-bottom:8px;
}

.ai-user{
background:#c9f2c7;
padding:8px 10px;
border-radius:8px;
margin-bottom:8px;
text-align:right;
}

.ai-input{
display:flex;
border-top:1px solid #ddd;
}

.ai-input input{
flex:1;
border:none;
padding:10px;
outline:none;
}

.ai-input button{
background:#111;
color:white;
border:none;
padding:10px 14px;
cursor:pointer;
}