/* ScopeLux status page — Tamara-style dark status board */
.slx.slx-status-page,
.slx.slx-status-page[data-theme='light'],
.slx.slx-status-page[data-theme='dark'] {
    --slx-bg: #0f1117;
    --slx-text: #e8eaed;
    --slx-muted: #9aa0a6;
    background: #0f1117 !important;
    color: #e8eaed !important;
    min-height: 100vh;
}

.slx-status-page .slx-site-header {
    background: #0f1117 !important;
    border-bottom: 1px solid #252836;
}

.slx-status-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 20px 64px;
}

.slx-status-page-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 8px;
    color: #fff;
}

.slx-status-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 20px 0 28px;
    font-size: 13px;
    color: #9aa0a6;
}

.slx-status-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.slx-status-pill {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    display: inline-block;
}

.slx-status-pill--operational { background: #22c55e; }
.slx-status-pill--degraded { background: #f59e0b; }
.slx-status-pill--down { background: #ef4444; }
.slx-status-pill--maintenance { background: #3b82f6; }

.slx-status-overall-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    background: #171a23;
    border: 1px solid #2a2f3d;
    margin-bottom: 28px;
    color: #fff;
}

.slx-status-overall-banner strong,
.slx[data-theme='light'] .slx-status-page .slx-status-overall-banner strong,
.slx[data-theme='light'] .slx-status-overall-banner strong {
    font-size: 18px;
    font-weight: 800;
    color: #fff !important;
}

.slx-status-overall-banner.slx-status--operational {
    background: #132218;
    border-color: #22c55e;
}

.slx-status-overall-banner.slx-status--degraded {
    background: #2a2210;
    border-color: #f59e0b;
}

.slx-status-overall-banner.slx-status--down {
    background: #2a1215;
    border-color: #ef4444;
}

.slx-status-overall-banner.slx-status--maintenance {
    background: #101a2e;
    border-color: #3b82f6;
}

.slx-status-component {
    background: #171a23;
    border: 1px solid #2a2f3d;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.slx-status-component-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.slx-status-component-head h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff !important;
    flex: 1;
}

.slx-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.slx-status--operational .slx-status-dot { background: #22c55e; }
.slx-status--degraded .slx-status-dot { background: #f59e0b; }
.slx-status--down .slx-status-dot { background: #ef4444; }

.slx-status-uptime-bar {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    height: 34px;
    margin: 8px 0 6px;
}

.slx-status-uptime-bar i {
    flex: 1;
    min-width: 2px;
    border-radius: 2px 2px 0 0;
    font-style: normal;
    display: block;
    height: 100%;
    background: #22c55e;
}

.slx-status-uptime-bar i.degraded { background: #f59e0b; }
.slx-status-uptime-bar i.down { background: #ef4444; }
.slx-status-uptime-bar i.maintenance { background: #3b82f6; }

.slx-status-uptime-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #9aa0a6;
}

.slx-status-incidents {
    margin-top: 32px;
    background: #171a23;
    border: 1px solid #2a2f3d;
    border-radius: 12px;
    padding: 24px;
}

.slx-status-incidents h3 {
    margin: 0 0 12px;
    color: #fff !important;
    font-size: 16px;
}

.slx-status-incidents-empty {
    color: #9aa0a6;
    text-align: center;
    padding: 24px 0;
}

.slx-status-meta {
    color: #9aa0a6;
    font-size: 14px;
    margin: 0 0 20px;
}
