.status-overall {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.status-overall.operational {
    border-left: 4px solid #00c853;
    background: #e6f9ed;
}

.status-overall.degraded {
    border-left: 4px solid #ed8936;
    background: #fff5eb;
}

.status-overall.outage {
    border-left: 4px solid #e53e3e;
    background: #fee;
}

.status-overall h3 {
    font-size: 1.5rem;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
}

.status-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #e2e6ec;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-card h4 {
    font-size: 1rem;
}

.status-card .status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.operational {
    background: #00c853;
}

.status-indicator.degraded {
    background: #ed8936;
}

.status-indicator.outage {
    background: #e53e3e;
}

.status-indicator.maintenance {
    background: #0066cc;
}

.incident-timeline {
    border-left: 2px solid #e2e6ec;
    margin-left: 1rem;
    padding-left: 1.5rem;
}

.incident-item {
    position: relative;
    margin-bottom: 1.5rem;
}

.incident-item::before {
    content: '';
    position: absolute;
    left: -1.75rem;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0066cc;
}

.incident-item.resolved::before {
    background: #00c853;
}

.incident-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.incident-item .incident-time {
    font-size: 0.8125rem;
    color: #9aa3b2;
}

.incident-item .incident-message {
    color: #4a5568;
    margin-top: 0.5rem;
}

.refresh-notice {
    text-align: center;
    font-size: 0.8125rem;
    color: #9aa3b2;
    margin-top: 2rem;
}