body {
    margin: 0;
    padding: 40px;
    font-family: system-ui, -apple-system, sans-serif;
    background: #0b0e14;
    color: #d0d0d0;
}

h1 {
    max-width: 1200px;
    margin: 0 auto 15px;
    font-size: 18px;
    font-weight: 500;
    color: #e5e7eb;
}

a {
    color: #8ab4f8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

table {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    border-collapse: collapse;
    background: #11151f;
    border-radius: 8px;
    overflow: hidden;
}

th {
    padding: 10px 12px;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    color: #9aa0a6;
    background: #0f1320;
}

td {
    padding: 10px 12px;
    font-size: 14px;
    border-top: 1px solid #1a1f2b;
}

tr:hover td {
    background: #171c27;
}

small {
    display: block;
    max-width: 1200px;
    margin: 10px auto;
    font-size: 12px;
    opacity: 0.5;
}

th:nth-child(1),
td:nth-child(1) {
    width: 60%;
}

th:nth-child(2),
td:nth-child(2) {
    width: 25%;
}

th:nth-child(3),
td:nth-child(3) {
    width: 15%;
    text-align: right;
}