/* Tailwind CSS - Precompiled for shared hosting */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom styles */
.job-card {
    @apply bg-gray-800 rounded-lg p-4 border border-gray-700 hover:border-blue-500 transition-colors;
}

.timer-display {
    @apply text-2xl font-mono font-bold;
}

.status-badge {
    @apply px-2 py-1 rounded text-xs font-semibold;
}

.status-queued {
    @apply bg-yellow-600 text-yellow-100;
}

.status-running {
    @apply bg-green-600 text-green-100;
}

.status-paused {
    @apply bg-orange-600 text-orange-100;
}

.status-finished {
    @apply bg-blue-600 text-blue-100;
}

.status-archived {
    @apply bg-gray-600 text-gray-100;
}

