/* Phase 40 — Executive Command Center workspace */

.fo-exec-cc-page {
    padding: 1rem 0 2rem;
}

.fo-exec-cc-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.fo-exec-cc-title {
    font-size: 1.35rem;
    font-weight: 600;
}

.fo-exec-cc-health {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fo-exec-cc-health-ring {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--fo-border);
    background: radial-gradient(circle at 30% 30%, rgba(var(--fo-accent-rgb, 59, 130, 246), 0.12), var(--fo-card));
}

.fo-exec-cc-health-ring--strong {
    border-color: rgba(var(--fo-green-rgb), 0.55);
    box-shadow: 0 0 0 4px rgba(var(--fo-green-rgb), 0.12);
}

.fo-exec-cc-health-ring--healthy {
    border-color: rgba(var(--fo-accent-rgb, 59, 130, 246), 0.55);
}

.fo-exec-cc-health-ring--watch {
    border-color: rgba(var(--fo-yellow-rgb), 0.55);
}

.fo-exec-cc-health-ring--critical {
    border-color: rgba(var(--fo-red-rgb), 0.55);
    box-shadow: 0 0 0 4px rgba(var(--fo-red-rgb), 0.12);
}

.fo-exec-cc-health-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--fo-text-primary);
}

.fo-exec-cc-dimensions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.fo-exec-cc-dimension {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.15rem 0;
    border-bottom: 1px solid rgba(var(--fo-shadow-rgb, 0, 0, 0), 0.08);
}

.fo-exec-cc-dimension:last-child {
    border-bottom: none;
}

button.fo-stat-tile {
    cursor: pointer;
}

button.fo-stat-tile:focus-visible {
    outline: 2px solid var(--fo-accent);
    outline-offset: 2px;
}
