/* Lightweight replacements for Tailwind CDN (faster page loads) */
.flex { display: flex; }
.inline { display: inline; }
.grid { display: grid; }
.block { display: block; }
.hidden { display: none; }
.w-full { width: 100%; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-xs { font-size: .75rem; }
.text-sm { font-size: .875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.mb-1 { margin-bottom: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-1 { margin-top: .25rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mx-2 { margin-left: .5rem; margin-right: .5rem; }
.p-3 { padding: .75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-2 { padding-left: .5rem; padding-right: .5rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.rounded { border-radius: .25rem; }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-full { border-radius: 9999px; }
.border { border: 1px solid #e5e7eb; }
.border-t { border-top: 1px solid #e5e7eb; }
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,.1); }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.space-y-3 > * + * { margin-top: .75rem; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }
.bg-white { background: #fff; }
.bg-gray-50 { background: #f9fafb; }
.bg-slate-50 { background: #f8fafc; }
.bg-slate-100 { background: #f1f5f9; }
.bg-slate-800 { background: #1e293b; color: #fff; }
.bg-indigo-600 { background: #4f46e5; color: #fff; }
.bg-indigo-700 { background: #4338ca; color: #fff; }
.bg-emerald-600 { background: #059669; color: #fff; }
.bg-blue-600 { background: #2563eb; color: #fff; }
.bg-rose-600 { background: #e11d48; color: #fff; }
.bg-green-600 { background: #16a34a; color: #fff; }
.bg-red-600 { background: #dc2626; color: #fff; }
.text-white { color: #fff; }
.text-gray-500 { color: #6b7280; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-green-700 { color: #15803d; }
.text-indigo-600 { color: #4f46e5; }
.text-indigo-700 { color: #4338ca; }
.text-indigo-100 { color: #e0e7ff; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:bg-red-600:hover { background: #dc2626; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.opacity-90 { opacity: .9; }
.xl\:col-span-2 { grid-column: span 2; }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .md\:grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
    .md\:col-span-2 { grid-column: span 2; }
    .md\:col-span-3 { grid-column: span 3; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

input, select, textarea, button { font: inherit; }
input.border, select.border, textarea.border { border: 1px solid #e5e7eb; border-radius: .5rem; }
.bg-gradient-to-r { background: linear-gradient(to right, #4f46e5, #1d4ed8); }
.from-indigo-600 { }
.to-blue-700 { }
