/* ریشه */
.kw-chat-row{
    display:flex;
    gap:12px;
}
/* وقتی نقطه داریم کمی فاصله عمودی بده */
.kw-chat-row--has-dot{ margin-bottom:30px; }

.kw-chat-row--bot{ justify-content:flex-end; position: relative; }
.kw-chat-row--user{ justify-content:flex-start; }

/* دایره‌ی کنار پیام‌های bot (اختیاری) */
.kw-chat-bot-dot{
    width: 16px;
    height: 16px;
    border-radius: 75px;
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.39);
    box-shadow:
        inset 0 2px 2px rgba(255, 255, 255, 0.39),
        inset 0 -2px 2px rgba(255, 255, 255, 0.39);
    align-self: flex-end;
    position: absolute;
    left: 0;
    bottom: -20px;
}

/* حباب مشترک */
.kw-chat-bubble{
    padding:12px 25px; /* طبق خواست شما */
    width:fit-content;
    max-width:100%;
    backdrop-filter: saturate(120%) blur(0px);
}

/* حباب bot */
.kw-chat-bubble--bot{
    border:1px solid rgba(255,255,255,0.39);
    border-radius:20px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.78) 0%, #FFFFFF 100%);
    box-shadow:
        inset 0 2px 2px rgba(255,255,255,0.39),
        inset 0 -2px 2px rgba(255,255,255,0.39);
    max-width:331px;
}

/* حباب user */
.kw-chat-bubble--user{
    border: 2px solid rgba(255, 255, 255, 0.20);
    border-radius: 30px;
    background: #FFFFFF17;
    width: min(375px, 100%);
    position: relative;
}

.kw-chat__list > div:last-child .kw-chat-bubble,
.kw-chat__list > div:last-child .kw-chat-bot-dot,
.kw-chat__list > div:last-child .kw-thinking
{
    margin-bottom: 10rem;
}

/*.kw-chat-row:last-child .kw-chat-bubble,
.kw-chat-row:last-child .kw-chat-bot-dot,
.kw-thinking
{
    margin-bottom: 10rem;
}*/

.kw-chat-bubble--user::after,
.kw-chat-bubble--user::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    pointer-events: none;
}
.kw-chat-bubble--user::after{
    box-shadow:
        inset 0 -5px 7px rgba(255, 255, 255, 0.11),
        0 4px 17.9px rgba(0, 0, 0, 0.08);
}
.kw-chat-bubble--user::before{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 1) 100%);
    opacity: .30;
}

/* تایپوگرافی داخل حباب‌ها – IRANSansXVF، 16px، 600، letter-spacing -3% */
.kw-chat-bubble__text{
    /*font-family: "IRANSansXVF", IRANSans, "Segoe UI", system-ui, -apple-system, Arial, sans-serif;*/
    font-weight:600;
    font-size:16px;
    letter-spacing:-0.03em;
    word-break:break-word;
    white-space:pre-wrap;
    direction:rtl;
}
.kw-chat-bubble__text--bot{ color:#000; text-align:center; }
.kw-chat-bubble__text--user{ color:#FFF; text-align:right; }

@media (max-width:480px){
    .kw-chat-bubble--user{ width:100%; }
    .kw-chat-bubble--bot{ max-width:90vw; }
}
