/* Extracted from site/status.html on 2026-04-14 */

.wrap { max-width: 600px; margin: 0 auto; padding: 48px 24px 80px; }
        h1 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
        .subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }

        .status-card { border: 2px solid var(--border); border-radius: 12px; padding: 20px; margin-bottom: 16px; }
        .status-card.ok { border-color: #22c55e; }
        .status-card.error { border-color: #ef4444; }
        .status-card.checking { border-color: var(--border); }

        .status-header { display: flex; align-items: center; justify-content: space-between; }
        .service-name { font-size: 16px; font-weight: 600; }
        .status-badge { padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
        .status-badge.ok { background: #dcfce7; color: #16a34a; }
        .status-badge.error { background: #fef2f2; color: #dc2626; }
        .status-badge.checking { background: #f3f4f6; color: #6b7280; }

        .status-detail { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
        .last-checked { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 24px; }

        .overall { text-align: center; padding: 24px; border-radius: 12px; margin-bottom: 24px; }
        .overall.ok { background: #dcfce7; }
        .overall.error { background: #fef2f2; }
        .overall.checking { background: #f3f4f6; }
        .overall h2 { font-size: 20px; font-weight: 700; margin: 0; }
        .overall p { font-size: 13px; margin: 4px 0 0; }

        .sla-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 32px; padding: 16px; border-top: 1px solid var(--border); }
