body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #1F1F1F;
}

/* Bot message link styles */
.bot-message a {
    color: #4da6ff;
    text-decoration: underline;
}

.bot-message a:hover {
    color: #80c1ff;
}

/* Scrollbar Styles */
.chat-scroll::-webkit-scrollbar {
    width: 5px;
}

.chat-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.chat-scroll::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

/* Message Animation */
.message-animation {
    animation: slideIn 0.3s ease-out;
}

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

/* Typing Indicator Animation */
.typing-dot {
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Progress Bar Animation */
.animate-progress {
    animation: progress 1s infinite linear;
    width: 50%;
}

@keyframes progress {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(250%);
    }
}
