/* Typing Indicator Style */
.typing-indicator {
    padding: 6px 14px;
    background: #ffffff;
    border-radius: 18px;
    font-size: 11px;
    color: #555;
    position: absolute;
    bottom: 65px; /* Box ko chat bar ke mutabiq upar niche karne ke liye */
    left: 15px;
    z-index: 999; /* Isse indicator sabse upar nazar ayega */
    border: 1px solid #e1e1e1;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.08);
    font-weight: normal;
    display: none; /* Default hide rahega, JS khud show karegi */
}

/* User ka naam bold karne ke liye */
.typing-indicator strong {
    color: #2c3e50;
    font-weight: 700;
}