/*
 * Utility classes extracted from Tailwind (only what the pages actually use).
 * Updated for white minimal theme.
 */

/* ===== Layout ===== */
.flex { display: flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.relative { position: relative; }

/* ===== Spacing ===== */
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.p-5 { padding: 1.25rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }

/* ===== Grid ===== */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ===== Sizing ===== */
.w-full { width: 100%; }

/* ===== Typography ===== */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.leading-7 { line-height: 1.75rem; }

/* ===== Border ===== */
.rounded-2xl { border-radius: 1rem; }

/* ===== Interactivity ===== */
.cursor-pointer { cursor: pointer; }
.accent-cyan-400 { accent-color: #4F46E5; }

/* ===== Z-index ===== */
.z-10 { z-index: 10; }

/* ===== Text Colors (adapted for white theme) ===== */
.text-red-400 { color: #DC2626; }
.text-red-300\/80 { color: rgba(220, 38, 38, 0.75); }
.text-blue-400 { color: #2563EB; }
.text-blue-300\/80 { color: rgba(37, 99, 235, 0.75); }
.text-yellow-300 { color: #B45309; }
.text-yellow-200\/85 { color: rgba(180, 83, 9, 0.8); }
.text-yellow-400 { color: #D97706; }
.text-orange-300 { color: #EA580C; }
.text-cyan-300 { color: #0284C7; }
.text-violet-300 { color: #7C3AED; }
.text-emerald-300 { color: #059669; }
.text-slate-300 { color: #6B7280; }
.text-slate-200 { color: #4B5563; }

/* ===== Responsive: lg (>=1024px) ===== */
@media (min-width: 1024px) {
    .lg\:flex-row { flex-direction: row; }
    .lg\:justify-between { justify-content: space-between; }
    .lg\:items-center { align-items: center; }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .lg\:col-span-4 { grid-column: span 4 / span 4; }
    .lg\:col-span-8 { grid-column: span 8 / span 8; }
}

/* ===== Responsive: xl (>=1280px) ===== */
@media (min-width: 1280px) {
    .xl\:col-span-3 { grid-column: span 3 / span 3; }
    .xl\:col-span-9 { grid-column: span 9 / span 9; }
}
