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

:root {
    --primary: #24bf62;
}

@theme {
    --color-primary: #24bf62;
}

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

.font-display {
    font-family: 'Space Grotesk', sans-serif;
}

.dropzone {
    transition: border-color .2s ease, background-color .2s ease, transform .15s ease;
}

.dropzone.drag-active {
    border-color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
    transform: scale(1.005);
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

.spin-slow {
    animation: spin-slow 1s linear infinite;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fade-in .3s ease forwards;
}

.bg-grid {
    background-image:
        linear-gradient(to right, rgba(59, 130, 246, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(59, 130, 246, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
}

::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

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

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