/*
 * Minimal Tailwind-classname-compatible shim — 5e.1.
 *
 * Lets login.html + setup.html render before the real Tailwind output
 * is generated (operator runs the standalone CLI per VENDOR.md). When
 * Tailwind output overwrites this file, every selector here exists in
 * the full output too, so the cutover is non-breaking.
 */

* { box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif; margin: 0; line-height: 1.5; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Background + text */
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-white { background-color: #ffffff; }
.bg-red-50 { background-color: #fef2f2; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700:hover, .hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.bg-green-600 { background-color: #16a34a; }
.bg-green-700:hover, .hover\:bg-green-700:hover { background-color: #15803d; }

.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-900 { color: #111827; }
.text-red-700 { color: #b91c1c; }
.text-white { color: #ffffff; }

/* Spacing */
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.mt-2 { margin-top: 0.5rem; } .mt-8 { margin-top: 2rem; } .mt-12 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; } .mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; }
.p-3 { padding: 0.75rem; } .p-4 { padding: 1rem; } .p-6 { padding: 1.5rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.flex { display: flex; } .gap-2 { gap: 0.5rem; } .gap-6 { gap: 1.5rem; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.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; }
.font-medium { font-weight: 500; } .font-semibold { font-weight: 600; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }

/* Forms */
input[type="text"], input[type="password"] { font-size: 1rem; line-height: 1.5; }
.w-full { width: 100%; }
.border { border: 1px solid #e5e7eb; }
.border-b { border-bottom: 1px solid #e5e7eb; }
.border-gray-200 { border-color: #e5e7eb; }
.rounded { border-radius: 0.375rem; }
.shadow { box-shadow: 0 1px 2px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.1); }

/* Interactive */
button { cursor: pointer; border: 0; font: inherit; }
button:hover { filter: brightness(0.95); }
details { padding: 0.25rem 0; }
summary { user-select: none; }
.cursor-pointer { cursor: pointer; }
.select-all { user-select: all; }
.break-all { word-break: break-all; }
