#astip-chat-float{
    position:fixed;
    bottom:60px;
    right:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#e91e63;
    color:#fff;
    font-size:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:99999;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
}

#astip-chat-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999999;
}

.astip-chat-box{
    width:420px;
    max-width:95%;
    height:650px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

.astip-chat-header{
    padding:18px;
    background:#e91e63;
    color:#fff;
    font-weight:700;
    display:flex;
    justify-content:space-between;
}

.astip-chat-messages{
    flex:1;
    overflow-y:auto;
    padding:15px;
}

.astip-chat-footer{
    padding:15px;
    border-top:1px solid #eee;
}

#astip-chat-message{
    width:100%;
    height:90px;
    resize:none;
    margin-bottom:10px;
}

#astip-chat-send{
    width:100%;
    height:45px;
    border:none;
    background:#e91e63;
    color:#fff;
    border-radius:10px;
    cursor:pointer;
}


.astip-chat-messages{
    flex:1;
    overflow-y:auto;
    padding:15px;
}

.astip-user-message{
    display:flex;
    justify-content:flex-end;
    margin-bottom:10px;
}

.astip-admin-message{
    display:flex;
    justify-content:flex-start;
    margin-bottom:10px;
}

.astip-message-text{
    max-width:75%;
    padding:10px 14px;
    border-radius:12px;
    word-break:break-word;
}

.astip-user-message .astip-message-text{
    background:#dcf8c6;
}

.astip-admin-message .astip-message-text{
    background:#e7f3ff;
}