/* Minimal extras on top of Tailwind CDN */
html, body { height: 100%; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }