/*
 * error.css — page-specific styles for the network error page (error.blade.php).
 * Extracted from that page's inline @push('styles') block. Shared chrome
 * (header/footer/background) lives in app.css.
 */

.err { display: flex; flex-direction: column; gap: 20px; }

.err-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.err-circle { width: 56px; height: 56px; border-radius: 9999px; background: #fee2e2;
              display: flex; align-items: center; justify-content: center; }
.err-circle svg { width: 28px; height: 28px; color: #ef4444; }
.err-eyebrow { font-size: 12px; font-weight: 600; color: #ef4444; text-transform: uppercase; letter-spacing: 0.1em; margin: 0; }
.err-title { font-size: 20px; font-weight: 700; color: #111827; margin: 4px 0 0; }
.err-sub { font-size: 14px; color: #6b7280; margin: 2px 0 0; }

.red-box { border: 1px solid #fecaca; background: #fef2f2; border-radius: 12px; padding: 12px 16px; }
.red-box p { font-size: 14px; color: #991b1b; line-height: 1.6; margin: 0; }

.help { background: #f9fafb; border-radius: 12px; padding: 16px; font-size: 12px; color: #4b5563; line-height: 1.7; }
.help p { margin: 0 0 8px; }
.help p:last-child { margin-bottom: 0; }
.help .label { font-weight: 600; color: #374151; }
