﻿* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    padding: 48px;
    max-width: 640px;
    width: 90%;
}
.status {
    display: inline-block;
    background: #e6f7e6;
    color: #1a7f1a;
    border: 1px solid #a3d9a3;
    border-radius: 20px;
    padding: 6px 16px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}
h1 { font-size: 28px; margin-bottom: 8px; }
p.sub { color: #666; margin-bottom: 28px; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
td { padding: 10px 8px; border-bottom: 1px solid #eee; }
td:first-child { color: #888; width: 40%; }
td:last-child { font-family: Consolas, monospace; }
.footer { margin-top: 28px; font-size: 13px; color: #999; }
