.live-chat-root{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:9999;
    font-family:Arial, sans-serif;
}
.live-chat-bubble{
    display:inline-flex;
    align-items:center;
    gap:10px;
    border:none;
    border-radius:999px;
    background:linear-gradient(135deg,#2693ff,#5cc8ff);
    color:#fff;
    font-weight:800;
    padding:14px 18px;
    box-shadow:0 18px 36px rgba(0,0,0,.28);
    cursor:pointer;
}
.live-chat-bubble-dot{
    width:10px;
    height:10px;
    border-radius:999px;
    background:#70ff9a;
    box-shadow:0 0 0 4px rgba(112,255,154,.18);
}
.live-chat-panel{
    width:min(360px, calc(100vw - 34px));
    max-height:min(640px, calc(100vh - 44px));
    border-radius:22px;
    border:1px solid rgba(90,160,255,.22);
    background:rgba(9,18,34,.98);
    color:#eaf4ff;
    box-shadow:0 26px 70px rgba(0,0,0,.42);
    overflow:hidden;
}
.live-chat-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    padding:16px 18px;
    background:linear-gradient(135deg,rgba(38,147,255,.28),rgba(92,200,255,.14));
    border-bottom:1px solid rgba(90,160,255,.18);
}
.live-chat-title{
    font-weight:900;
    font-size:16px;
}
.live-chat-subtitle{
    color:#b9d2ec;
    font-size:12px;
    margin-top:3px;
}
.live-chat-close{
    border:none;
    background:rgba(255,255,255,.08);
    color:#fff;
    width:34px;
    height:34px;
    border-radius:12px;
    cursor:pointer;
    font-size:18px;
}
.live-chat-body{
    padding:14px;
}
.live-chat-start{
    display:flex;
    flex-direction:column;
    gap:10px;
}
.live-chat-input,
.live-chat-textarea{
    width:100%;
    box-sizing:border-box;
    border-radius:12px;
    border:1px solid rgba(90,160,255,.18);
    background:rgba(255,255,255,.05);
    color:#eaf4ff;
    padding:11px 12px;
    outline:none;
}
.live-chat-textarea{
    min-height:82px;
    resize:vertical;
}
.live-chat-button{
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#2693ff,#5cc8ff);
    color:#fff;
    font-weight:900;
    padding:12px 14px;
    cursor:pointer;
}
.live-chat-muted{
    color:#8faac6;
    font-size:12px;
    line-height:1.4;
}
.live-chat-error{
    color:#ffb0b0;
    font-size:13px;
    font-weight:700;
}
.live-chat-messages{
    height:320px;
    overflow:auto;
    display:flex;
    flex-direction:column;
    gap:10px;
    padding-right:4px;
}
.live-chat-msg{
    max-width:84%;
    border-radius:14px;
    padding:10px 12px;
    border:1px solid rgba(90,160,255,.14);
    background:rgba(255,255,255,.05);
}
.live-chat-msg.visitor{
    align-self:flex-end;
    background:rgba(92,200,255,.16);
}
.live-chat-msg.admin,
.live-chat-msg.system{
    align-self:flex-start;
}
.live-chat-msg-name{
    color:#8fc8ff;
    font-size:11px;
    font-weight:900;
    margin-bottom:4px;
}
.live-chat-msg-body{
    color:#eaf4ff;
    font-size:14px;
    line-height:1.4;
    white-space:pre-wrap;
}
.live-chat-compose{
    display:flex;
    gap:8px;
    margin-top:12px;
}
.live-chat-compose input{
    flex:1;
}
@media(max-width:640px){
    .live-chat-root{
        right:12px;
        bottom:12px;
    }
    .live-chat-bubble{
        padding:13px 15px;
    }
}
