/* Custom styles */
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Smooth transitions for interactive elements */
button, a {
    transition: all 0.2s ease;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}
/* Improved loading styles */
#loadingIndicator {
    background: rgba(17, 24, 39, 0.8);
}

/* Drop zone improvements */
#dropZone {
    transition: all 0.3s ease;
}

#dropZone.dragging {
    background: rgba(159, 122, 234, 0.1);
    border-color: #9f7aea !important;
    transform: scale(1.01);
}

/* Animation for loading */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}