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

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

canvas {
    display: block;
    background: #1a202c;
}

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

::-webkit-scrollbar-track {
    background: #2d3748;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #718096;
}

/* Animation for buttons */
button {
    transition: all 0.2s ease;
}

button:active {
    transform: scale(0.95);
}

/* Responsive canvas containers */
@media (max-width: 768px) {
    .canvas-container {
        height: 300px !important;
    }
}