* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f5f7;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    width: 100%;
    padding: 32px;
    margin: 0 auto;
}

h1 {
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 28px;
    font-weight: 600;
}

.subtitle {
    color: #6b6b6b;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 400;
}

.service {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 18px 20px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.service:hover {
    background: #f5f5f5;
}

.service-name {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 15px;
}

.status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.operational {
    background: #34c759;
}

.status-indicator.down {
    background: #ff3b30;
}

.status-indicator.checking {
    background: #ff9500;
}

.status-text {
    font-weight: 400;
    font-size: 13px;
}

.status-text.operational {
    color: #34c759;
}

.status-text.down {
    color: #ff3b30;
}

.status-text.checking {
    color: #ff9500;
}

.last-checked {
    text-align: center;
    color: #8e8e93;
    font-size: 12px;
    margin-top: 24px;
}

.overall-status {
    text-align: center;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid;
}

.overall-status.all-operational {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}

.overall-status.degraded {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}
