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

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

pre, code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
}

#output-display {
    white-space: pre-wrap;
}

/* Animation for code execution */
@keyframes pulse {
    0% { background-color: rgba(245, 158, 11, 0.1); }
    50% { background-color: rgba(245, 158, 11, 0.3); }
    100% { background-color: rgba(245, 158, 11, 0.1); }
}

.executing {
    animation: pulse 1s infinite;
}