.workspace-status {
    white-space: nowrap;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 7px 10px;
    background: #f8fafc;
    color: var(--muted);
    font-size: .73rem;
    font-weight: 800;
    transition: .2s var(--ease);
}

.workspace-status[data-state="saving"] {
    color: #1d4ed8;
    background: #eff6ff;
    border-color: #bfdbfe;
}

.workspace-status[data-state="saved"] {
    color: #047857;
    background: #ecfdf5;
    border-color: #a7f3d0;
}

.workspace-status[data-state="pending"] {
    color: #b45309;
    background: #fffbeb;
    border-color: #fde68a;
}

.workspace-status[data-state="error"] {
    color: #b91c1c;
    background: #fef2f2;
    border-color: #fecaca;
}

