/* Chat Builder - Animations */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Reference-aligned entrance animation for auth cards and modals */
.fade-in {
    animation: slideUp 0.3s ease-in;
}

.message-bubble {
    animation: slideUp 0.2s ease-out;
}

.typing-indicator {
    animation: pulse 1.5s ease-in-out infinite;
}

.conversation-link {
    transition: background 0.15s ease;
}

.clay-btn {
    transition: transform 0.1s ease, box-shadow 0.15s ease;
}

.clay-btn:active {
    transform: scale(0.98);
}

.clay-card {
    transition: box-shadow 0.2s ease;
}
