#camano-ai-bubble{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#ffffff;
    width:64px;
    height:64px;
    border-radius:50%;
    text-align:center;
    line-height:64px;
    cursor:pointer;
    z-index:99999;
    box-shadow:0 0 10px rgba(0,0,0,.3);
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}
#camano-ai-bubble img{
    max-width:80%;
    max-height:80%;
}
#camano-ai-window{
    display:none;
    position:fixed;
    bottom:100px;
    right:20px;
    width:360px;
    height:500px;
    background:#ffffff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 0 10px rgba(0,0,0,.4);
    z-index:99999;
    font-family: Arial, sans-serif;
    display:flex;
    flex-direction:column;
}
#camano-ai-header{
    background:#0050c9;
    color:#fff;
    padding:10px 12px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.camano-ai-header-left{
    display:flex;
    align-items:center;
    gap:8px;
}
.camano-ai-header-left img{
    width:28px;
    height:28px;
    border-radius:4px;
    object-fit:cover;
}
#camano-ai-close{
    cursor:pointer;
    font-size:20px;
    line-height:20px;
    padding:0 4px;
}
#camano-ai-chat{
    flex:1;
    padding:10px;
    overflow-y:auto;
    font-size:14px;
    background:#f9f9f9;
}
#camano-ai-inputbox{
    padding:8px;
    border-top:1px solid #ddd;
    display:flex;
    gap:6px;
    background:#ffffff;
}
#camano-ai-input{
    flex:1;
    padding:6px 8px;
    border-radius:6px;
    border:1px solid #ccc;
}
#camano-ai-send{
    padding:6px 12px;
    border:none;
    border-radius:6px;
    background:#0050c9;
    color:#fff;
    cursor:pointer;
    font-weight:bold;
}
.user-msg{
    background:#ffffff;
    padding:8px;
    margin-bottom:8px;
    border-radius:8px;
    align-self:flex-end;
    max-width:90%;
}
.bot-msg{
    background:#0050c9;
    color:#fff;
    padding:8px;
    margin-bottom:8px;
    border-radius:8px;
    max-width:90%;
}
