/* Phase 6 split from frontend/static/app.css */
/* Section: monitor */

/* ---------- Monitor System Cards ---------- */
.system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.system-item {
    background: rgba(7, 20, 38, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px;
}

.system-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.system-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}
