/* status.css — Status page */
.status-card .status-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.status-indicator {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    background: var(--text-faint);
}
.status-indicator::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.2;
    animation: status-pulse 2s ease-in-out infinite;
}
@keyframes status-pulse {
    0%, 100% { transform: scale(0.9); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.05; }
}
.status-indicator.ok { background: var(--success); color: var(--success); }
.status-indicator.warn { background: var(--warn); color: var(--warn); }
.status-indicator.err { background: var(--error); color: var(--error); }
.status-indicator.loading { background: var(--indigo); color: var(--indigo); }
.status-text h2 { font-size: 1.2rem; color: var(--text-strong); font-weight: 700; margin-bottom: 0.15rem; }
.status-text p { color: var(--text-dim); margin: 0; font-size: 0.92rem; }
.status-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    padding: 1.1rem;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}
.status-meta dt { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); margin-bottom: 0.25rem; }
.status-meta dd { font-size: 0.95rem; color: var(--text-strong); font-weight: 600; font-family: var(--mono); }
.dot-mini { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 0.4rem; vertical-align: middle; }
.dot-ok { background: var(--success); }
.dot-warn { background: var(--warn); }
.dot-err { background: var(--error); }

/* Response-time panel */
.status-rt {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem;
    margin-bottom: 1.5rem;
}
.status-rt-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}
.status-rt-header h3 {
    font-size: 0.95rem;
    color: var(--text-strong);
    font-weight: 700;
    margin: 0;
}
.status-rt-window {
    font-size: 0.72rem;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}
.status-rt-empty {
    color: var(--text-dim);
    font-size: 0.88rem;
    padding: 0.5rem 0;
}
.status-rt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.status-rt-table th,
.status-rt-table td {
    padding: 0.45rem 0.6rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.status-rt-table th {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-faint);
    font-weight: 700;
}
.status-rt-table th.num-col,
.status-rt-table td.num-col {
    text-align: right;
    font-family: var(--mono);
    color: var(--text-strong);
}
.status-rt-table tbody tr:last-child td { border-bottom: 0; }
.status-rt-table tbody tr.is-overall td {
    color: var(--text-strong);
    font-weight: 700;
}
.status-rt-table tbody tr.is-overall td:first-child::before {
    content: "★ ";
    color: var(--accent);
}
.status-rt-table td:first-child {
    font-family: var(--mono);
    color: var(--text-strong);
    font-size: 0.82rem;
}
.status-rt-note {
    color: var(--text-faint);
    font-size: 0.78rem;
    margin: 0.85rem 0 0;
    line-height: 1.5;
}
.status-rt-note code {
    background: rgba(255,255,255,0.05);
    padding: 0.05rem 0.3rem;
    border-radius: 3px;
    font-family: var(--mono);
}
