/* System Status */
.status-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.status-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.status-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overall-status {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.status-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.status-icon.operational {
    background: #d1fae5;
    color: #059669;
}

.status-icon.degraded {
    background: #fed7aa;
    color: #c2410c;
}

.status-icon.down {
    background: #fee2e2;
    color: #dc2626;
}

.status-text {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.status-text.operational {
    color: #059669;
}

.status-text.degraded {
    color: #c2410c;
}

.status-text.down {
    color: #dc2626;
}

.components-section {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.components-section h2 {
    color: var(--primary);
    margin-bottom: 2rem;
}

.component-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.component-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.component-name {
    font-weight: 600;
    color: var(--dark);
}

.component-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-badge.operational {
    background: #d1fae5;
    color: #059669;
}

.status-badge.degraded {
    background: #fed7aa;
    color: #c2410c;
}

.status-badge.down {
    background: #fee2e2;
    color: #dc2626;
}

.response-time {
    color: #64748b;
    font-size: 0.875rem;
}

.uptime-section {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.uptime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.uptime-card {
    text-align: center;
}

.uptime-percentage {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--success);
}

.uptime-label {
    color: #64748b;
    margin-top: 0.5rem;
}

.last-updated {
    text-align: center;
    color: white;
    margin-top: 2rem;
    opacity: 0.9;
}
/* End System Status */