/* ==========================================================================
   Vindam Landing — Chatbot Styles
   Message bubbles, typing indicator, and chat-specific UI.
   ========================================================================== */

/* --- Message Bubbles --- */
.message-user {
    animation: slideInRight 0.4s ease-out;
    align-self: flex-end;
    max-width: 75%;
    position: relative;
    padding: 10px 16px;
    background: rgba(109, 190, 218, 0.06);
    border: 1px solid rgba(109, 190, 218, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.message-bot {
    animation: slideInLeft 0.4s ease-out;
    align-self: flex-start;
    max-width: 75%;
    position: relative;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Remove corner decoration */
.message-user::before,
.message-bot::before {
    display: none;
}

/* --- Message Timestamp --- */
.message-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Typing Indicator --- */
.typing-indicator {
    display: inline-flex;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInLeft 0.3s ease-out;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: rgba(109, 190, 218, 0.7);
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}