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

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

.font-mono {
    font-family: 'Fira Code', monospace;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}
/* App Builder Styles */
pre {
    background: #0f0f23;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    color: #f8f8f2;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
}

/* Terminal animation */
@keyframes terminal-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}