* { box-sizing: border-box; }

body {
    margin: 0;
    background: #14161c;
    color: #e8e8ec;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 32px 20px 64px;
}

h1 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.tabs a {
    padding: 8px 14px;
    border-radius: 999px;
    background: #1e212b;
    color: #9a9db0;
    text-decoration: none;
    font-size: 0.9rem;
}

.tabs a.active {
    background: #4a5cff;
    color: #fff;
}

.tabs.sub a {
    font-size: 0.82rem;
    padding: 6px 12px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    background: #1a1d26;
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    text-align: left;
    padding: 10px 14px;
    border-bottom: 1px solid #2a2e3a;
}

th {
    color: #9a9db0;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

tbody tr:last-child td {
    border-bottom: none;
}

.empty {
    text-align: center;
    color: #6c6f7f;
    padding: 24px;
}
