/* PLACEHOLDER tailwind.css — minimal hand-written subset of utilities used
 * in public/index.html, so the page still renders if `npm run build:tailwind`
 * has not been run yet (e.g. fresh checkout before npm install).
 *
 * TODO (devops): run `npm run build:tailwind` before prod deploy to regenerate
 * this file with the full Tailwind output. Most visual styling comes from
 * style.css; this file only handles layout utilities sprinkled in HTML.
 *
 * Generated subset extracted by grep — keep in sync if you add new tailwind
 * classes inline in HTML.
 */

/* layout */
.max-w-md { max-width: 28rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }

/* spacing — covers p-1..p-8, m-1..m-8, mb-1..mb-8 (most common) */
.p-1 { padding: .25rem; } .p-2 { padding: .5rem; } .p-3 { padding: .75rem; }
.p-4 { padding: 1rem; } .p-5 { padding: 1.25rem; } .p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.pt-2 { padding-top: .5rem; } .pt-4 { padding-top: 1rem; } .pt-8 { padding-top: 2rem; }
.pb-2 { padding-bottom: .5rem; } .pb-4 { padding-bottom: 1rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.m-2 { margin: .5rem; } .m-4 { margin: 1rem; }
.mt-2 { margin-top: .5rem; } .mt-3 { margin-top: .75rem; } .mt-4 { margin-top: 1rem; }
.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; }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-3 > * + * { margin-top: .75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* typography */
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.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; }

/* color — keep minimal; component styles in style.css supply real palette */
.text-white { color: #fff; }
.bg-white { background-color: #fff; }

/* misc */
.rounded { border-radius: .25rem; }
.rounded-lg { border-radius: .5rem; }
.rounded-full { border-radius: 9999px; }
.shadow { box-shadow: 0 1px 3px 0 rgba(0,0,0,.1); }
.cursor-pointer { cursor: pointer; }
.overflow-hidden { overflow: hidden; }
