/* ─── Custom Styles ─── */

/* Drag & Drop Zone */
.drop-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}
.drop-zone:hover,
.drop-zone.dragover {
    border-color: #3b82f6;
    background: #eff6ff;
}
.drop-zone.dragover {
    transform: scale(1.02);
}

/* File item animation */
.file-item {
    transition: all 0.3s ease;
}
.file-item:hover {
    transform: translateX(4px);
}

/* Status badges */
.status-badge {
    @apply inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium;
}
.status-pending {
    @apply bg-yellow-100 text-yellow-800;
}
.status-in_progress {
    @apply bg-blue-100 text-blue-800;
}
.status-documents_uploaded {
    @apply bg-indigo-100 text-indigo-800;
}
.status-under_review {
    @apply bg-orange-100 text-orange-800;
}
.status-completed {
    @apply bg-green-100 text-green-800;
}

/* Card hover */
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
}

/* Loading spinner */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Progress bar animation */
.progress-bar {
    transition: width 1s ease-in-out;
}

/* Toast notification */
.toast {
    animation: slideIn 0.3s ease-out;
}
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
