@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

#conversation {
    scroll-behavior: smooth;
}

#conversation::-webkit-scrollbar {
    width: 6px;
}

#conversation::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#conversation::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

#conversation::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.animate-pulse {
    animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}