/* Verified Access — minimal supplemental styles (Tailwind CDN covers the bulk). */
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.card { background: #fff; border: 1px solid #e2e8f0; border-radius: 0.75rem; }
.badge { display: inline-flex; align-items: center; padding: 0.125rem 0.55rem; border-radius: 9999px; font-size: 0.72rem; font-weight: 600; letter-spacing: .01em; }
.spinner { border: 3px solid #e2e8f0; border-top-color: #1c62f0; border-radius: 50%; width: 1.25rem; height: 1.25rem; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.fade-in { animation: fadein .15s ease-in; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
