.status-page {
    width: min(920px, calc(100% - 40px));
    min-height: 70vh;
    margin: 0 auto;
    padding: 80px 0 100px;
}

.status-heading {
    margin-bottom: 42px;
}

.status-heading h1 {
    margin: 10px 0 14px;
    color: #f5f5f5;
    font-size: clamp(44px, 7vw, 76px);
    line-height: 1;
}

.status-heading > p:last-child {
    color: #aaa;
    font-size: 18px;
}

.overall-status,
.status-components {
    border: 1px solid #2d2d2d;
    border-radius: 14px;
    background: #111;
}

.overall-status {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    padding: 28px 30px;
}

.overall-status div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.overall-status small {
    color: #8b8b8b;
    font-size: 11px;
    letter-spacing: 2px;
}

.overall-status strong {
    color: #f5f5f5;
    font-size: 24px;
}

.status-components {
    overflow: hidden;
}

.status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 0 28px;
    border-bottom: 1px solid #292929;
}

.status-row:last-child {
    border-bottom: 0;
}

.status-row > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.status-row strong {
    color: #eee;
    font-size: 17px;
}

.component-label {
    font-size: 14px;
    font-weight: 700;
}

.status-dot {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-radius: 50%;
    background: #777;
}
.operational .status-dot {
    background: #36d17c;
    box-shadow: 0 0 14px rgba(54,209,124,.45);
}

.degraded .status-dot {
    background: #ffb020;
    box-shadow: 0 0 14px rgba(255,176,32,.45);
}

.outage .status-dot {
    background: #ff4d57;
    box-shadow: 0 0 14px rgba(255,77,87,.45);
}

.unknown .status-dot {
    background: #777;
}

.operational .component-label {
    color: #36d17c;
}

.degraded .component-label {
    color: #ffb020;
}

.outage .component-label {
    color: #ff4d57;
}

.unknown .component-label {
    color: #999;
}

.last-checked {
    margin-top: 18px;
    color: #777;
    font-size: 13px;
    text-align: right;
}

@media (max-width: 620px) {
    .status-page {
        padding-top: 50px;
    }

    .status-row {
        min-height: 70px;
        padding: 0 20px;
    }

    .overall-status {
        padding: 24px 20px;
    }
}
