/* GrabDiff base styles — compiled from Tailwind in production; checked in
   as a static fallback so the binary works without a Node build step.
   Hand-written subset; production deploy should regenerate via Tailwind CLI. */

:root {
  --bg: #fbfbfa;
  --bg-elev: #f1f1ee;
  --fg: #111;
  --fg-muted: #6b6b6b;
  --line: #e3e1dc;
  --accent: #cc3300;
  --ok: #2a7f3f;
  --warn: #b08000;
  --bad: #b3261e;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "Menlo", monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--font-sans); color: var(--fg); background: var(--bg); line-height: 1.5; }
code, pre { font-family: var(--font-mono); }

a { color: inherit; }
button { font: inherit; cursor: pointer; }

.bg-bg { background: var(--bg); }
.bg-bg-elev { background: var(--bg-elev); }
.bg-fg { background: var(--fg); }
.bg-red-100 { background: #fde2e0; }
.bg-green-100 { background: #d6f1de; }
.text-bg { color: var(--bg); }
.text-fg { color: var(--fg); }
.text-fg-muted { color: var(--fg-muted); }
.text-red-700 { color: var(--bad); }
.text-red-900 { color: #6a1010; }
.text-green-900 { color: #144020; }
.border-line { border-color: var(--line); }
.border-red-300 { border-color: #f1bdb8; }
.border-2 { border-width: 2px; }
.border, .border-t, .border-b { border-style: solid; border-color: var(--line); }
.border { border-width: 1px; }
.border-t { border-width: 1px 0 0 0; }
.border-b { border-width: 0 0 1px 0; }
.divide-y > * + * { border-top: 1px solid var(--line); }
.divide-line { border-color: var(--line); }

.rounded { border-radius: 6px; }
.rounded-md { border-radius: 8px; }
.rounded-lg { border-radius: 10px; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-sans { font-family: var(--font-sans); }
.tracking-tight { letter-spacing: -0.01em; }
.text-xs { font-size: 11px; }
.text-sm { font-size: 13px; }
.text-base { font-size: 15px; }
.text-lg { font-size: 17px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 24px; }
.text-3xl { font-size: 30px; }
.text-5xl { font-size: 40px; }
.text-6xl { font-size: 56px; }

.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex-1 { flex: 1; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.grid-cols-2 { grid-template-columns: 1fr 1fr; }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (min-width: 640px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}
.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.w-24 { width: 96px; }
.w-32 { width: 128px; }
.w-40 { width: 160px; }
.max-w-sm { max-width: 24rem; }
.max-w-xl { max-width: 36rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-xs { max-width: 16rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-auto { margin-left: auto; }
.ml-3 { margin-left: 12px; }
.ml-8 { margin-left: 32px; }
.my-1 { margin-top: 4px; margin-bottom: 4px; }
.my-3 { margin-top: 12px; margin-bottom: 12px; }
.my-6 { margin-top: 24px; margin-bottom: 24px; }
.my-16 { margin-top: 64px; margin-bottom: 64px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.py-1 { padding-top: 4px; padding-bottom: 4px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-6 { padding-top: 24px; padding-bottom: 24px; }
.py-8 { padding-top: 32px; padding-bottom: 32px; }
.py-10 { padding-top: 40px; padding-bottom: 40px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-20 { padding-top: 80px; padding-bottom: 80px; }
.px-1 { padding-left: 4px; padding-right: 4px; }
.px-2 { padding-left: 8px; padding-right: 8px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.px-5 { padding-left: 20px; padding-right: 20px; }
.py-1\.5 { padding-top: 6px; padding-bottom: 6px; }
.p-3 { padding: 12px; }
.p-4 { padding: 16px; }
.p-6 { padding: 24px; }
.p-8 { padding: 32px; }
.p-10 { padding: 40px; }
.space-y-2 > * + * { margin-top: 8px; }
.space-y-3 > * + * { margin-top: 12px; }
.space-y-4 > * + * { margin-top: 16px; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fixed { position: fixed; }
.bottom-6 { bottom: 24px; }
.right-6 { right: 24px; }
.shadow-lg { box-shadow: 0 6px 18px rgba(0,0,0,.12); }
.hover\:underline:hover { text-decoration: underline; }
.antialiased { -webkit-font-smoothing: antialiased; }

input, select { background: var(--bg); color: var(--fg); }
input:focus, select:focus { outline: 2px solid var(--fg); outline-offset: 2px; }

.status { display: inline-block; padding: 1px 8px; border-radius: 999px; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; }
.status-up, .status-ok    { background: var(--ok); color: white; }
.status-down              { background: var(--bad); color: white; }
.status-degraded, .status-changed, .status-warn { background: var(--warn); color: white; }
.status---, .status-error { background: var(--bg-elev); color: var(--fg-muted); }
