/* Minimal local utility layer replacing the browser Tailwind runtime. */
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.w-full { width: 100%; }
.h-3 { height: .75rem; }
.w-3 { width: .75rem; }
.h-4 { height: 1rem; }
.w-4 { width: 1rem; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.overflow-auto { overflow: auto; }
.rounded-full { border-radius: 9999px; }
.rounded-md { border-radius: .375rem; }
.border { border: 1px solid #d9dde5; }
.border-b { border-bottom: 1px solid #eef0f3; }
.border-dashed { border-style: dashed; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-blue-200 { border-color: #bfdbfe; }
.border-blue-300 { border-color: #93c5fd; }
.border-green-200 { border-color: #bbf7d0; }
.border-red-200 { border-color: #fecaca; }
.border-amber-200 { border-color: #fde68a; }
.border-emerald-200 { border-color: #a7f3d0; }
.border-white\/70 { border-color: rgba(255,255,255,.7); }
.bg-white { background: #fff; }
.bg-gray-50 { background: #f9fafb; }
.bg-blue-50 { background: #eff6ff; }
.bg-blue-100 { background: #dbeafe; }
.bg-green-50 { background: #f0fdf4; }
.bg-red-50 { background: #fef2f2; }
.bg-amber-50 { background: #fffbeb; }
.bg-emerald-50 { background: #ecfdf5; }
.bg-emerald-500 { background: #10b981; }
.bg-slate-900 { background: #0f172a; }
.bg-white\/70 { background: rgba(255,255,255,.7); }
.p-3 { padding: .75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.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; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 650; }
.font-bold { font-weight: 800; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: .025em; }
.leading-6 { line-height: 1.5rem; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-red-600 { color: #dc2626; }
.text-red-800 { color: #991b1b; }
.text-green-800 { color: #166534; }
.text-amber-800 { color: #92400e; }
.text-blue-700 { color: #1d4ed8; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-slate-900 { color: #0f172a; }
.text-emerald-900 { color: #064e3b; }
.text-emerald-950 { color: #022c22; }
.text-white { color: #fff; }
.shadow-sm { box-shadow: 0 1px 2px rgba(16,24,40,.05); }
.cursor-pointer { cursor: pointer; }
.disabled\:opacity-50:disabled { opacity: .5; }
.hover\:border-blue-300:hover { border-color: #93c5fd; }
.hover\:bg-blue-50:hover { background: #eff6ff; }
.hover\:bg-blue-100:hover { background: #dbeafe; }
.hover\:bg-slate-700:hover { background: #334155; }
.min-h-screen { min-height: 100vh; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.z-10 { z-index: 10; }
.pointer-events-none { pointer-events: none; }
.opacity-30 { opacity: .3; }
.transition { transition: all .15s ease; }
