* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100svh;

    background-color: #0B0B0C;
}
.wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

nav {
    padding: 20px;
}
nav img {
    width: 100%;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}
.status-table {
    max-width: inherit;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #ffffff5c;
    background: #ffffff0a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #ffffff;
}
.status-table thead th {
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.status-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    vertical-align: middle;
}
.status-table tbody tr:nth-child(even) {
    background: rgba(255,255,255,0.03);
}
.status-table tbody tr:hover {
    background: rgba(255,255,255,0.08);
}
.status-table tbody tr:last-child td {
    border-bottom: 0;
}
.status-table td:first-child {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    width: 90px;
}
.status-table .good::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-right: 10px;
    background: #22c55e;
    vertical-align: middle;
}
.status-table .bad::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-right: 10px;
    background: #c52222;
    vertical-align: middle;
}
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
}