/* Dropzone highlight when dragging */
.dropzone-hover {
    border-color: #6366f1 !important;
    background-color: #e0e7ff !important;
    transition: all 0.2s ease;
}

.file-item {
    transition: all 0.2s ease;
}

.file-item:hover {
    transform: translateY(-2px);
}

.progress-bar {
    transition: width 0.3s ease;
}

/* Pulse animation for upload icon */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}