/* Minimal app stylesheet to satisfy staticfiles and provide small custom tweaks.
   Project uses Tailwind CDN for core styling; this file can hold small overrides. */
:root {
  --brand: #ef4444; /* red-600 */
}

/* Small accessibility focus outline */
:focus {
  outline: 2px solid rgba(255,255,255,0.08);
  outline-offset: 2px;
}

/* Ensure code fences readable */
pre { background: #0f172a; padding: 1rem; border-radius: 6px; }
