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

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

.btn-primary {
    @apply bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-lg flex items-center transition-colors;
}

.progress-bar {
    height: 6px;
    @apply rounded-full bg-gray-200 dark:bg-gray-700 overflow-hidden;
}

.progress-fill {
    height: 100%;
    @apply bg-indigo-600;
}

.process-card {
    @apply bg-white dark:bg-gray-800 rounded-lg shadow overflow-hidden transition-transform hover:scale-[1.02] duration-200;
}

.process-card-header {
    @apply px-4 py-3 border-b border-gray-200 dark:border-gray-700 flex justify-between items-center;
}

.process-card-body {
    @apply px-4 py-3;
}

.process-card-footer {
    @apply px-4 py-3 bg-gray-50 dark:bg-gray-700 flex justify-between items-center text-sm;
}

/* Animation for process cards */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.custom-process-card {
    animation: fadeIn 0.3s ease-out forwards;
    opacity: 0;
}

.custom-process-card:nth-child(1) { animation-delay: 0.1s; }
.custom-process-card:nth-child(2) { animation-delay: 0.2s; }
.custom-process-card:nth-child(3) { animation-delay: 0.3s; }
.custom-process-card:nth-child(4) { animation-delay: 0.4s; }
.custom-process-card:nth-child(5) { animation-delay: 0.5s; }