body {
    background: #0d1117;
    color: #f0f6fc;
    font-family: Inter, Arial, sans-serif;
}

.status-card,
.server-card {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 14px;
}

.status-card {
    padding: 24px;
    margin-bottom: 20px;
}

.server-card {
    padding: 18px 20px;
    margin-bottom: 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-dot.online {
    background: #3fb950;
    box-shadow: 0 0 10px rgba(63, 185, 80, .5);
}

.server-state.online {
    color: #3fb950;
}

.server-state.degraded {
    color: #d29922;
}

.server-state.offline {
    color: #f85149;
}

.server-state span {
    display: block;
    margin-top: 4px;
    color: #8b949e;
    font-size: 13px;
}