body {
    margin: 0;
    font-family: "Avenir", "Segoe UI", Arial, sans-serif;
    background: #fff;
    color: #444;
}
.header {
    background: rgb(20, 20, 20);
    color: #fff;
    padding: 18px 0 12px 0;
    text-align: left;
    display: flex;
    align-items: center;
    padding-left: 32px;
}
.header img {
    height: 32px;
    margin-right: 10px;
}
.header-title {
    font-size: 1.5em;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.header-sub {
    font-size: 1.1em;
    font-weight: 400;
    margin-left: 8px;
    color: #e6f4fa;
}
.container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    padding: 0 16px;
}
.status-bar {
    background: #4fd6b1;
    color: #fff;
    padding: 18px 24px;
    border-radius: 4px;
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.status-table {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0;
    margin: 0;
    width: 100%;
}
.status-table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding: 18px 24px;
}
.status-table-row:last-child {
    border-bottom: none;
}
.status-name {
    font-size: 1.1em;
    color: #4a5a6a;
    display: flex;
    align-items: center;
}
.status-name .info {
    margin-left: 6px;
    font-size: 1em;
    color: #8ca0b3;
    cursor: pointer;
}
.status-value {
    color: #4fd6b1;
    font-weight: 500;
    font-size: 1.1em;
}
.desc {
    text-align: center;
    color: #5a6a7a;
    margin: 36px 0 32px 0;
    font-size: 1.1em;
}
@media (max-width: 600px) {
    .container {
        margin-top: 16px;
    }
    .status-bar {
        flex-direction: column;
        align-items: flex-start;
        font-size: 1em;
    }
    .status-table-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 10px;
    }
}