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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

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

header {
    text-align: center;
    margin-bottom: 32px;
}

.logo {
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 10px;
}

header h1 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

.subtitle {
    font-size: 0.95rem;
    color: #2ecc71;
    font-weight: 500;
}

/* Metrics */
.metrics {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.metric-card {
    flex: 1;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    font-variant-numeric: tabular-nums;
}

.metric-label {
    font-size: 0.75rem;
    color: #868e96;
    margin-top: 4px;
}

/* Status list */
.status-list {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    margin-bottom: 24px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f3f5;
}

.status-item:last-child {
    border-bottom: none;
}

.status-name {
    font-size: 0.9rem;
    color: #495057;
}

.status-badge {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 12px;
}

.status-badge.ok {
    background: #d4edda;
    color: #155724;
}

/* Uptime */
.uptime {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    padding: 20px;
    margin-bottom: 24px;
}

.uptime h2 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 12px;
}

.uptime-days {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.uptime-day {
    flex: 1;
    height: 28px;
    border-radius: 2px;
}

.uptime-day.ok {
    background: #2ecc71;
}

.uptime-day.warn {
    background: #f39c12;
}

.uptime-text {
    font-size: 0.85rem;
    color: #868e96;
}

footer {
    text-align: center;
    margin-top: 40px;
    color: #adb5bd;
    font-size: 0.8rem;
}
