
#addhome-launcher{
position:fixed;
right:25px;
bottom:25px;
width:68px;
height:68px;
background:#111827;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
cursor:pointer;
z-index:999999;
box-shadow:0 10px 30px rgba(0,0,0,.25);
}

#addhome-window{
position:fixed;
right:25px;
bottom:105px;
width:400px;
height:650px;
background:#fff;
border-radius:18px;
display:none;
flex-direction:column;
overflow:hidden;
z-index:999999;
box-shadow:0 25px 50px rgba(0,0,0,.25);
font-family:Arial;
}

.top-bar{
background:#111827;
color:#fff;
padding:18px;
display:flex;
justify-content:space-between;
font-weight:bold;
}

#close-window{
cursor:pointer;
}

.messages{
flex:1;
padding:15px;
overflow-y:auto;
background:#f3f4f6;
}

.bot,
.user{
padding:12px;
border-radius:12px;
margin-bottom:12px;
max-width:85%;
white-space:pre-line;
line-height:1.5;
}

.bot{
background:#e5e7eb;
}

.user{
background:#111827;
color:#fff;
margin-left:auto;
}

.bottom-bar{
display:flex;
padding:12px;
gap:10px;
background:#fff;
}

.bottom-bar input{
flex:1;
padding:14px;
border:1px solid #ddd;
border-radius:10px;
}

.bottom-bar button{
padding:14px 18px;
border:none;
background:#111827;
color:#fff;
border-radius:10px;
cursor:pointer;
}

@media(max-width:600px){

#addhome-window{
width:95%;
right:2.5%;
height:80vh;
}

}
