/* ═══════════════════════════════════════════════════════════════
   TYPING & SEEN STYLES v2
   ═══════════════════════════════════════════════════════════════ */


/* ───────────────────────────────────────────────────────────────
   GENEL SOHBET — Yazıyor Bar
   ─────────────────────────────────────────────────────────────── */
#main_typing_bar {
    padding: 0 12px;
    font-size: 12px;
    color: var(--sub-text, #888);
    background: transparent;
    height: 20px;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    border-top: 1px solid var(--border-color, rgba(0,0,0,0.07));
}
#main_typing_bar strong {
    color: var(--theme-color, #5a9ef8);
    font-weight: 600;
}


/* ───────────────────────────────────────────────────────────────
   ÜÇ NOKTA ANİMASYONU
   ─────────────────────────────────────────────────────────────── */
.typing_dots {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
}
.typing_dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--theme-color, #5a9ef8);
    animation: typingBounce 1.1s infinite ease-in-out;
    display: inline-block;
}
.typing_dots span:nth-child(1) { animation-delay: 0s;    }
.typing_dots span:nth-child(2) { animation-delay: 0.18s; }
.typing_dots span:nth-child(3) { animation-delay: 0.36s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0);    opacity: 0.4; }
    30%            { transform: translateY(-5px); opacity: 1;   }
}


/* ───────────────────────────────────────────────────────────────
   ÖZEL SOHBET — Karşı Taraf Yazıyor
   ─────────────────────────────────────────────────────────────── */
#ptyping {
    display: none;
    padding: 4px 10px;
    font-size: 12px;
    color: var(--sub-text, #888);
    align-items: center;
    gap: 6px;
    animation: fadeInUp 0.2s ease;
}
#ptyping.ptyping_active {
    display: flex;
}
#ptyping_avatar img,
#ptyping_av {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}
#ptyping .fa-ellipsis {
    color: var(--theme-color, #5a9ef8);
    font-size: 16px;
}


/* ───────────────────────────────────────────────────────────────
   ÖZEL SOHBET — GÖRÜLDÜ TİKİ
   ─────────────────────────────────────────────────────────────── */
.priv_seen_status {
    display: block;
    text-align: right;
    margin-top: 2px;
    margin-right: 4px;
    font-size: 11px;
    line-height: 1;
    height: 14px;
    transition: all 0.3s ease;
}
.seen_icon {
    font-size: 12px;
    transition: color 0.3s ease;
}
.seen_delivered {
    color: var(--sub-text, #aaa);
}
.seen_read {
    color: var(--theme-color, #5a9ef8);
    animation: seenPop 0.4s ease;
}

@keyframes seenPop {
    0%   { transform: scale(0.6); opacity: 0; }
    60%  { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1);   opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0);   }
}

@media (prefers-color-scheme: dark) {
    #main_typing_bar {
        border-top-color: rgba(255,255,255,0.06);
    }
    .seen_delivered {
        color: #666;
    }
}
