* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
    background: #fafafa;
    color: #2c2c2c;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 520px;
    width: 100%;
    padding: 40px 30px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

h1 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.badge {
    font-size: 11px;
    color: #888;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 3px;
}

.status-block {
    margin-bottom: 24px;
}

.status-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 13px;
}

.status-row:last-child { border-bottom: none; }

.label { color: #666; }
.value { color: #1a1a1a; font-weight: 500; }
.value.ok { color: #2d7a2d; }
.value.muted { color: #999; }

.info {
    padding: 14px 0;
    font-size: 12px;
    color: #666;
}

.info p { margin-bottom: 6px; }
.info a { color: #4a6fa5; text-decoration: none; }
.info a:hover { text-decoration: underline; }

footer {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid #eee;
    font-size: 11px;
    color: #999;
    text-align: center;
}