/* Zenith Status Page Styles */

.status-page {
    padding-top: 6rem;
    padding-bottom: 4rem;
    max-width: 800px;
}

.status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.status-card {
    padding: 2rem;
    /* remove padding reset if inherited, keep clean */
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-main);
}

.status-pill {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    /* default */
    transition: all var(--transition-fast);
}

/* Status Colors */

/* Operational (Green) */
.status-operational {
    color: #4ade80;
    /* bright green */
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.2);
}

/* Degraded (Orange/Yellow - e.g. 500s or high latency if we could measure it, but mainly for requested 'Degraded' state) */
.status-degraded {
    color: #fbbf24;
    /* amber 400 */
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.2);
}

/* Outage (Red) */
.status-outage {
    color: #f87171;
    /* red 400 */
    background: rgba(248, 113, 113, 0.1);
    border-color: rgba(248, 113, 113, 0.2);
}

/* Loading (Gray) */
.status-loading {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color);
}

/* Button override for outline matching */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    display: flex;
    gap: 8px;
    align-items: center;
}