* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #0b0b0f;
    color: #eee;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 20px;
}

h1 {
    margin-bottom: 4px;
}

.muted {
    color: #888;
    font-size: 13px;
}

.service-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 20px;

    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot.up {
    background: #3ddc84;
    box-shadow: 0 0 8px #3ddc84;
}

.dot.down {
    background: #ff5555;
    box-shadow: 0 0 8px #ff5555;
}

.dot.unknown {
    background: #888;
}

.service-name {
    font-weight: bold;
    flex: 1;
}

.service-name a {
    color: inherit;
    text-decoration: none;
}

.service-name a:hover {
    text-decoration: underline;
}

.service-status {
    font-size: 14px;
    color: #ccc;
}

.service-detail {
    flex-basis: 100%;
    font-size: 12px;
    margin-top: 4px;
}

@media (min-width: 600px) {
    .service-detail {
        flex-basis: auto;
        margin-top: 0;
        margin-left: auto;
        text-align: right;
    }
}
