/* /Components/ApiDialog.razor.rz.scp.css */
.sf-dialog-overlay[b-kecbvzodzq] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    animation: fadeIn-b-kecbvzodzq 0.2s ease-out;
}

.sf-dialog[b-kecbvzodzq] {
    width: 100%;
    max-width: 650px;
    padding: 2rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.sf-btn-close-absolute[b-kecbvzodzq] {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}

.sf-btn-close-absolute:hover[b-kecbvzodzq] {
    color: #fff;
}

.sf-header-icon[b-kecbvzodzq] {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.sf-subtitle[b-kecbvzodzq] {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.sf-dialog-footer[b-kecbvzodzq] {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.sf-label[b-kecbvzodzq] {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

[b-kecbvzodzq] .sf-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.875rem 1.125rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.2s;
}

[b-kecbvzodzq] .sf-input:focus {
    outline: none;
    border-color: var(--sf-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px var(--sf-primary-glow);
}

[b-kecbvzodzq] .sf-input option {
    background: var(--sf-surface-0);
    color: #fff;
}

[b-kecbvzodzq] .sf-textarea {
    resize: vertical;
}

.sf-btn-outline[b-kecbvzodzq] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.sf-btn-outline:hover[b-kecbvzodzq] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

@keyframes fadeIn-b-kecbvzodzq {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* /Components/ConfirmDialog.razor.rz.scp.css */
.sf-modal-backdrop[b-h4b46mqe2d] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8.0px);
    -webkit-backdrop-filter: blur(8.0px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000; /* Ensure it stays above other overlays */
    animation: fadeInBackdrop-b-h4b46mqe2d 0.2s ease-out;
}

@keyframes fadeInBackdrop-b-h4b46mqe2d {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.sf-modal-panel[b-h4b46mqe2d] {
    width: 100%;
    max-width: 440px;
    background: #141927;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(99, 102, 241, 0.12);
    animation: slideUp-b-h4b46mqe2d 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

@keyframes slideUp-b-h4b46mqe2d {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.sf-modal-header[b-h4b46mqe2d] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem 1.125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sf-modal-title-block[b-h4b46mqe2d] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sf-modal-icon[b-h4b46mqe2d] {
    font-size: 1.35rem;
    line-height: 1;
}

.sf-modal-title[b-h4b46mqe2d] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.sf-modal-close[b-h4b46mqe2d] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.4);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.sf-modal-close:hover[b-h4b46mqe2d] {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
}

.sf-modal-body[b-h4b46mqe2d] {
    padding: 1.5rem 1.75rem;
}

.sf-modal-text[b-h4b46mqe2d] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

.sf-modal-footer[b-h4b46mqe2d] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.12);
}

.sf-btn-ghost[b-h4b46mqe2d] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    padding: 0.55rem 1.25rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.sf-btn-ghost:hover[b-h4b46mqe2d] {
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.85);
}

.sf-btn-action[b-h4b46mqe2d] {
    padding: 0.55rem 1.25rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.sf-btn-primary[b-h4b46mqe2d] {
    background: #6366f1;
    color: #fff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.sf-btn-primary:hover[b-h4b46mqe2d] {
    background: #4f46e5;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.sf-btn-danger[b-h4b46mqe2d] {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.25);
    color: #f87171;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.08);
}

.sf-btn-danger:hover[b-h4b46mqe2d] {
    background: rgba(244, 63, 94, 0.25);
    border-color: rgba(244, 63, 94, 0.45);
    color: #fff;
    box-shadow: 0 4px 20px rgba(244, 63, 94, 0.25);
}
/* /Components/Scenarios/CreateScenarioDialog.razor.rz.scp.css */
.sf-modal-backdrop[b-yn24hqi9gx] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    animation: fadeInBackdrop-b-yn24hqi9gx 0.2s ease-out;
}

@keyframes fadeInBackdrop-b-yn24hqi9gx {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.sf-modal-panel[b-yn24hqi9gx] {
    width: 100%;
    max-width: 540px;
    background: #141927;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(99, 102, 241, 0.12);
    animation: slideUp-b-yn24hqi9gx 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

@keyframes slideUp-b-yn24hqi9gx {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)  scale(1); }
}

/* ── Header ──────────────────────────── */
.sf-modal-header[b-yn24hqi9gx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sf-modal-title-block[b-yn24hqi9gx] {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.sf-modal-icon[b-yn24hqi9gx] {
    font-size: 1.75rem;
    line-height: 1;
    opacity: 0.85;
}

.sf-modal-title[b-yn24hqi9gx] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px;
}

.sf-modal-subtitle[b-yn24hqi9gx] {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.sf-modal-close[b-yn24hqi9gx] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.4);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.sf-modal-close:hover[b-yn24hqi9gx] {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
}

/* ── Body ────────────────────────────── */
.sf-modal-body[b-yn24hqi9gx] {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sf-form-group[b-yn24hqi9gx] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.sf-label[b-yn24hqi9gx] {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sf-label-required[b-yn24hqi9gx] {
    color: var(--sf-rose);
    margin-left: 2px;
}

.sf-input[b-yn24hqi9gx] {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.9375rem;
    font-family: var(--sf-font-base);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
}

.sf-input:focus[b-yn24hqi9gx] {
    outline: none;
    border-color: var(--sf-primary);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.sf-input[b-yn24hqi9gx]::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.sf-input-mono[b-yn24hqi9gx] {
    font-family: var(--sf-font-mono);
    font-size: 0.875rem;
    letter-spacing: 0.03em;
}

/* Native <select> styled to match sf-input */
.sf-select[b-yn24hqi9gx] {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.sf-select option[b-yn24hqi9gx] {
    background: #1a2035;
    color: #fff;
    font-family: var(--sf-font-mono);
    font-size: 0.85rem;
}

/* Custom state free-text box shown below the dropdown */
.sf-input-custom[b-yn24hqi9gx] {
    margin-top: 0.5rem;
    text-transform: uppercase;
}


.sf-textarea[b-yn24hqi9gx] {
    resize: vertical;
    min-height: 80px;
}

.sf-field-error[b-yn24hqi9gx] {
    font-size: 0.75rem;
    color: var(--sf-rose);
    margin-top: 2px;
}

.sf-field-hint[b-yn24hqi9gx] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    margin: 2px 0 0;
}

.sf-form-error[b-yn24hqi9gx] {
    background: rgba(244, 63, 94, 0.08);
    border: 1px solid rgba(244, 63, 94, 0.25);
    color: #fb7185;
    font-size: 0.8125rem;
    padding: 0.625rem 1rem;
    border-radius: 8px;
}

/* ── Footer ──────────────────────────── */
.sf-modal-footer[b-yn24hqi9gx] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sf-btn-ghost[b-yn24hqi9gx] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--sf-font-base);
}

.sf-btn-ghost:hover:not(:disabled)[b-yn24hqi9gx] {
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.75);
}

.sf-btn-ghost:disabled[b-yn24hqi9gx] {
    opacity: 0.4;
    cursor: not-allowed;
}

.sf-btn-spinner[b-yn24hqi9gx] {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-yn24hqi9gx 0.7s linear infinite;
    margin-right: 6px;
    vertical-align: middle;
}

@keyframes spin-b-yn24hqi9gx {
    to { transform: rotate(360deg); }
}
/* /Components/Scenarios/RuleCard.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════
   RuleCard — scoped styles  (rc- prefix)
   ═══════════════════════════════════════════════════════════ */

/* ── Card shell ─────────────────────────────────────── */
.rc-card[b-pihilf9nrj] {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.rc-card--editing[b-pihilf9nrj] {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.12);
}

/* ══════════════════════════════════════════════════════
   VIEW MODE
   ══════════════════════════════════════════════════════ */
.rc-view-header[b-pihilf9nrj] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
}

.rc-view-endpoint[b-pihilf9nrj] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.rc-method-badge[b-pihilf9nrj] {
    display: inline-block;
    font-family: var(--sf-font-mono);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 2px 7px;
    border-radius: 4px;
    flex-shrink: 0;
}

.rc-method-get[b-pihilf9nrj]    { background: rgba(255,255,255,0.07); color: #e2e8f0; }
.rc-method-post[b-pihilf9nrj]   { background: rgba(16,185,129,0.15);  color: #34d399; }
.rc-method-put[b-pihilf9nrj]    { background: rgba(245,158,11,0.15);  color: #fbbf24; }
.rc-method-delete[b-pihilf9nrj] { background: rgba(244,63,94,0.15);   color: #fb7185; }
.rc-method-patch[b-pihilf9nrj]  { background: rgba(168,85,247,0.15);  color: #c084fc; }

.rc-path[b-pihilf9nrj] {
    font-family: var(--sf-font-mono);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rc-api-missing[b-pihilf9nrj] {
    font-size: 0.8125rem;
    color: #fb7185;
}

.rc-inactive-tag[b-pihilf9nrj] {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 100px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Meta row (priority, delay, status, next state) */
.rc-view-meta[b-pihilf9nrj] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.rc-meta-chip[b-pihilf9nrj] {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 2px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.rc-status-chip[b-pihilf9nrj] { font-family: var(--sf-font-mono); }
.rc-status-2xx[b-pihilf9nrj]  { color: #34d399; background: rgba(52,211,153,0.1);  border-color: rgba(52,211,153,0.2);  }
.rc-status-3xx[b-pihilf9nrj]  { color: #60a5fa; background: rgba(96,165,250,0.1);  border-color: rgba(96,165,250,0.2);  }
.rc-status-4xx[b-pihilf9nrj]  { color: #fbbf24; background: rgba(251,191,36,0.1);  border-color: rgba(251,191,36,0.2);  }
.rc-status-5xx[b-pihilf9nrj]  { color: #fb7185; background: rgba(251,113,133,0.1); border-color: rgba(251,113,133,0.2); }

.rc-arrow[b-pihilf9nrj] {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
}

.rc-next-state[b-pihilf9nrj] {
    font-family: var(--sf-font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #818cf8;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 2px 8px;
    border-radius: 5px;
}

/* Edit / delete buttons */
.rc-view-btns[b-pihilf9nrj] {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.rc-edit-icon:hover[b-pihilf9nrj] {
    color: #818cf8 !important;
    background: rgba(99, 102, 241, 0.08) !important;
}

/* Expanded code preview area */
.rc-view-body[b-pihilf9nrj] {
    display: flex;
    gap: 1rem;
    padding: 0 1.25rem 1rem;
    flex-wrap: wrap;
}

.rc-code-block[b-pihilf9nrj] {
    flex: 1;
    min-width: 200px;
}

.rc-code-label[b-pihilf9nrj] {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 4px;
}

.rc-pre[b-pihilf9nrj] {
    font-family: var(--sf-font-mono);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 0.625rem 0.875rem;
    margin: 0;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.rc-pre--body[b-pihilf9nrj] {
    max-height: 100px;
    overflow-y: auto;
}

/* ══════════════════════════════════════════════════════
   EDIT MODE
   ══════════════════════════════════════════════════════ */
.rc-edit-header[b-pihilf9nrj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(99, 102, 241, 0.04);
}

.rc-edit-title[b-pihilf9nrj] {
    font-size: 0.875rem;
    font-weight: 700;
    color: #a5b4fc;
    letter-spacing: 0.02em;
}

.rc-edit-actions[b-pihilf9nrj] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.rc-cancel-btn[b-pihilf9nrj] {
    padding: 0.4rem 0.875rem;
    font-size: 0.8125rem;
}

.rc-save-btn[b-pihilf9nrj] {
    padding: 0.4rem 1rem;
    font-size: 0.8125rem;
}

/* Edit body */
.rc-edit-body[b-pihilf9nrj] {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Field rows */
.rc-field-row[b-pihilf9nrj] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.rc-field-row--halves > .rc-field[b-pihilf9nrj] {
    flex: 1;
}

.rc-field[b-pihilf9nrj] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
    min-width: 0;
}

.rc-field--wide[b-pihilf9nrj]   { flex: 2; }
.rc-field--narrow[b-pihilf9nrj] { flex: 1; min-width: 90px; max-width: 130px; }
.rc-field--auto[b-pihilf9nrj]   { flex: 0 0 auto; }

/* Labels */
.rc-label[b-pihilf9nrj] {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

.rc-required[b-pihilf9nrj] { color: var(--sf-rose); }

.rc-hint[b-pihilf9nrj] {
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.2);
    margin-left: 4px;
}

/* Inputs */
.rc-input[b-pihilf9nrj] {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    color: #fff;
    font-size: 0.875rem;
    font-family: var(--sf-font-base);
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.rc-input:focus[b-pihilf9nrj] {
    outline: none;
    border-color: var(--sf-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
    background: rgba(99, 102, 241, 0.04);
}

.rc-input[b-pihilf9nrj]::placeholder { color: rgba(255,255,255,0.18); }

/* Select override */
.rc-select[b-pihilf9nrj] {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
    cursor: pointer;
}

.rc-select option[b-pihilf9nrj] {
    background: #1a2035;
    color: #fff;
}

/* Monospace for state selects */
.rc-mono[b-pihilf9nrj] {
    font-family: var(--sf-font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.03em;
}

/* Textarea / code */
.rc-code[b-pihilf9nrj] {
    font-family: var(--sf-font-mono);
    font-size: 0.78rem;
    resize: vertical;
    line-height: 1.5;
}

/* ── Toggle switch ──────────────────────────────────── */
.rc-toggle-field[b-pihilf9nrj] {
    justify-content: flex-start;
}

.rc-toggle[b-pihilf9nrj] {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 22px;
    cursor: pointer;
    margin-top: 4px;
}

.rc-toggle input[b-pihilf9nrj] {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.rc-toggle-track[b-pihilf9nrj] {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.2s;
}

.rc-toggle-track[b-pihilf9nrj]::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: transform 0.2s, background 0.2s;
}

.rc-toggle input:checked + .rc-toggle-track[b-pihilf9nrj] {
    background: rgba(99, 102, 241, 0.6);
    border-color: rgba(99, 102, 241, 0.4);
}

.rc-toggle input:checked + .rc-toggle-track[b-pihilf9nrj]::after {
    transform: translateX(16px);
    background: #fff;
}
/* /Components/Scenarios/TransitionDetailsPanel.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════
   TransitionDetailsPanel Stylesheet
   ═══════════════════════════════════════════════════════════ */

.sf-details-panel[b-dkr93luzme] {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: transparent;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

/* Slide out of view when no rule is selected */
.sf-details-panel:not(.sf-details-panel--open)[b-dkr93luzme] {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

/* Slide in smoothly */
.sf-details-panel--open[b-dkr93luzme] {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}

.sb-panel-header[b-dkr93luzme] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.sb-panel-title[b-dkr93luzme] {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}

.sb-panel-close[b-dkr93luzme] {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.15s;
    line-height: 1;
    padding: 2px;
}

.sb-panel-close:hover[b-dkr93luzme] {
    color: #fff;
}

.sb-panel-body[b-dkr93luzme] {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Empty Panel View */
.sb-empty-panel[b-dkr93luzme] {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
    gap: 0.75rem;
}

.sb-empty-panel-icon[b-dkr93luzme] {
    font-size: 2.5rem;
    opacity: 0.3;
}

.sb-empty-panel p[b-dkr93luzme] {
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

/* View Mode Layouts */
.sb-details-flow[b-dkr93luzme] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.875rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.sb-details-state-pill[b-dkr93luzme] {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.sb-details-state-pill--initial[b-dkr93luzme] {
    border-color: #10B981; /* var(--sf-emerald) */
    color: #10B981;
    background: rgba(16, 185, 129, 0.05);
}

.sb-details-state-pill--failure[b-dkr93luzme] {
    border-color: #F43F5E; /* var(--sf-rose) */
    color: #F43F5E;
    background: rgba(244, 63, 94, 0.05);
}

.sb-details-state-pill--completed[b-dkr93luzme] {
    border-color: #F59E0B; /* var(--sf-amber) */
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.05);
}

.sb-details-arrow[b-dkr93luzme] {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    font-weight: bold;
}

.sb-detail-items[b-dkr93luzme] {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.sb-detail-item[b-dkr93luzme] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sb-detail-label[b-dkr93luzme] {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.35);
}

.sb-detail-value[b-dkr93luzme] {
    font-size: 0.875rem;
    color: #fff;
}

/* Method Badge Styles */
.rc-method-badge[b-dkr93luzme] {
    display: inline-flex;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-right: 6px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}
.rc-method-get[b-dkr93luzme]     { background: rgba(52, 211, 153, 0.15); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.25); }
.rc-method-post[b-dkr93luzme]    { background: rgba(99, 102, 241, 0.15); color: #818cf8; border: 1px solid rgba(99, 102, 241, 0.25); }
.rc-method-put[b-dkr93luzme]     { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.25); }
.rc-method-delete[b-dkr93luzme]  { background: rgba(244, 63, 94, 0.15); color: #f87171; border: 1px solid rgba(244, 63, 94, 0.25); }
.rc-method-patch[b-dkr93luzme]   { background: rgba(167, 139, 250, 0.15); color: #c084fc; border: 1px solid rgba(167, 139, 250, 0.25); }

/* Path display style */
.sb-path-code[b-dkr93luzme] {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.8125rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 3px 6px;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.95);
    word-break: break-all;
}

/* Status Chips */
.rc-status-chip[b-dkr93luzme] {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    border: 1px solid transparent;
}
.rc-status-2xx[b-dkr93luzme] { background: rgba(16, 185, 129, 0.1); color: #34d399; border-color: rgba(16, 185, 129, 0.2); }
.rc-status-3xx[b-dkr93luzme] { background: rgba(99, 102, 241, 0.1); color: #818cf8; border-color: rgba(99, 102, 241, 0.2); }
.rc-status-4xx[b-dkr93luzme] { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border-color: rgba(245, 158, 11, 0.2); }
.rc-status-5xx[b-dkr93luzme] { background: rgba(244, 63, 94, 0.1); color: #f87171; border-color: rgba(244, 63, 94, 0.2); }

/* JSON Code pre-formatted block */
.sb-code-pre[b-dkr93luzme] {
    margin: 0;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 10px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.72rem;
    color: #e5e7eb;
    overflow-x: auto;
    max-height: 160px;
    white-space: pre-wrap;
    word-break: break-all;
}

.sb-code-pre--empty[b-dkr93luzme] {
    color: rgba(255, 255, 255, 0.25);
    font-style: italic;
    font-family: system-ui, -apple-system, sans-serif;
}

.sb-details-actions[b-dkr93luzme] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
}

/* Button variants inside component */
.sf-btn-outline[b-dkr93luzme] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.sf-btn-outline:hover[b-dkr93luzme] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.sf-btn-delete[b-dkr93luzme] {
    border-color: rgba(244, 63, 94, 0.3) !important;
    color: #f87171 !important;
}

.sf-btn-delete:hover[b-dkr93luzme] {
    background: rgba(244, 63, 94, 0.1) !important;
    border-color: #f43f5e !important;
    color: #fff !important;
}

/* ═══════════════════════════════════════════════════════
   Form Editor Layout
   ═══════════════════════════════════════════════════════ */
.sb-editor-form[b-dkr93luzme] {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.sb-form-group[b-dkr93luzme] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sb-form-label[b-dkr93luzme] {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sb-required-star[b-dkr93luzme] {
    color: #F43F5E;
}

.sb-form-input[b-dkr93luzme] {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #fff;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    transition: all 0.2s;
}

.sb-form-input:focus[b-dkr93luzme] {
    outline: none;
    border-color: #6366F1; /* var(--sf-primary) */
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.3);
}

.sb-form-input--select[b-dkr93luzme] {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='rgba%28255,255,255,0.4%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 14px;
    padding-right: 2rem;
}

.sb-form-input--textarea[b-dkr93luzme] {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.72rem;
    resize: vertical;
}

.sb-form-row[b-dkr93luzme] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.sb-form-toggle-label[b-dkr93luzme] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.sb-form-toggle-label input[b-dkr93luzme] {
    display: none;
}

.sb-form-toggle-switch[b-dkr93luzme] {
    width: 36px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    position: relative;
    transition: background 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sb-form-toggle-switch[b-dkr93luzme]::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    top: 2px;
    left: 2px;
    transition: transform 0.2s;
}

.sb-form-toggle-label input:checked + .sb-form-toggle-switch[b-dkr93luzme] {
    background: #10B981; /* var(--sf-emerald) */
}

.sb-form-toggle-label input:checked + .sb-form-toggle-switch[b-dkr93luzme]::after {
    transform: translateX(16px);
}

.sb-form-toggle-text[b-dkr93luzme] {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
}

.sb-form-actions[b-dkr93luzme] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

/* Options colors styling */
.sb-form-input--select option[b-dkr93luzme] {
    background: #111827;
    color: #fff;
}

/* Button variants for forms */
.sf-btn-ghost[b-dkr93luzme] {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
}

.sf-btn-ghost:hover[b-dkr93luzme] {
    color: #fff;
}

.sf-btn-primary[b-dkr93luzme] {
    background: #6366F1; /* var(--sf-primary) */
    border: none;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.35);
    transition: all 0.2s;
}

.sf-btn-primary:hover[b-dkr93luzme] {
    background: #4f46e5;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.5);
}
/* /Components/Scenarios/WorkflowGraph.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════
   WorkflowGraph Component Styles
   ═══════════════════════════════════════════════════════════ */

.wf-graph-container[b-t461k3ld68] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Toolbar overlay on the top-left */
.wf-graph-toolbar[b-t461k3ld68] {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px;
    border-radius: 8px;
    z-index: 10;
}

.wf-toolbar-separator[b-t461k3ld68] {
    color: rgba(255, 255, 255, 0.15);
    align-self: center;
    padding: 0 4px;
    font-size: 0.8rem;
    user-select: none;
}

.wf-toolbar-btn[b-t461k3ld68] {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wf-toolbar-btn:hover[b-t461k3ld68] {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.wf-toolbar-btn--active[b-t461k3ld68] {
    color: #fff;
    background: #6366F1 !important; /* var(--sf-primary) */
}

/* Scrollable Canvas area */
.wf-graph-canvas[b-t461k3ld68] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 2.5rem;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    position: relative;
}

/* ── SVG Component Overrides ── */
.wf-graph-canvas svg[b-t461k3ld68] {
    max-width: none !important;
    background: transparent !important;
    user-select: none;
    overflow: visible !important;
}

/* Edge paths/lines */
.wf-graph-canvas .edgePath .path[b-t461k3ld68],
.wf-graph-canvas .transition[b-t461k3ld68] {
    stroke: rgba(255, 255, 255, 0.18) !important;
    stroke-width: 2.2px !important;
    transition: stroke 0.2s, stroke-width 0.2s;
}

.wf-graph-canvas .edgePath:hover .path[b-t461k3ld68],
.wf-graph-canvas .transition:hover[b-t461k3ld68] {
    stroke: #6366F1 !important; /* var(--sf-primary) */
    stroke-width: 3.5px !important;
}

/* Edge arrow markers */
.wf-graph-canvas marker[b-t461k3ld68] {
    fill: rgba(255, 255, 255, 0.25) !important;
    stroke: none !important;
    transition: fill 0.2s;
}

.wf-graph-canvas .edgePath:hover marker[b-t461k3ld68] {
    fill: #6366F1 !important;
}

/* Edge Text Labels */
.wf-graph-canvas .edgeLabel rect[b-t461k3ld68] {
    fill: #111827 !important;
    stroke: rgba(255, 255, 255, 0.09) !important;
    stroke-width: 1px !important;
    rx: 6px !important;
    ry: 6px !important;
}

.wf-graph-canvas .edgeLabel:hover rect[b-t461k3ld68] {
    stroke: #6366F1 !important;
    fill: #151d30 !important;
}

.wf-graph-canvas .sf-mermaid-label[b-t461k3ld68] {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    transition: color 0.15s;
    user-select: none;
}

.wf-graph-canvas .sf-mermaid-label:hover[b-t461k3ld68] {
    color: #fff;
}

/* State Diagram Nodes (States) */
.wf-graph-canvas .node rect[b-t461k3ld68],
.wf-graph-canvas .node circle[b-t461k3ld68],
.wf-graph-canvas .node polygon[b-t461k3ld68] {
    fill: rgba(17, 24, 39, 0.7) !important;
    stroke-width: 2px !important;
    rx: 8px !important;
    ry: 8px !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: stroke-width 0.2s, filter 0.2s, fill 0.2s;
}

.wf-graph-canvas .node:hover rect[b-t461k3ld68],
.wf-graph-canvas .node:hover circle[b-t461k3ld68] {
    stroke-width: 3px !important;
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.4)) !important;
    fill: rgba(17, 24, 39, 0.95) !important;
}

.wf-graph-canvas .node text[b-t461k3ld68] {
    font-family: 'JetBrains Mono', 'Fira Code', monospace !important;
    font-weight: 700 !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.02em;
    fill: rgba(255, 255, 255, 0.85) !important;
}

/* Custom Category Styling for stateDiagram-v2 */
.wf-graph-canvas .state-initial rect[b-t461k3ld68],
.wf-graph-canvas .state-initial circle[b-t461k3ld68] {
    stroke: #10B981 !important; /* Green */
    fill: rgba(16, 185, 129, 0.08) !important;
}
.wf-graph-canvas .state-initial text[b-t461k3ld68] {
    fill: #10B981 !important;
}
.wf-graph-canvas .state-initial:hover rect[b-t461k3ld68] {
    filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.4)) !important;
}

.wf-graph-canvas .state-normal rect[b-t461k3ld68],
.wf-graph-canvas .state-normal circle[b-t461k3ld68] {
    stroke: #6366F1 !important; /* Purple */
    fill: rgba(99, 102, 241, 0.08) !important;
}
.wf-graph-canvas .state-normal text[b-t461k3ld68] {
    fill: #a5b4fc !important;
}

.wf-graph-canvas .state-failure rect[b-t461k3ld68],
.wf-graph-canvas .state-failure circle[b-t461k3ld68] {
    stroke: #F43F5E !important; /* Red */
    fill: rgba(244, 63, 94, 0.08) !important;
}
.wf-graph-canvas .state-failure text[b-t461k3ld68] {
    fill: #F43F5E !important;
}
.wf-graph-canvas .state-failure:hover rect[b-t461k3ld68] {
    filter: drop-shadow(0 0 12px rgba(244, 63, 94, 0.4)) !important;
}

.wf-graph-canvas .state-completed rect[b-t461k3ld68],
.wf-graph-canvas .state-completed circle[b-t461k3ld68] {
    stroke: #F59E0B !important; /* Gold */
    fill: rgba(245, 158, 11, 0.08) !important;
}
.wf-graph-canvas .state-completed text[b-t461k3ld68] {
    fill: #F59E0B !important;
}
.wf-graph-canvas .state-completed:hover rect[b-t461k3ld68] {
    filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.4)) !important;
}

/* Fallback loading progress details */
.wf-graph-canvas .sf-loading-view[b-t461k3ld68] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Selected transition edge highlight & glow */
.wf-graph-canvas .edgePath.sf-selected-edge-path .path[b-t461k3ld68] {
    stroke: #6366F1 !important; /* var(--sf-primary) */
    stroke-width: 4px !important;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6)) !important;
}

.wf-graph-canvas .edgePath.sf-selected-edge-path marker[b-t461k3ld68] {
    fill: #6366F1 !important;
}

.wf-graph-canvas .edgeLabel.sf-selected-edge-label rect[b-t461k3ld68] {
    stroke: #6366F1 !important;
    fill: #1d283d !important;
}

.wf-graph-canvas .edgeLabel.sf-selected-edge-label .sf-mermaid-label[b-t461k3ld68] {
    color: #fff !important;
}

/* Active node highlight & pulse */
.wf-graph-canvas .state-active rect[b-t461k3ld68],
.wf-graph-canvas .state-active circle[b-t461k3ld68] {
    stroke: #10B981 !important; /* var(--sf-success) */
    fill: rgba(16, 185, 129, 0.12) !important;
    stroke-width: 3.5px !important;
    filter: drop-shadow(0 0 16px rgba(16, 185, 129, 0.75)) !important;
    animation: sf-pulse-active-b-t461k3ld68 2s infinite ease-in-out !important;
}

.wf-graph-canvas .state-active text[b-t461k3ld68] {
    fill: #34D399 !important; /* Brighter emerald */
    font-weight: 800 !important;
}

/* Active/Animating transition path */
.wf-graph-canvas .edgePath.sf-active-transition-path .path[b-t461k3ld68] {
    stroke: #10B981 !important; /* emerald green */
    stroke-dasharray: 8 4 !important;
    stroke-width: 4px !important;
    animation: sf-flow-dash-b-t461k3ld68 1.2s infinite linear !important;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.8)) !important;
}

.wf-graph-canvas .edgePath.sf-active-transition-path marker[b-t461k3ld68] {
    fill: #10B981 !important;
}

.wf-graph-canvas .edgeLabel.sf-active-transition-label rect[b-t461k3ld68] {
    stroke: #10B981 !important;
    fill: #0c1a15 !important;
}

.wf-graph-canvas .edgeLabel.sf-active-transition-label .sf-mermaid-label[b-t461k3ld68] {
    color: #10B981 !important;
    font-weight: 800 !important;
}

@keyframes sf-pulse-active-b-t461k3ld68 {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.95));
    }
}

@keyframes sf-flow-dash-b-t461k3ld68 {
    to {
        stroke-dashoffset: -24;
    }
}

/* /Components/WorkflowStudio/ScenarioSelectorDropdown.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════
   Scenario Selector Dropdown — Workflow Studio
   ═══════════════════════════════════════════════════ */

/* ── Trigger Button ──────────────────────────────── */
.ws-scenario-selector[b-f0s4veiz9a] {
    position: relative;
    display: flex;
    align-items: center;
}

.ws-selector-trigger[b-f0s4veiz9a] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 220px;
}

.ws-selector-trigger:hover[b-f0s4veiz9a] {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(99, 102, 241, 0.3);
}

.ws-selector-trigger--open[b-f0s4veiz9a] {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
}

.ws-selector-label[b-f0s4veiz9a] {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
}

.ws-selector-prefix[b-f0s4veiz9a] {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.3);
}

.ws-selector-name[b-f0s4veiz9a] {
    font-size: 0.825rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ws-selector-name--loading[b-f0s4veiz9a] {
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

.ws-selector-name--empty[b-f0s4veiz9a] {
    color: rgba(255, 255, 255, 0.25);
}

.ws-selector-badges[b-f0s4veiz9a] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.ws-active-badge[b-f0s4veiz9a] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    padding: 2px 8px;
    border-radius: 100px;
    white-space: nowrap;
}

.ws-active-dot[b-f0s4veiz9a] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.7);
}

.ws-chevron[b-f0s4veiz9a] {
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.ws-chevron--open[b-f0s4veiz9a] {
    transform: rotate(180deg);
}

/* ── Dropdown Panel ──────────────────────────────── */
.ws-dropdown-backdrop[b-f0s4veiz9a] {
    position: fixed;
    inset: 0;
    z-index: 999;
}

.ws-dropdown-panel[b-f0s4veiz9a] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 1000;
    min-width: 320px;
    max-height: 400px;
    background: rgba(18, 18, 28, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(99, 102, 241, 0.08);
    backdrop-filter: blur(20px);
    overflow: hidden;
    animation: ws-dropdown-enter-b-f0s4veiz9a 0.15s ease-out;
}

@keyframes ws-dropdown-enter-b-f0s4veiz9a {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ws-dropdown-header[b-f0s4veiz9a] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ws-dropdown-title[b-f0s4veiz9a] {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
}

.ws-dropdown-create-btn[b-f0s4veiz9a] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #818cf8;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.ws-dropdown-create-btn:hover[b-f0s4veiz9a] {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.35);
}

/* ── Dropdown List ───────────────────────────────── */
.ws-dropdown-list[b-f0s4veiz9a] {
    overflow-y: auto;
    max-height: 320px;
    padding: 4px;
}

.ws-dropdown-item[b-f0s4veiz9a] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: all 0.12s ease;
    text-align: left;
    color: inherit;
    font-family: inherit;
}

.ws-dropdown-item:hover[b-f0s4veiz9a] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
}

.ws-dropdown-item--selected[b-f0s4veiz9a] {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
}

.ws-dropdown-item-left[b-f0s4veiz9a] {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.ws-dropdown-item-dot[b-f0s4veiz9a] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.ws-dropdown-item-dot--active[b-f0s4veiz9a] {
    background: #34d399;
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.6);
}

.ws-dropdown-item-info[b-f0s4veiz9a] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ws-dropdown-item-name[b-f0s4veiz9a] {
    font-size: 0.825rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ws-dropdown-item-desc[b-f0s4veiz9a] {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.ws-dropdown-item-meta[b-f0s4veiz9a] {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.ws-dropdown-item-rules[b-f0s4veiz9a] {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.25);
    white-space: nowrap;
}

.ws-dropdown-item-active-tag[b-f0s4veiz9a] {
    font-size: 0.6rem;
    font-weight: 700;
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
    padding: 1px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

/* ── Empty State ─────────────────────────────────── */
.ws-dropdown-empty[b-f0s4veiz9a] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    gap: 6px;
}

.ws-dropdown-empty-icon[b-f0s4veiz9a] {
    font-size: 1.5rem;
    opacity: 0.5;
}

.ws-dropdown-empty p[b-f0s4veiz9a] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.ws-dropdown-empty-btn[b-f0s4veiz9a] {
    font-size: 0.75rem;
    color: #818cf8;
    background: none;
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 6px;
    transition: all 0.15s ease;
}

.ws-dropdown-empty-btn:hover[b-f0s4veiz9a] {
    background: rgba(99, 102, 241, 0.08);
}
/* /Components/WorkflowStudio/WorkflowStatsSidebar.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════
   Workflow Stats Sidebar — Workflow Studio
   ═══════════════════════════════════════════════════ */

.wss-sidebar[b-o70cstavm4] {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    overflow-y: auto;
    padding: 0;
}

/* ── Sections ────────────────────────────────────── */
.wss-section[b-o70cstavm4] {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wss-section--actions[b-o70cstavm4] {
    margin-top: auto;
    border-bottom: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wss-section-title[b-o70cstavm4] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
}

.wss-section-count[b-o70cstavm4] {
    font-size: 0.6rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 1px 6px;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.4);
}

.wss-description[b-o70cstavm4] {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    margin: 0;
}

/* ── API List ────────────────────────────────────── */
.wss-api-list[b-o70cstavm4] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 160px;
    overflow-y: auto;
}

.wss-api-item[b-o70cstavm4] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    transition: background 0.12s ease;
}

.wss-api-item:hover[b-o70cstavm4] {
    background: rgba(255, 255, 255, 0.04);
}

.wss-api-method[b-o70cstavm4] {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.wss-api-method--get[b-o70cstavm4]    { color: #34d399; background: rgba(52, 211, 153, 0.1); }
.wss-api-method--post[b-o70cstavm4]   { color: #818cf8; background: rgba(99, 102, 241, 0.1); }
.wss-api-method--put[b-o70cstavm4]    { color: #fbbf24; background: rgba(251, 191, 36, 0.1); }
.wss-api-method--patch[b-o70cstavm4]  { color: #fb923c; background: rgba(251, 146, 60, 0.1); }
.wss-api-method--delete[b-o70cstavm4] { color: #f87171; background: rgba(248, 113, 113, 0.1); }

.wss-api-path[b-o70cstavm4] {
    font-family: var(--sf-font-mono, 'JetBrains Mono', monospace);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wss-empty-hint[b-o70cstavm4] {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 8px 0;
}

/* ── Stats Grid ──────────────────────────────────── */
.wss-stats-grid[b-o70cstavm4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.wss-stat-card[b-o70cstavm4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    transition: border-color 0.2s ease;
}

.wss-stat-card:hover[b-o70cstavm4] {
    border-color: rgba(99, 102, 241, 0.15);
}

.wss-stat-value[b-o70cstavm4] {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.wss-stat-unit[b-o70cstavm4] {
    font-size: 0.55rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 1px;
}

.wss-stat-label[b-o70cstavm4] {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.25);
}

/* ── Legend ───────────────────────────────────────── */
.wss-legend-list[b-o70cstavm4] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wss-legend-item[b-o70cstavm4] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}

.wss-legend-color[b-o70cstavm4] {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}

.wss-legend--initial[b-o70cstavm4]   { background: #818cf8; box-shadow: 0 0 4px rgba(129, 140, 248, 0.4); }
.wss-legend--normal[b-o70cstavm4]    { background: rgba(255, 255, 255, 0.2); }
.wss-legend--failure[b-o70cstavm4]   { background: #f87171; box-shadow: 0 0 4px rgba(248, 113, 113, 0.4); }
.wss-legend--completed[b-o70cstavm4] { background: #34d399; box-shadow: 0 0 4px rgba(52, 211, 153, 0.4); }

.wss-legend-count[b-o70cstavm4] {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 4px;
    margin-left: auto;
}

.wss-legend-count--failure[b-o70cstavm4] {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}

/* ── Quick Actions ───────────────────────────────── */
.wss-quick-actions[b-o70cstavm4] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wss-action-btn[b-o70cstavm4] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.wss-action-btn:hover:not(:disabled)[b-o70cstavm4] {
    color: #818cf8;
    background: rgba(99, 102, 241, 0.06);
    border-color: rgba(99, 102, 241, 0.25);
    border-style: solid;
}

.wss-action-btn:disabled[b-o70cstavm4] {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ── Transitions List ────────────────────────────── */
.wss-transition-list[b-o70cstavm4] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 4px;
    margin-top: 4px;
}

/* Custom scrollbar for transition list */
.wss-transition-list[b-o70cstavm4]::-webkit-scrollbar {
    width: 4px;
}
.wss-transition-list[b-o70cstavm4]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}
.wss-transition-list[b-o70cstavm4]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}
.wss-transition-list[b-o70cstavm4]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

.wss-transition-item[b-o70cstavm4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.wss-transition-item:hover[b-o70cstavm4] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.wss-transition-item--selected[b-o70cstavm4] {
    background: rgba(99, 102, 241, 0.08) !important;
    border-color: rgba(99, 102, 241, 0.35) !important;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.05);
}

.wss-transition-meta[b-o70cstavm4] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.wss-transition-states[b-o70cstavm4] {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
}

.wss-state-mini[b-o70cstavm4] {
    font-family: var(--sf-font-mono, 'JetBrains Mono', monospace);
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90px;
    background: rgba(255, 255, 255, 0.04);
    padding: 2px 5px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.wss-arrow-mini[b-o70cstavm4] {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.2);
}

.wss-transition-api[b-o70cstavm4] {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
}

.wss-api-method-mini[b-o70cstavm4] {
    font-size: 0.52rem;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 3px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--sf-font-mono, 'JetBrains Mono', monospace);
}

.wss-api-path-mini[b-o70cstavm4] {
    font-family: var(--sf-font-mono, 'JetBrains Mono', monospace);
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex: 1;
}

/* Delete Button */
.wss-delete-btn[b-o70cstavm4] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.wss-delete-btn:hover[b-o70cstavm4] {
    color: #fff;
    background: rgba(244, 63, 94, 0.8);
    box-shadow: 0 2px 6px rgba(244, 63, 94, 0.3);
}

/* ── States List ────────────────────────────────── */
.wss-states-list[b-o70cstavm4] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 4px;
    margin-top: 4px;
}

/* Custom scrollbar for states list */
.wss-states-list[b-o70cstavm4]::-webkit-scrollbar {
    width: 4px;
}
.wss-states-list[b-o70cstavm4]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}
.wss-states-list[b-o70cstavm4]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

.wss-state-item[b-o70cstavm4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.wss-state-item:hover[b-o70cstavm4] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.wss-state-item-left[b-o70cstavm4] {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.wss-state-name-label[b-o70cstavm4] {
    font-family: var(--sf-font-mono, 'JetBrains Mono', monospace);
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.wss-state-item--active[b-o70cstavm4] {
    background: rgba(16, 185, 129, 0.08) !important;
    border-color: rgba(16, 185, 129, 0.35) !important;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.05);
}

.wss-state-item--active .wss-state-name-label[b-o70cstavm4] {
    color: #34d399 !important;
    font-weight: 800;
}

/* /Layout/AdminLayout.razor.rz.scp.css */
.sf-admin-layout[b-y2sijwoj5i] {
    display: flex;
    min-height: 100vh;
    background-color: #0B0F19;
    color: #F9FAFB;
}

.sf-sidebar[b-y2sijwoj5i] {
    width: 260px;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
}

.sf-sidebar-header[b-y2sijwoj5i] {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sf-role-badge[b-y2sijwoj5i] {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
    letter-spacing: 0.05em;
}

.sf-role-badge.admin[b-y2sijwoj5i] {
    background: rgba(99, 102, 241, 0.1);
    color: #818CF8;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.sf-sidebar-nav[b-y2sijwoj5i] {
    flex: 1;
    padding: 1rem 0;
}

.sf-nav-group[b-y2sijwoj5i] {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #4B5563;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.sf-nav-link[b-y2sijwoj5i] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sf-nav-link:hover[b-y2sijwoj5i] {
    background: rgba(255, 255, 255, 0.03);
    color: #F9FAFB;
}

.sf-nav-link.active[b-y2sijwoj5i] {
    background: rgba(99, 102, 241, 0.05);
    color: #818CF8;
    border-left-color: #6366F1;
}

.sf-nav-icon[b-y2sijwoj5i] {
    margin-right: 0.75rem;
    font-size: 1rem;
}

.sf-sidebar-footer[b-y2sijwoj5i] {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sf-btn-logout[b-y2sijwoj5i] {
    background: transparent;
    border: none;
    color: #EF4444;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.sf-btn-logout:hover[b-y2sijwoj5i] {
    opacity: 0.8;
}

.sf-content[b-y2sijwoj5i] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sf-top-bar[b-y2sijwoj5i] {
    height: 64px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(11, 15, 25, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sf-breadcrumb[b-y2sijwoj5i] {
    font-size: 0.85rem;
    color: #6B7280;
}

.sf-user-pill[b-y2sijwoj5i] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 4px 12px 4px 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
}

.sf-user-avatar[b-y2sijwoj5i] {
    width: 28px;
    height: 28px;
    background: #6366F1;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.sf-user-name[b-y2sijwoj5i] {
    font-size: 0.8rem;
    font-weight: 500;
}

.sf-page-container[b-y2sijwoj5i] {
    padding: 2rem;
    overflow-y: auto;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.sf-app-shell[b-cjqhm31t5r] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: var(--sf-bg, #0B0F19);
    color: #fff;
    overflow: hidden;
}

.sf-top-nav[b-cjqhm31t5r] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    height: 64px;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: var(--sf-glass, blur(10px));
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
}

.sf-nav-left[b-cjqhm31t5r], .sf-nav-right[b-cjqhm31t5r] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sf-logo[b-cjqhm31t5r] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.sf-logo-mark[b-cjqhm31t5r] {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--sf-primary, #6366f1), #a855f7);
    border-radius: 8px;
    position: relative;
}

.sf-logo-mark[b-cjqhm31t5r]::after {
    content: '';
    position: absolute;
    inset: 6px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z"/></svg>') no-repeat center;
    background-size: contain;
}

.sf-logo-text[b-cjqhm31t5r] {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sf-v-divider[b-cjqhm31t5r] {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
}

.sf-main-nav[b-cjqhm31t5r] {
    display: flex;
    gap: 0.5rem;
}

.sf-nav-item[b-cjqhm31t5r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

.sf-nav-item:hover[b-cjqhm31t5r], .sf-nav-item.active[b-cjqhm31t5r] {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.sf-nav-item.active[b-cjqhm31t5r] {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.sf-icon[b-cjqhm31t5r] {
    font-style: normal;
    font-size: 1.1rem;
}

.sf-user-capsule[b-cjqhm31t5r] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 9999px;
}

.sf-avatar[b-cjqhm31t5r] {
    width: 28px;
    height: 28px;
    background: var(--sf-indigo-900, #312e81);
    color: var(--sf-primary, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.sf-user-info[b-cjqhm31t5r] {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.sf-name[b-cjqhm31t5r] {
    font-size: 0.75rem;
    font-weight: 600;
}

.sf-role[b-cjqhm31t5r] {
    font-size: 0.65rem;
    color: var(--sf-primary, #6366f1);
    opacity: 0.8;
}

.sf-logout-btn[b-cjqhm31t5r] {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
    font-weight: 500;
}

.sf-logout-btn:hover[b-cjqhm31t5r] {
    color: var(--sf-rose, #f43f5e);
}

.sf-app-body[b-cjqhm31t5r] {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.sidebar[b-cjqhm31t5r] {
    width: 250px;
    height: 100%;
    transition: width 0.3s ease, background 0.3s ease;
    border-right: 1px solid rgba(255,255,255,0.05);
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.sidebar.collapsed[b-cjqhm31t5r] {
    width: 64px;
}

.sidebar-content[b-cjqhm31t5r] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-toggle[b-cjqhm31t5r] {
    padding: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.sidebar-toggle:hover[b-cjqhm31t5r] {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-toggle .icon[b-cjqhm31t5r] {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
    user-select: none;
}

.sidebar-toggle:hover .icon[b-cjqhm31t5r] {
    color: #fff;
}

[b-cjqhm31t5r] .sidebar.collapsed .nav-text {
    display: none;
}

[b-cjqhm31t5r] .sidebar.collapsed .text {
    display: none;
}

[b-cjqhm31t5r] .sidebar.collapsed .sf-sidebar-title {
    display: none;
}

[b-cjqhm31t5r] .sidebar.collapsed .sf-sidebar-header {
    padding-bottom: 0.5rem;
}

[b-cjqhm31t5r] .sidebar.collapsed .sf-pnav-item {
    justify-content: center;
    padding: 0.75rem 0;
}

[b-cjqhm31t5r] .sidebar.collapsed .nav-item ::deep a {
    justify-content: center;
    padding-left: 0 !important;
}

[b-cjqhm31t5r] .sidebar.collapsed .sf-btn-back {
    text-align: center;
    padding: 0.75rem 0;
}

.theme-default[b-cjqhm31t5r] {
    background-image: linear-gradient(180deg, #1e1b4b 0%, #0f172a 70%);
}

.theme-project-active[b-cjqhm31t5r] {
    background-image: linear-gradient(180deg, #1e1b4b 0%, #0f172a 70%);
}

.sf-app-content[b-cjqhm31t5r] {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
}

@media (max-width: 640.98px) {
    .sf-app-body[b-cjqhm31t5r] {
        flex-direction: column;
    }
    
    .sidebar[b-cjqhm31t5r] {
        width: 100%;
        height: auto;
        min-height: 50px;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Sidebar Component Styles */
.sf-project-sidebar[b-gz69eg40up] {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0.75rem;
}

.sf-sidebar-header[b-gz69eg40up] {
    padding: 0 0.75rem 1.5rem 0.75rem;
}

.sf-sidebar-title[b-gz69eg40up] {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
}

.sf-project-nav[b-gz69eg40up] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.sf-pnav-item[b-gz69eg40up] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s;
    overflow: hidden;
}

.sf-pnav-item:hover[b-gz69eg40up] {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.sf-pnav-item.active[b-gz69eg40up] {
    background: rgba(99, 102, 241, 0.1);
    color: var(--sf-primary);
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.2);
}

.sf-pnav-item .icon[b-gz69eg40up] {
    font-size: 1.1rem;
}

.sf-pnav-item .text[b-gz69eg40up] {
    white-space: nowrap;
}
/* /Layout/ProjectLayout.razor.rz.scp.css */
.sf-project-layout[b-mdygdyt9qq] {
    display: flex;
    height: calc(100vh - 64px); /* Adjust for top nav */
    overflow: hidden;
}

.sf-project-sidebar-container[b-mdygdyt9qq] {
    width: 240px;
    height: 100%;
    border-right: var(--sf-border);
    flex-shrink: 0;
}

.sf-project-main-content[b-mdygdyt9qq] {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.1);
}

/* Sidebar Component Styles */
[b-mdygdyt9qq] .sf-project-sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0.75rem;
}

[b-mdygdyt9qq] .sf-sidebar-header {
    padding: 0 0.75rem 1.5rem 0.75rem;
}

[b-mdygdyt9qq] .sf-sidebar-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
}

[b-mdygdyt9qq] .sf-project-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

[b-mdygdyt9qq] .sf-pnav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s;
}

[b-mdygdyt9qq] .sf-pnav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

[b-mdygdyt9qq] .sf-pnav-item.active {
    background: rgba(99, 102, 241, 0.1);
    color: var(--sf-primary);
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.2);
}

[b-mdygdyt9qq] .sf-pnav-item .icon {
    font-size: 1.1rem;
}

[b-mdygdyt9qq] .sf-sidebar-footer {
    padding-top: 1rem;
    border-top: var(--sf-border);
}

[b-mdygdyt9qq] .sf-btn-back {
    width: 100%;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: color 0.2s;
}

[b-mdygdyt9qq] .sf-btn-back:hover {
    color: var(--sf-primary);
}
/* /Layout/TesterLayout.razor.rz.scp.css */
.sf-app-shell[b-s1nlrpwv74] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: var(--sf-bg);
    color: #fff;
    overflow: hidden;
}

.sf-top-nav[b-s1nlrpwv74] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    height: 64px;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: var(--sf-glass);
    border-bottom: var(--sf-border);
    z-index: 1000;
}

.sf-nav-left[b-s1nlrpwv74], .sf-nav-right[b-s1nlrpwv74] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sf-logo[b-s1nlrpwv74] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.sf-logo-mark[b-s1nlrpwv74] {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--sf-primary), #a855f7);
    border-radius: 8px;
    position: relative;
}

.sf-logo-mark[b-s1nlrpwv74]::after {
    content: '';
    position: absolute;
    inset: 6px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z"/></svg>') no-repeat center;
    background-size: contain;
}

.sf-logo-text[b-s1nlrpwv74] {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sf-v-divider[b-s1nlrpwv74] {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
}

.sf-main-nav[b-s1nlrpwv74] {
    display: flex;
    gap: 0.5rem;
}

.sf-nav-item[b-s1nlrpwv74] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

.sf-nav-item:hover[b-s1nlrpwv74], .sf-nav-item.active[b-s1nlrpwv74] {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.sf-nav-item.active[b-s1nlrpwv74] {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.sf-icon[b-s1nlrpwv74] {
    font-style: normal;
    font-size: 1.1rem;
}

.sf-user-capsule[b-s1nlrpwv74] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: var(--sf-border);
    border-radius: 9999px;
}

.sf-avatar[b-s1nlrpwv74] {
    width: 28px;
    height: 28px;
    background: var(--sf-indigo-900);
    color: var(--sf-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.sf-user-info[b-s1nlrpwv74] {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.sf-name[b-s1nlrpwv74] {
    font-size: 0.75rem;
    font-weight: 600;
}

.sf-role[b-s1nlrpwv74] {
    font-size: 0.65rem;
    color: var(--sf-primary);
    opacity: 0.8;
}

.sf-logout-btn[b-s1nlrpwv74] {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

.sf-logout-btn:hover[b-s1nlrpwv74] {
    color: var(--sf-rose);
}

.sf-app-content[b-s1nlrpwv74] {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}
/* /Pages/About.razor.rz.scp.css */
.sf-about-container[b-kbk1yzjf7w] {
    position: relative;
    padding: 2rem 0;
}

/* Background glow blob */
.sf-about-glow[b-kbk1yzjf7w] {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.sf-badge-about[b-kbk1yzjf7w] {
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background-color: rgba(99, 102, 241, 0.1) !important;
    color: #818cf8 !important;
    border: 1px solid rgba(99, 102, 241, 0.25);
    letter-spacing: 0.05em;
}

.max-w-lg[b-kbk1yzjf7w] {
    max-width: 600px;
}

/* Stat Cards */
.sf-stat-card[b-kbk1yzjf7w] {
    background: rgba(31, 41, 55, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.3);
}

.sf-stat-card:hover[b-kbk1yzjf7w] {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.15);
}

.sf-stat-num[b-kbk1yzjf7w] {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.text-primary[b-kbk1yzjf7w] {
    color: #3B82F6 !important;
}

.text-indigo[b-kbk1yzjf7w] {
    color: #8B5CF6 !important;
}

.text-success[b-kbk1yzjf7w] {
    color: #10B981 !important;
}

/* Highlight Card */
.sf-card-highlight[b-kbk1yzjf7w] {
    background: rgba(31, 41, 55, 0.5) !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.05) !important;
}

.sf-principle-icon[b-kbk1yzjf7w] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.bg-indigo[b-kbk1yzjf7w] {
    background-color: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.bg-success[b-kbk1yzjf7w] {
    background-color: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.bg-primary[b-kbk1yzjf7w] {
    background-color: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Team Card styling */
.sf-team-card[b-kbk1yzjf7w] {
    background: rgba(31, 41, 55, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.sf-team-card:hover[b-kbk1yzjf7w] {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
    background: rgba(31, 41, 55, 0.65);
}

.sf-team-avatar-wrapper[b-kbk1yzjf7w] {
    display: inline-block;
    padding: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.15));
}

.sf-team-avatar-inner[b-kbk1yzjf7w] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.sf-team-avatar-letters[b-kbk1yzjf7w] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

/* Animations */
.sf-fade-in[b-kbk1yzjf7w] {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeFrame-b-kbk1yzjf7w 0.6s ease-out forwards;
}

.sf-delay-1[b-kbk1yzjf7w] {
    animation-delay: 0.15s;
}

.sf-delay-2[b-kbk1yzjf7w] {
    animation-delay: 0.3s;
}

.sf-delay-3[b-kbk1yzjf7w] {
    animation-delay: 0.45s;
}

@keyframes fadeFrame-b-kbk1yzjf7w {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/Admin/CreateProject.razor.rz.scp.css */
.sf-create-project-view[b-qoi2i4jgyg] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 128px);
    padding: 2rem;
}

.sf-creation-card[b-qoi2i4jgyg] {
    width: 100%;
    max-width: 540px;
    padding: 3rem;
}

.sf-header-icon[b-qoi2i4jgyg] {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.sf-subtitle[b-qoi2i4jgyg] {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9375rem;
}

.sf-form[b-qoi2i4jgyg] {
    display: flex;
    flex-direction: column;
}

.sf-label[b-qoi2i4jgyg] {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sf-input[b-qoi2i4jgyg] {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.875rem 1.125rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.2s;
}

.sf-input:focus[b-qoi2i4jgyg] {
    outline: none;
    border-color: var(--sf-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px var(--sf-primary-glow);
}

.sf-input[b-qoi2i4jgyg]::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.sf-textarea[b-qoi2i4jgyg] {
    resize: none;
}

.sf-hint[b-qoi2i4jgyg] {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0.5rem;
}

.sf-slug-preview[b-qoi2i4jgyg] {
    font-size: 0.8125rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    display: inline-block;
}

.sf-url[b-qoi2i4jgyg] {
    color: var(--sf-primary);
    font-weight: 700;
    font-family: var(--sf-font-mono);
    margin-left: 0.25rem;
}

.sf-form-actions[b-qoi2i4jgyg] {
    display: flex;
    gap: 1rem;
}

.sf-glass-alert[b-qoi2i4jgyg] {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.2);
    color: var(--sf-rose);
    border-radius: 12px;
    font-size: 0.875rem;
}

.sf-btn-outline[b-qoi2i4jgyg] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.sf-btn-outline:hover[b-qoi2i4jgyg] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.animate-fade-in[b-qoi2i4jgyg] {
    animation: fadeIn-b-qoi2i4jgyg 0.5s ease-out forwards;
}

@keyframes fadeIn-b-qoi2i4jgyg {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* /Pages/Admin/ProjectDashboard.razor.rz.scp.css */
.sf-view-header[b-akkoou0puy] {
    margin-bottom: 2.5rem;
}

.sf-breadcrumb[b-akkoou0puy] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.sf-breadcrumb a[b-akkoou0puy] {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.sf-breadcrumb a:hover[b-akkoou0puy] {
    color: var(--sf-primary);
}

.sf-breadcrumb .sep[b-akkoou0puy] {
    color: rgba(255, 255, 255, 0.1);
}

.sf-breadcrumb .curr[b-akkoou0puy] {
    color: #fff;
}

.sf-header-content h1[b-akkoou0puy] {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.sf-subtitle[b-akkoou0puy] {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.4);
}

.sf-table-wrapper[b-akkoou0puy] {
    width: 100%;
    overflow-x: auto;
}

.sf-table[b-akkoou0puy] {
    width: 100%;
    border-collapse: collapse;
}

.sf-table th[b-akkoou0puy] {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.3);
    border-bottom: var(--sf-border);
}

.sf-table-row[b-akkoou0puy] {
    transition: background 0.2s;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.sf-table-row:last-child[b-akkoou0puy] {
    border-bottom: none;
}

.sf-table-row:hover[b-akkoou0puy] {
    background: rgba(255, 255, 255, 0.02);
}

.sf-table td[b-akkoou0puy] {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    vertical-align: middle;
}

.sf-code-path[b-akkoou0puy] {
    font-family: var(--sf-font-mono);
    color: var(--sf-primary);
    background: rgba(99, 102, 241, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
}

.sf-badge-method[b-akkoou0puy] {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    min-width: 50px;
    text-align: center;
}

.sf-badge-method.get[b-akkoou0puy] { background: rgba(255, 255, 255, 0.05); color: #fff; }
.sf-badge-method.post[b-akkoou0puy] { background: var(--sf-emerald); color: #000; }
.sf-badge-method.put[b-akkoou0puy] { background: var(--sf-amber); color: #000; }
.sf-badge-method.delete[b-akkoou0puy] { background: var(--sf-rose); color: #fff; }

.sf-btn-icon[b-akkoou0puy] {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.sf-btn-icon:hover[b-akkoou0puy] {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.sf-btn-delete:hover[b-akkoou0puy] {
    color: var(--sf-rose);
    background: rgba(244, 63, 94, 0.05);
}

.sf-empty-state[b-akkoou0puy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

.sf-empty-icon[b-akkoou0puy] {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.1;
}

.sf-badge-auth[b-akkoou0puy] {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.sf-badge-auth.required[b-akkoou0puy] {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.sf-badge-auth.public[b-akkoou0puy] {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* /Pages/Admin/Projects.razor.rz.scp.css */
.sf-projects-view[b-skacki9krp] {
    max-width: 1200px;
    margin: 0 auto;
}

.sf-view-header[b-skacki9krp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.sf-view-header h1[b-skacki9krp] {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.sf-subtitle[b-skacki9krp] {
    color: rgba(255, 255, 255, 0.4);
}

.sf-project-grid[b-skacki9krp] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.sf-project-card[b-skacki9krp] {
    transition: transform 0.2s, border-color 0.2s;
    overflow: hidden;
}

.sf-project-card:hover[b-skacki9krp] {
    transform: translateY(-4px);
    border-color: var(--sf-primary);
}

.sf-card-inner[b-skacki9krp] {
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sf-project-header[b-skacki9krp] {
    margin-bottom: 1.25rem;
}

.sf-project-name[b-skacki9krp] {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #fff;
}

.sf-project-id[b-skacki9krp] {
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sf-project-body[b-skacki9krp] {
    flex: 1;
}

.sf-project-desc[b-skacki9krp] {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sf-project-meta[b-skacki9krp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.sf-slug-tag[b-skacki9krp] {
    font-family: var(--sf-font-mono);
    font-size: 0.75rem;
    color: var(--sf-primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
}

.sf-status-tag[b-skacki9krp] {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
}

.sf-status-tag.active[b-skacki9krp] { color: var(--sf-emerald); background: rgba(16, 185, 129, 0.1); }
.sf-status-tag.inactive[b-skacki9krp] { color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.05); }

.sf-card-footer[b-skacki9krp] {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
    margin-top: auto;
}

.sf-btn-ghost-indigo[b-skacki9krp] {
    background: transparent;
    border: none;
    color: var(--sf-primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s;
}

.sf-btn-ghost-indigo:hover[b-skacki9krp] {
    color: #818cf8;
}

.sf-empty-state[b-skacki9krp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

.sf-empty-icon[b-skacki9krp] {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.2;
}

/* Loading components */
.sf-loading-view[b-skacki9krp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem;
}

.sf-spinner[b-skacki9krp] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-top-color: var(--sf-primary);
    border-radius: 50%;
    animation: sf-spin-b-skacki9krp 1s infinite linear;
    margin-bottom: 1rem;
}

@keyframes sf-spin-b-skacki9krp { to { transform: rotate(360deg); } }
/* /Pages/Admin/ProjectSettings.razor.rz.scp.css */
.sf-settings-view[b-lsqchs0edt] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 128px);
    padding: 2rem;
}

.sf-settings-card[b-lsqchs0edt] {
    width: 100%;
    max-width: 600px;
    padding: 3rem;
}

.sf-header-icon[b-lsqchs0edt] {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.sf-subtitle[b-lsqchs0edt] {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9375rem;
}

.sf-form[b-lsqchs0edt] {
    display: flex;
    flex-direction: column;
}

.sf-label[b-lsqchs0edt] {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sf-input[b-lsqchs0edt] {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.875rem 1.125rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.2s;
}

.sf-input:focus[b-lsqchs0edt] {
    outline: none;
    border-color: var(--sf-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px var(--sf-primary-glow);
}

.sf-input[b-lsqchs0edt]::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.sf-select[b-lsqchs0edt] {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba%28255,255,255,0.5%29' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.125rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

.sf-select option[b-lsqchs0edt] {
    background: #141927;
    color: #fff;
    font-size: 0.9375rem;
}

.sf-textarea[b-lsqchs0edt] {
    resize: none;
}

.sf-hint[b-lsqchs0edt] {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0.5rem;
}

.sf-slug-preview[b-lsqchs0edt] {
    font-size: 0.8125rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    display: inline-block;
}

.sf-url[b-lsqchs0edt] {
    color: var(--sf-primary);
    font-weight: 700;
    font-family: var(--sf-font-mono);
    margin-left: 0.25rem;
}

.sf-form-actions[b-lsqchs0edt] {
    display: flex;
    gap: 1rem;
}

.sf-glass-alert[b-lsqchs0edt] {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.2);
    color: var(--sf-rose);
    border-radius: 12px;
    font-size: 0.875rem;
}

.sf-glass-success[b-lsqchs0edt] {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
    border-radius: 12px;
    font-size: 0.875rem;
}

.animate-fade-in[b-lsqchs0edt] {
    animation: fadeIn-b-lsqchs0edt 0.5s ease-out forwards;
}

@keyframes fadeIn-b-lsqchs0edt {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.sf-btn-danger[b-lsqchs0edt] {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.2);
    color: #f87171;
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--sf-font-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sf-btn-danger:hover:not(:disabled)[b-lsqchs0edt] {
    background: rgba(244, 63, 94, 0.25);
    border-color: rgba(244, 63, 94, 0.4);
    color: #fff;
    box-shadow: 0 0 12px rgba(244, 63, 94, 0.2);
}

.sf-btn-danger:disabled[b-lsqchs0edt] {
    opacity: 0.4;
    cursor: not-allowed;
}

/* /Pages/Admin/ScenarioBuilder.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════
   Visual Workflow Studio — scoped styles (sb- prefix)
   ═══════════════════════════════════════════════════════════ */

/* ── Root: fills the content area below the main nav ── */
.sb-root[b-8vn29rl5tk] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 64px);   /* 64px = sf-top-nav height */
    overflow: hidden;
    background: var(--sf-bg);
}

/* ══════════════════════════════════════════════════════
   Top Bar
   ══════════════════════════════════════════════════════ */
.sb-topbar[b-8vn29rl5tk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.75rem;
    background: rgba(17, 24, 39, 0.4);
    backdrop-filter: var(--sf-glass);
    border-bottom: var(--sf-border);
    flex-shrink: 0;
    z-index: 10;
}

.sb-topbar-left[b-8vn29rl5tk] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sb-back-btn[b-8vn29rl5tk] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s;
}

.sb-back-btn:hover[b-8vn29rl5tk] {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    transform: translateX(-2px);
}

.sb-topbar-title[b-8vn29rl5tk] {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sb-scenario-name[b-8vn29rl5tk] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.sb-scenario-label[b-8vn29rl5tk] {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.3);
}

.sb-topbar-right[b-8vn29rl5tk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sb-activate-btn[b-8vn29rl5tk] {
    padding: 0.5rem 1.125rem;
    font-size: 0.8125rem;
    cursor: pointer;
}

.sb-active-pill[b-8vn29rl5tk] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--sf-emerald);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 5px 14px;
    border-radius: 100px;
}

.sb-active-dot[b-8vn29rl5tk] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sf-emerald);
    box-shadow: 0 0 6px var(--sf-emerald);
    display: inline-block;
    animation: sb-pulse-b-8vn29rl5tk 2s infinite;
}

@keyframes sb-pulse-b-8vn29rl5tk {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 10px var(--sf-emerald); }
    100% { transform: scale(0.95); opacity: 0.8; }
}

/* ══════════════════════════════════════════════════════
   Body: Three-Panel Flex Layout
   ══════════════════════════════════════════════════════ */
.sb-body[b-8vn29rl5tk] {
    display: flex;
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* ══════════════════════════════════════════════════════
   Left Sidebar: Scenario Information & Legend
   ══════════════════════════════════════════════════════ */
.sb-left-sidebar[b-8vn29rl5tk] {
    width: 280px;
    min-width: 280px;
    background: rgba(11, 15, 25, 0.6);
    border-right: var(--sf-border);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 1.25rem;
    gap: 1.5rem;
}

.sb-sidebar-section[b-8vn29rl5tk] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sb-sidebar-title[b-8vn29rl5tk] {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.375rem;
}

.sb-scenario-description[b-8vn29rl5tk] {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    margin: 0;
}

/* Stats Cards Grid */
.sb-stats-grid[b-8vn29rl5tk] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.sb-stat-card[b-8vn29rl5tk] {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sb-stat-value[b-8vn29rl5tk] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--sf-font-mono);
}

.sb-stat-label[b-8vn29rl5tk] {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Legend items */
.sb-legend-list[b-8vn29rl5tk] {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.sb-legend-item[b-8vn29rl5tk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}

.sb-legend-color[b-8vn29rl5tk] {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}

.sb-legend-color--initial[b-8vn29rl5tk] {
    background: rgba(16, 185, 129, 0.15);
    border: 1.5px solid var(--sf-emerald);
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.3);
}

.sb-legend-color--normal[b-8vn29rl5tk] {
    background: rgba(99, 102, 241, 0.15);
    border: 1.5px solid var(--sf-primary);
    box-shadow: 0 0 6px rgba(99, 102, 241, 0.3);
}

.sb-legend-color--failure[b-8vn29rl5tk] {
    background: rgba(244, 63, 94, 0.15);
    border: 1.5px solid var(--sf-rose);
    box-shadow: 0 0 6px rgba(244, 63, 94, 0.3);
}

.sb-legend-color--completed[b-8vn29rl5tk] {
    background: rgba(245, 158, 11, 0.15);
    border: 1.5px solid var(--sf-amber);
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.3);
}

/* States list in legend section */
.sb-quick-actions[b-8vn29rl5tk] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sb-action-btn-outline[b-8vn29rl5tk] {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.sb-action-btn-outline:hover[b-8vn29rl5tk] {
    background: rgba(99, 102, 241, 0.08);
    border: 1px dashed var(--sf-primary);
    color: #a5b4fc;
}

/* ══════════════════════════════════════════════════════
   Center Panel: Visual Canvas
   ══════════════════════════════════════════════════════ */
.sb-canvas-container[b-8vn29rl5tk] {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #090c15;
    position: relative;
    overflow: hidden;
}

.sb-canvas-toolbar[b-8vn29rl5tk] {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: var(--sf-glass);
    border: var(--sf-border);
    padding: 4px;
    border-radius: 8px;
    z-index: 5;
}

.sb-toolbar-btn[b-8vn29rl5tk] {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sb-toolbar-btn:hover[b-8vn29rl5tk] {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.sb-toolbar-btn--active[b-8vn29rl5tk] {
    color: #fff;
    background: var(--sf-primary) !important;
}

.sb-graph-canvas[b-8vn29rl5tk] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 2.5rem;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    position: relative;
}

.sb-canvas-hint[b-8vn29rl5tk] {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.72rem;
    padding: 6px 14px;
    border-radius: 100px;
    pointer-events: none;
    z-index: 5;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
}

/* ══════════════════════════════════════════════════════
   Mermaid SVG Node/Edge Styling Overrides
   ══════════════════════════════════════════════════════ */
.sb-graph-canvas svg[b-8vn29rl5tk] {
    max-width: 100%;
    background: transparent !important;
    user-select: none;
}

/* Edge Lines */
.sb-graph-canvas .edgePath .path[b-8vn29rl5tk] {
    stroke: rgba(255, 255, 255, 0.18) !important;
    stroke-width: 2.2px !important;
    transition: stroke 0.2s, stroke-width 0.2s, stroke-dasharray 0.2s;
}

.sb-graph-canvas .edgePath:hover .path[b-8vn29rl5tk] {
    stroke: var(--sf-primary) !important;
    stroke-width: 3.5px !important;
}

/* Edge Markers (Arrows) */
.sb-graph-canvas marker[b-8vn29rl5tk] {
    fill: rgba(255, 255, 255, 0.25) !important;
    stroke: none !important;
    transition: fill 0.2s;
}

.sb-graph-canvas .edgePath:hover marker[b-8vn29rl5tk] {
    fill: var(--sf-primary) !important;
}

/* Edge Labels */
.sb-graph-canvas .edgeLabel rect[b-8vn29rl5tk] {
    fill: #111827 !important;
    stroke: rgba(255, 255, 255, 0.09) !important;
    stroke-width: 1px !important;
    rx: 6px !important;
    ry: 6px !important;
}

.sb-graph-canvas .edgeLabel:hover rect[b-8vn29rl5tk] {
    stroke: var(--sf-primary) !important;
    fill: #151d30 !important;
}

.sb-graph-canvas .sf-mermaid-label[b-8vn29rl5tk] {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    font-family: var(--sf-font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    transition: color 0.15s, transform 0.15s;
    user-select: none;
}

.sb-graph-canvas .sf-mermaid-label:hover[b-8vn29rl5tk] {
    color: #fff;
}

/* Nodes Shapes */
.sb-graph-canvas .node rect[b-8vn29rl5tk],
.sb-graph-canvas .node circle[b-8vn29rl5tk],
.sb-graph-canvas .node polygon[b-8vn29rl5tk] {
    fill: rgba(17, 24, 39, 0.7) !important;
    stroke-width: 2px !important;
    rx: 8px !important;
    ry: 8px !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: stroke-width 0.2s, filter 0.2s, fill 0.2s;
}

.sb-graph-canvas .node:hover rect[b-8vn29rl5tk],
.sb-graph-canvas .node:hover circle[b-8vn29rl5tk] {
    stroke-width: 3px !important;
    filter: drop-shadow(0 0 12px var(--sf-primary-glow)) !important;
    fill: rgba(17, 24, 39, 0.95) !important;
}

.sb-graph-canvas .node text[b-8vn29rl5tk] {
    font-family: var(--sf-font-mono) !important;
    font-weight: 700 !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.02em;
    fill: rgba(255, 255, 255, 0.85) !important;
}

/* Node Classes */
.sb-graph-canvas .node-initial rect[b-8vn29rl5tk],
.sb-graph-canvas .node-initial circle[b-8vn29rl5tk] {
    stroke: var(--sf-emerald) !important;
    fill: rgba(16, 185, 129, 0.08) !important;
}
.sb-graph-canvas .node-initial text[b-8vn29rl5tk] {
    fill: var(--sf-emerald) !important;
}
.sb-graph-canvas .node-initial:hover rect[b-8vn29rl5tk] {
    filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.4)) !important;
}

.sb-graph-canvas .node-normal rect[b-8vn29rl5tk],
.sb-graph-canvas .node-normal circle[b-8vn29rl5tk] {
    stroke: var(--sf-primary) !important;
    fill: rgba(99, 102, 241, 0.08) !important;
}
.sb-graph-canvas .node-normal text[b-8vn29rl5tk] {
    fill: #a5b4fc !important;
}

.sb-graph-canvas .node-failure rect[b-8vn29rl5tk],
.sb-graph-canvas .node-failure circle[b-8vn29rl5tk] {
    stroke: var(--sf-rose) !important;
    fill: rgba(244, 63, 94, 0.08) !important;
}
.sb-graph-canvas .node-failure text[b-8vn29rl5tk] {
    fill: var(--sf-rose) !important;
}
.sb-graph-canvas .node-failure:hover rect[b-8vn29rl5tk] {
    filter: drop-shadow(0 0 12px rgba(244, 63, 94, 0.4)) !important;
}

.sb-graph-canvas .node-completed rect[b-8vn29rl5tk],
.sb-graph-canvas .node-completed circle[b-8vn29rl5tk] {
    stroke: var(--sf-amber) !important;
    fill: rgba(245, 158, 11, 0.08) !important;
}
.sb-graph-canvas .node-completed text[b-8vn29rl5tk] {
    fill: var(--sf-amber) !important;
}
.sb-graph-canvas .node-completed:hover rect[b-8vn29rl5tk] {
    filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.4)) !important;
}

/* Error Fallback container inside canvas */
.sf-mermaid-error[b-8vn29rl5tk] {
    background: rgba(244, 63, 94, 0.08);
    border: 1px solid rgba(244, 63, 94, 0.25);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

.sf-mermaid-error .error-icon[b-8vn29rl5tk] {
    font-size: 2rem;
    color: var(--sf-rose);
}

.sf-mermaid-error .error-title[b-8vn29rl5tk] {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.sf-mermaid-error .error-msg[b-8vn29rl5tk] {
    font-family: var(--sf-font-mono);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 6px;
    white-space: pre-wrap;
    text-align: left;
    margin: 0;
    width: 100%;
}

/* ══════════════════════════════════════════════════════
   Right Panel: Selected Transition Details / Editor
   ══════════════════════════════════════════════════════ */
.sb-right-panel[b-8vn29rl5tk] {
    width: 380px;
    min-width: 380px;
    background: rgba(11, 15, 25, 0.6);
    border-left: var(--sf-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sb-panel-header[b-8vn29rl5tk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.25rem;
    border-bottom: var(--sf-border);
    background: rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.sb-panel-title[b-8vn29rl5tk] {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.sb-panel-close[b-8vn29rl5tk] {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.15s;
    line-height: 1;
}

.sb-panel-close:hover[b-8vn29rl5tk] {
    color: #fff;
}

.sb-panel-body[b-8vn29rl5tk] {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
}

/* Empty Selected State */
.sb-empty-panel[b-8vn29rl5tk] {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
    gap: 0.75rem;
}

.sb-empty-panel-icon[b-8vn29rl5tk] {
    font-size: 2.25rem;
    opacity: 0.4;
}

.sb-empty-panel p[b-8vn29rl5tk] {
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

/* View Mode Details */
.sb-details-flow[b-8vn29rl5tk] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.875rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
}

.sb-details-state-pill[b-8vn29rl5tk] {
    font-family: var(--sf-font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.sb-details-state-pill--initial[b-8vn29rl5tk] {
    border-color: var(--sf-emerald);
    color: var(--sf-emerald);
    background: rgba(16, 185, 129, 0.05);
}

.sb-details-state-pill--failure[b-8vn29rl5tk] {
    border-color: var(--sf-rose);
    color: var(--sf-rose);
    background: rgba(244, 63, 94, 0.05);
}

.sb-details-state-pill--completed[b-8vn29rl5tk] {
    border-color: var(--sf-amber);
    color: var(--sf-amber);
    background: rgba(245, 158, 11, 0.05);
}

.sb-details-arrow[b-8vn29rl5tk] {
    color: rgba(255, 255, 255, 0.25);
    font-size: 1.1rem;
    font-weight: bold;
}

/* Detail list items */
.sb-detail-items[b-8vn29rl5tk] {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.sb-detail-item[b-8vn29rl5tk] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sb-detail-label[b-8vn29rl5tk] {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.35);
}

.sb-detail-value[b-8vn29rl5tk] {
    font-size: 0.875rem;
    color: #fff;
}

/* Method badge styles */
.rc-method-badge[b-8vn29rl5tk] {
    display: inline-flex;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-right: 6px;
    font-family: var(--sf-font-mono);
}
.rc-method-get[b-8vn29rl5tk]     { background: rgba(52, 211, 153, 0.15); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.25); }
.rc-method-post[b-8vn29rl5tk]    { background: rgba(99, 102, 241, 0.15); color: #818cf8; border: 1px solid rgba(99, 102, 241, 0.25); }
.rc-method-put[b-8vn29rl5tk]     { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.25); }
.rc-method-delete[b-8vn29rl5tk]  { background: rgba(244, 63, 94, 0.15); color: #f87171; border: 1px solid rgba(244, 63, 94, 0.25); }
.rc-method-patch[b-8vn29rl5tk]   { background: rgba(167, 139, 250, 0.15); color: #c084fc; border: 1px solid rgba(167, 139, 250, 0.25); }

/* Path display style */
.sb-path-code[b-8vn29rl5tk] {
    font-family: var(--sf-font-mono);
    font-size: 0.8125rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 3px 6px;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.95);
    word-break: break-all;
}

/* Status chips */
.rc-status-chip[b-8vn29rl5tk] {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--sf-font-mono);
    border: 1px solid transparent;
}
.rc-status-2xx[b-8vn29rl5tk] { background: rgba(16, 185, 129, 0.1); color: #34d399; border-color: rgba(16, 185, 129, 0.2); }
.rc-status-3xx[b-8vn29rl5tk] { background: rgba(99, 102, 241, 0.1); color: #818cf8; border-color: rgba(99, 102, 241, 0.2); }
.rc-status-4xx[b-8vn29rl5tk] { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border-color: rgba(245, 158, 11, 0.2); }
.rc-status-5xx[b-8vn29rl5tk] { background: rgba(244, 63, 94, 0.1); color: #f87171; border-color: rgba(244, 63, 94, 0.2); }

/* JSON view blocks */
.sb-code-pre[b-8vn29rl5tk] {
    margin: 0;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 10px;
    font-family: var(--sf-font-mono);
    font-size: 0.72rem;
    color: #e5e7eb;
    overflow-x: auto;
    max-height: 160px;
    white-space: pre-wrap;
    word-break: break-all;
}

.sb-code-pre--empty[b-8vn29rl5tk] {
    color: rgba(255, 255, 255, 0.25);
    font-style: italic;
    font-family: var(--sf-font-base);
}

.sb-details-actions[b-8vn29rl5tk] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.75rem;
    border-top: var(--sf-border);
    padding-top: 1.25rem;
}

/* ══════════════════════════════════════════════════════
   Right Panel Editor Mode Forms
   ══════════════════════════════════════════════════════ */
.sb-editor-form[b-8vn29rl5tk] {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.sb-form-group[b-8vn29rl5tk] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sb-form-label[b-8vn29rl5tk] {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sb-required-star[b-8vn29rl5tk] {
    color: var(--sf-rose);
}

.sb-form-input[b-8vn29rl5tk] {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #fff;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    transition: all 0.2s;
}

.sb-form-input:focus[b-8vn29rl5tk] {
    outline: none;
    border-color: var(--sf-primary);
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.3);
}

.sb-form-input--select[b-8vn29rl5tk] {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='rgba(255,255,255,0.4)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 14px;
    padding-right: 2rem;
}

.sb-form-input--textarea[b-8vn29rl5tk] {
    font-family: var(--sf-font-mono);
    font-size: 0.72rem;
    resize: vertical;
}

.sb-form-row[b-8vn29rl5tk] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.sb-form-toggle-label[b-8vn29rl5tk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.sb-form-toggle-label input[b-8vn29rl5tk] {
    display: none;
}

.sb-form-toggle-switch[b-8vn29rl5tk] {
    width: 36px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    position: relative;
    transition: background 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sb-form-toggle-switch[b-8vn29rl5tk]::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    top: 2px;
    left: 2px;
    transition: transform 0.2s;
}

.sb-form-toggle-label input:checked + .sb-form-toggle-switch[b-8vn29rl5tk] {
    background: var(--sf-emerald);
}

.sb-form-toggle-label input:checked + .sb-form-toggle-switch[b-8vn29rl5tk]::after {
    transform: translateX(16px);
}

.sb-form-toggle-text[b-8vn29rl5tk] {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
}

.sb-form-actions[b-8vn29rl5tk] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
    border-top: var(--sf-border);
    padding-top: 1rem;
}

/* State Picker inside Rule Editor Form */
.sb-form-input--select option[b-8vn29rl5tk] {
    background: #111827;
    color: #fff;
}
/* /Pages/Admin/Scenarios.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════
   Scenarios page — scoped styles (scen- prefix)
   ═══════════════════════════════════════════════════ */

/* ── Table overrides ───────────────────────────────── */
.scen-table th[b-mkh1uppmxb],
.scen-table td[b-mkh1uppmxb] {
    vertical-align: middle;
}

/* Active row tint */
.scen-row-active[b-mkh1uppmxb] {
    background: rgba(99, 102, 241, 0.04);
}

/* Actions column: right-aligned header */
.scen-th-actions[b-mkh1uppmxb] {
    text-align: right;
}

/* ── Column widths ─────────────────────────────────── */
.scen-td-name[b-mkh1uppmxb]   { width: 35%; }
.scen-td-state[b-mkh1uppmxb]  { width: 14%; }
.scen-td-rules[b-mkh1uppmxb]  { width: 10%; }
.scen-td-status[b-mkh1uppmxb] { width: 12%; }
.scen-td-date[b-mkh1uppmxb]   { width: 14%; white-space: nowrap; font-size: 0.8125rem; color: rgba(255,255,255,0.3); }
.scen-td-actions[b-mkh1uppmxb]{ width: 15%; }

/* ── Name cell inner flex ──────────────────────────── */
/*  The <td> keeps display:table-cell; flex goes on the inner div */
.scen-name-inner[b-mkh1uppmxb] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Status dot pair */
.scen-active-dot[b-mkh1uppmxb],
.scen-inactive-dot[b-mkh1uppmxb] {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.scen-active-dot[b-mkh1uppmxb] {
    background: #34d399;
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.75);
}

.scen-inactive-dot[b-mkh1uppmxb] {
    background: rgba(255, 255, 255, 0.12);
}

/* Name + description stack */
.scen-name-stack[b-mkh1uppmxb] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;          /* allow text-overflow to work */
}

.scen-name[b-mkh1uppmxb] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.scen-desc[b-mkh1uppmxb] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.33);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px;
}

/* ── Initial-state pill ────────────────────────────── */
.scen-state-pill[b-mkh1uppmxb] {
    display: inline-block;
    font-family: var(--sf-font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #818cf8;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.22);
    padding: 3px 9px;
    border-radius: 6px;
    white-space: nowrap;
}

/* ── Rule count ────────────────────────────────────── */
.scen-rule-count[b-mkh1uppmxb] {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
}

.scen-rule-label[b-mkh1uppmxb] {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 2px;
}

/* ── Status badges ─────────────────────────────────── */
.scen-badge[b-mkh1uppmxb] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

.scen-badge-active[b-mkh1uppmxb] {
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
}

.scen-badge-active[b-mkh1uppmxb]::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 4px rgba(52, 211, 153, 0.9);
}

.scen-badge-inactive[b-mkh1uppmxb] {
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Actions cell ──────────────────────────────────── */
.scen-td-actions[b-mkh1uppmxb] {
    text-align: right;
}

.scen-actions-row[b-mkh1uppmxb] {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    justify-content: flex-end;
}

/* Activate (yellow) */
.scen-btn-activate:hover[b-mkh1uppmxb] {
    color: #fbbf24 !important;
    background: rgba(251, 191, 36, 0.08) !important;
}

/* Builder (indigo) */
.scen-btn-builder:hover[b-mkh1uppmxb] {
    color: #818cf8 !important;
    background: rgba(99, 102, 241, 0.08) !important;
}

/* ── New-scenario button + prefix ──────────────────── */
.scen-btn-plus[b-mkh1uppmxb] {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    margin-right: 4px;
    vertical-align: middle;
}
/* /Pages/Admin/WorkflowStudio.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════
   Workflow Studio — Main Layout Styles
   ═══════════════════════════════════════════════════ */

/* ── Root Container ──────────────────────────────── */
.wks-root[b-j4s1355ci0] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 56px);
    overflow: hidden;
    background: var(--sf-bg-primary, #0a0a14);
}

/* ── Top Bar ─────────────────────────────────────── */
.wks-topbar[b-j4s1355ci0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    min-height: 52px;
    z-index: 10;
}

.wks-topbar-left[b-j4s1355ci0] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.wks-topbar-center[b-j4s1355ci0] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 12px;
}

.wks-back-btn[b-j4s1355ci0] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.wks-back-btn:hover[b-j4s1355ci0] {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.wks-topbar-title[b-j4s1355ci0] {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.wks-studio-label[b-j4s1355ci0] {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.wks-topbar-divider[b-j4s1355ci0] {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.wks-topbar-right[b-j4s1355ci0] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.wks-activate-btn[b-j4s1355ci0] {
    font-size: 0.78rem;
    padding: 6px 14px;
    border-radius: 8px;
}

.wks-active-pill[b-j4s1355ci0] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #34d399;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
    padding: 5px 12px;
    border-radius: 100px;
}

.wks-active-dot[b-j4s1355ci0] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
    animation: wks-pulse-b-j4s1355ci0 2s ease-in-out infinite;
}

@keyframes wks-pulse-b-j4s1355ci0 {
    0%, 100% { box-shadow: 0 0 4px rgba(52, 211, 153, 0.4); }
    50%      { box-shadow: 0 0 12px rgba(52, 211, 153, 0.8); }
}

/* ── Body (3-column layout) ──────────────────────── */
.wks-body[b-j4s1355ci0] {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* ── Left Sidebar ────────────────────────────────── */
.wks-left-sidebar[b-j4s1355ci0] {
    width: 240px;
    min-width: 200px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    overflow-y: auto;
    flex-shrink: 0;
}

/* ── Center Canvas ───────────────────────────────── */
.wks-canvas-container[b-j4s1355ci0] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    min-width: 0;
}

.wks-canvas-hint[b-j4s1355ci0] {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 14px;
    border-radius: 100px;
    white-space: nowrap;
    pointer-events: none;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ── Right Panel ─────────────────────────────────── */
.wks-right-panel[b-j4s1355ci0] {
    width: 340px;
    min-width: 280px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    overflow-y: auto;
    flex-shrink: 0;
}

/* ── Empty Studio State ──────────────────────────── */
.wks-empty-studio[b-j4s1355ci0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 12px;
    padding: 40px;
    text-align: center;
}

.wks-empty-icon[b-j4s1355ci0] {
    font-size: 3rem;
    opacity: 0.4;
    margin-bottom: 8px;
}

.wks-empty-title[b-j4s1355ci0] {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    background: linear-gradient(135deg, #818cf8, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wks-empty-desc[b-j4s1355ci0] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    max-width: 400px;
    line-height: 1.6;
    margin: 0;
}

/* ── Responsive Adjustments ──────────────────────── */
@media (max-width: 1200px) {
    .wks-left-sidebar[b-j4s1355ci0] {
        width: 200px;
    }
    .wks-right-panel[b-j4s1355ci0] {
        width: 300px;
    }
}

@media (max-width: 900px) {
    .wks-left-sidebar[b-j4s1355ci0] {
        display: none;
    }
    .wks-right-panel[b-j4s1355ci0] {
        width: 280px;
    }
}

/* ── Modal Dialog Styles ─────────────────────────── */
.sf-modal-backdrop[b-j4s1355ci0] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6.0px);
    -webkit-backdrop-filter: blur(6.0px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    animation: wks-fadeInBackdrop-b-j4s1355ci0 0.2s ease-out;
}

@keyframes wks-fadeInBackdrop-b-j4s1355ci0 {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.sf-modal-panel[b-j4s1355ci0] {
    width: 100%;
    max-width: 500px;
    background: #141927;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(99, 102, 241, 0.12);
    animation: wks-slideUp-b-j4s1355ci0 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

@keyframes wks-slideUp-b-j4s1355ci0 {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.sf-modal-header[b-j4s1355ci0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sf-modal-title-block[b-j4s1355ci0] {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.sf-modal-icon[b-j4s1355ci0] {
    font-size: 1.75rem;
    line-height: 1;
    opacity: 0.85;
}

.sf-modal-title[b-j4s1355ci0] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px;
}

.sf-modal-subtitle[b-j4s1355ci0] {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.sf-modal-close[b-j4s1355ci0] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.4);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.sf-modal-close:hover[b-j4s1355ci0] {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
}

.sf-modal-body[b-j4s1355ci0] {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sf-modal-footer[b-j4s1355ci0] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sf-field-hint[b-j4s1355ci0] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    margin: 2px 0 0;
}

.wks-settings-btn[b-j4s1355ci0] {
    font-size: 0.78rem;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
}

/* ── Live Simulator Panel ─────────────────────────── */
.sf-sim-panel[b-j4s1355ci0] {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: transparent;
    overflow: hidden;
}

.sf-sim-panel-header[b-j4s1355ci0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.sf-sim-panel-title[b-j4s1355ci0] {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}

.sf-sim-reset-btn[b-j4s1355ci0] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.sf-sim-reset-btn:hover[b-j4s1355ci0] {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.35);
    color: #fff;
}

.sf-sim-panel-body[b-j4s1355ci0] {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Scrollbar for sim body */
.sf-sim-panel-body[b-j4s1355ci0]::-webkit-scrollbar {
    width: 4px;
}
.sf-sim-panel-body[b-j4s1355ci0]::-webkit-scrollbar-track {
    background: transparent;
}
.sf-sim-panel-body[b-j4s1355ci0]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.sf-sim-status[b-j4s1355ci0] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(99, 102, 241, 0.04);
    border: 1px solid rgba(99, 102, 241, 0.12);
    padding: 0.75rem 0.875rem;
    border-radius: 10px;
}

.sf-sim-status-row[b-j4s1355ci0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sf-sim-status-label[b-j4s1355ci0] {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.sf-state-badge[b-j4s1355ci0] {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--sf-font-mono, monospace);
    border: 1px solid transparent;
}

.sf-state-badge--active[b-j4s1355ci0] {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.2);
}

.sf-sim-session-id[b-j4s1355ci0] {
    font-family: var(--sf-font-mono, monospace);
    font-size: 0.72rem;
    color: #fff;
}

/* Sections */
.sf-sim-section[b-j4s1355ci0] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sf-sim-section-header[b-j4s1355ci0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sf-sim-section-title[b-j4s1355ci0] {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.35);
}

/* Actions list */
.sf-sim-actions-list[b-j4s1355ci0] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 160px;
    overflow-y: auto;
}

.sf-sim-action-card[b-j4s1355ci0] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: all 0.15s ease;
    width: 100%;
}

.sf-sim-action-card:hover[b-j4s1355ci0] {
    background: rgba(99, 102, 241, 0.06);
    border-color: rgba(99, 102, 241, 0.2);
}

.sf-sim-action-card-header[b-j4s1355ci0] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sf-sim-action-name[b-j4s1355ci0] {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
}

.sf-sim-action-path[b-j4s1355ci0] {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--sf-font-mono, monospace);
}

.sf-sim-empty-hint[b-j4s1355ci0] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    line-height: 1.4;
}

/* Last Response */
.sf-sim-response-card[b-j4s1355ci0] {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 10px;
}

.sf-sim-response-header[b-j4s1355ci0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sf-sim-delay-tag[b-j4s1355ci0] {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
}

.sf-sim-error-alert[b-j4s1355ci0] {
    background: rgba(244, 63, 94, 0.06);
    border: 1px solid rgba(244, 63, 94, 0.15);
    color: #f87171;
    font-size: 0.72rem;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
}

/* Logs Container */
.sf-sim-logs-container[b-j4s1355ci0] {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px;
    max-height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sf-sim-log-item[b-j4s1355ci0] {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sf-sim-log-item.success[b-j4s1355ci0] {
    border-left-color: #10B981;
}

.sf-sim-log-item.fail[b-j4s1355ci0] {
    border-left-color: #F43F5E;
}

.sf-sim-log-header[b-j4s1355ci0] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sf-sim-log-method[b-j4s1355ci0] {
    font-family: var(--sf-font-mono, monospace);
    font-size: 0.55rem;
    font-weight: 800;
    padding: 1px 3px;
    border-radius: 3px;
}
.sf-sim-log-method--get[b-j4s1355ci0]    { background: rgba(52, 211, 153, 0.1); color: #34d399; }
.sf-sim-log-method--post[b-j4s1355ci0]   { background: rgba(99, 102, 241, 0.1); color: #818cf8; }
.sf-sim-log-method--put[b-j4s1355ci0]    { background: rgba(251, 191, 36, 0.1); color: #fbbf24; }
.sf-sim-log-method--delete[b-j4s1355ci0] { background: rgba(248, 113, 113, 0.1); color: #f87171; }

.sf-sim-log-trigger[b-j4s1355ci0] {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.sf-sim-log-time[b-j4s1355ci0] {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
    margin-left: auto;
}

.sf-sim-log-transition[b-j4s1355ci0] {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.45);
}

.sf-sim-log-transition code[b-j4s1355ci0] {
    font-family: var(--sf-font-mono, monospace);
    color: rgba(255, 255, 255, 0.85);
}

.sf-sim-log-status[b-j4s1355ci0] {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--sf-font-mono, monospace);
}

.sf-sim-log-error[b-j4s1355ci0] {
    font-size: 0.62rem;
    color: #f87171;
    margin-top: 1px;
}

.sf-sim-empty-logs[b-j4s1355ci0] {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 12px 0;
}

/* Simulation Mode Canvas Header */
.wks-sim-canvas-bar[b-j4s1355ci0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(99, 102, 241, 0.12);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    padding: 6px 16px;
    font-size: 0.78rem;
    color: #fff;
    z-index: 5;
    animation: wks-slideDown 0.15s ease-out;
}

.wks-sim-canvas-bar-left[b-j4s1355ci0] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wks-sim-indicator-dot[b-j4s1355ci0] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #818cf8;
    box-shadow: 0 0 6px #818cf8;
    animation: wks-pulse-sim-b-j4s1355ci0 1.5s ease-in-out infinite;
}

@keyframes wks-pulse-sim-b-j4s1355ci0 {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%      { transform: scale(1.3); opacity: 1; }
}

.wks-simulate-btn--active[b-j4s1355ci0] {
    background: rgba(239, 68, 68, 0.15) !important;
    border-color: rgba(239, 68, 68, 0.3) !important;
    color: #f87171 !important;
}

.wks-simulate-btn--active:hover[b-j4s1355ci0] {
    background: rgba(239, 68, 68, 0.25) !important;
    border-color: rgba(239, 68, 68, 0.5) !important;
}

/* ── Bottom Simulation Log Window ────────────────── */
.wks-graph-wrapper[b-j4s1355ci0] {
    flex: 1;
    min-height: 0;
    position: relative;
    width: 100%;
}

.wks-sim-console-container[b-j4s1355ci0] {
    height: 240px;
    background: #05050a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.wks-sim-console-container .sf-console[b-j4s1355ci0] {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 1rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    overflow: hidden;
}

.wks-sim-console-container .sf-console-header[b-j4s1355ci0] {
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wks-sim-console-container .sf-console-logs-wrapper[b-j4s1355ci0] {
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
}

/* Custom scrollbar for console logs wrapper */
.wks-sim-console-container .sf-console-logs-wrapper[b-j4s1355ci0]::-webkit-scrollbar {
    width: 4px;
}
.wks-sim-console-container .sf-console-logs-wrapper[b-j4s1355ci0]::-webkit-scrollbar-track {
    background: transparent;
}
.wks-sim-console-container .sf-console-logs-wrapper[b-j4s1355ci0]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}
.wks-sim-console-container .sf-console-logs-wrapper[b-j4s1355ci0]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

.wks-sim-console-container .sf-log-item[b-j4s1355ci0] {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 0.75rem;
    margin-bottom: 0.75rem;
    font-family: var(--sf-font-mono, monospace);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
}

.wks-sim-console-container .sf-log-item .time[b-j4s1355ci0] {
    color: rgba(255, 255, 255, 0.25);
}

/* ── Form Editor Layout for Simulator ────────────── */
.sb-editor-form[b-j4s1355ci0] {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.sb-form-group[b-j4s1355ci0] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sb-form-label[b-j4s1355ci0] {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sb-form-input[b-j4s1355ci0] {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #fff;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    transition: all 0.2s;
}

.sb-form-input:focus[b-j4s1355ci0] {
    outline: none;
    border-color: #6366F1; /* var(--sf-primary) */
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.3);
}

.sb-form-input--select[b-j4s1355ci0] {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='rgba%28255,255,255,0.4%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 14px;
    padding-right: 2rem;
}

.sb-form-input--textarea[b-j4s1355ci0] {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.72rem;
    resize: vertical;
}

.sb-form-row[b-j4s1355ci0] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.sb-form-input--select option[b-j4s1355ci0] {
    background: #111827;
    color: #fff;
}

/* Method Badge Styles */
.rc-method-badge[b-j4s1355ci0] {
    display: inline-flex;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-right: 6px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}
.rc-method-get[b-j4s1355ci0]     { background: rgba(52, 211, 153, 0.15); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.25); }
.rc-method-post[b-j4s1355ci0]    { background: rgba(99, 102, 241, 0.15); color: #818cf8; border: 1px solid rgba(99, 102, 241, 0.25); }
.rc-method-put[b-j4s1355ci0]     { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.25); }
.rc-method-delete[b-j4s1355ci0]  { background: rgba(244, 63, 94, 0.15); color: #f87171; border: 1px solid rgba(244, 63, 94, 0.25); }
.rc-method-patch[b-j4s1355ci0]   { background: rgba(167, 139, 250, 0.15); color: #c084fc; border: 1px solid rgba(167, 139, 250, 0.25); }

/* Status Chips */
.rc-status-chip[b-j4s1355ci0] {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    border: 1px solid transparent;
}
.rc-status-2xx[b-j4s1355ci0] { background: rgba(16, 185, 129, 0.1); color: #34d399; border-color: rgba(16, 185, 129, 0.2); }
.rc-status-3xx[b-j4s1355ci0] { background: rgba(99, 102, 241, 0.1); color: #818cf8; border-color: rgba(99, 102, 241, 0.2); }
.rc-status-4xx[b-j4s1355ci0] { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border-color: rgba(245, 158, 11, 0.2); }
.rc-status-5xx[b-j4s1355ci0] { background: rgba(244, 63, 94, 0.1); color: #f87171; border-color: rgba(244, 63, 94, 0.2); }

/* JSON Code pre-formatted block */
.sb-code-pre[b-j4s1355ci0] {
    margin: 0;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 10px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.72rem;
    color: #e5e7eb;
    overflow-x: auto;
    max-height: 160px;
    white-space: pre-wrap;
    word-break: break-all;
}

/* ── Modal Input and Select Dropdown Styles ──────── */
.sf-form-group[b-j4s1355ci0] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.sf-label[b-j4s1355ci0] {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sf-input[b-j4s1355ci0] {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.9375rem;
    font-family: var(--sf-font-base);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
}

.sf-input:focus[b-j4s1355ci0] {
    outline: none;
    border-color: var(--sf-primary);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.sf-input[b-j4s1355ci0]::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.sf-input-mono[b-j4s1355ci0] {
    font-family: var(--sf-font-mono);
    font-size: 0.875rem;
    letter-spacing: 0.03em;
}

/* Native select styling */
.sf-select[b-j4s1355ci0] {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.sf-select option[b-j4s1355ci0] {
    background: #1a2035;
    color: #fff;
    font-family: var(--sf-font-mono);
    font-size: 0.85rem;
}
/* /Pages/Contact.razor.rz.scp.css */
.sf-contact-container[b-7bsv4zjnvz] {
    position: relative;
    padding: 2rem 0;
}

/* Background glow blob */
.sf-contact-glow[b-7bsv4zjnvz] {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.sf-badge-contact[b-7bsv4zjnvz] {
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background-color: rgba(99, 102, 241, 0.1) !important;
    color: #818cf8 !important;
    border: 1px solid rgba(99, 102, 241, 0.25);
    letter-spacing: 0.05em;
}

.max-w-lg[b-7bsv4zjnvz] {
    max-width: 600px;
}

/* Form Styling */
.sf-form-card[b-7bsv4zjnvz] {
    background: rgba(31, 41, 55, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.sf-form-label[b-7bsv4zjnvz] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sf-muted);
    margin-bottom: 0.35rem;
    display: block;
}

.sf-form-input[b-7bsv4zjnvz] {
    background-color: #0b0f19 !important;
    border: 1px solid var(--sf-border) !important;
    color: var(--sf-text) !important;
    border-radius: 8px !important;
    padding: 0.65rem 0.85rem !important;
    font-size: 0.9rem !important;
    transition: all 0.2s ease !important;
}

.sf-form-input:focus[b-7bsv4zjnvz] {
    outline: none !important;
    border-color: #8B5CF6 !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
}

.sf-form-textarea[b-7bsv4zjnvz] {
    resize: none;
}

/* Contact Info Item */
.sf-info-card-item[b-7bsv4zjnvz] {
    background: rgba(31, 41, 55, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sf-info-card-item:hover[b-7bsv4zjnvz] {
    transform: translateX(4px);
    border-color: rgba(139, 92, 246, 0.25);
    background: rgba(31, 41, 55, 0.55);
}

.sf-contact-icon-box[b-7bsv4zjnvz] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.bg-indigo[b-7bsv4zjnvz] {
    background-color: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.bg-success[b-7bsv4zjnvz] {
    background-color: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.bg-primary[b-7bsv4zjnvz] {
    background-color: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* FAQs Accordion styling */
.sf-faq-item[b-7bsv4zjnvz] {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    background: rgba(11, 15, 25, 0.3);
    overflow: hidden;
    transition: all 0.25s ease;
}

.sf-faq-header[b-7bsv4zjnvz] {
    padding: 0.85rem 1rem;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}

.sf-faq-header:hover[b-7bsv4zjnvz] {
    background-color: rgba(255, 255, 255, 0.03);
}

.faq-arrow[b-7bsv4zjnvz] {
    font-size: 0.65rem;
    color: var(--sf-muted);
    transition: transform 0.25s ease;
}

.sf-faq-body[b-7bsv4zjnvz] {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    transition: all 0.25s cubic-bezier(0, 1, 0, 1);
}

/* Expanded state styles */
.sf-faq-item.expanded[b-7bsv4zjnvz] {
    border-color: rgba(139, 92, 246, 0.2);
    background: rgba(11, 15, 25, 0.6);
}

.sf-faq-item.expanded .faq-arrow[b-7bsv4zjnvz] {
    transform: rotate(180deg);
    color: #a78bfa;
}

.sf-faq-item.expanded .sf-faq-body[b-7bsv4zjnvz] {
    max-height: 200px;
    padding: 0.25rem 1rem 1rem 1rem;
    transition: all 0.25s cubic-bezier(1, 0, 1, 0);
}

/* Success View */
.sf-success-icon[b-7bsv4zjnvz] {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: bold;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
    animation: scalePop-b-7bsv4zjnvz 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scalePop-b-7bsv4zjnvz {
    from {
        transform: scale(0.6);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animations */
.sf-fade-in[b-7bsv4zjnvz] {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeFrame-b-7bsv4zjnvz 0.6s ease-out forwards;
}

.sf-delay-1[b-7bsv4zjnvz] {
    animation-delay: 0.15s;
}

.sf-delay-2[b-7bsv4zjnvz] {
    animation-delay: 0.3s;
}

@keyframes fadeFrame-b-7bsv4zjnvz {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/Docs.razor.rz.scp.css */
.sf-docs-container[b-vhnibhz1tq] {
    position: relative;
    padding: 2rem 0;
}

/* Sidebar Styling */
.sf-docs-sidebar[b-vhnibhz1tq] {
    background: rgba(31, 41, 55, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 90px;
}

/* Search Bar */
.sf-search-wrapper[b-vhnibhz1tq] {
    position: relative;
}

.sf-search-input[b-vhnibhz1tq] {
    background: #0b0f19 !important;
    border: 1px solid var(--sf-border) !important;
    color: var(--sf-text) !important;
    border-radius: 8px !important;
    padding: 0.55rem 0.85rem 0.55rem 2rem !important;
    font-size: 0.85rem !important;
    width: 100%;
}

.sf-search-input:focus[b-vhnibhz1tq] {
    border-color: #8B5CF6 !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
}

.sf-search-icon[b-vhnibhz1tq] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Docs Nav links */
.sf-nav-group-title[b-vhnibhz1tq] {
    letter-spacing: 0.05em;
    font-size: 0.72rem;
    opacity: 0.6;
}

.sf-docs-nav-link[b-vhnibhz1tq] {
    background: transparent;
    border: none;
    color: var(--sf-muted);
    font-size: 0.82rem;
    padding: 0.35rem 0.75rem;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
    width: 100%;
}

.sf-docs-nav-link:hover[b-vhnibhz1tq] {
    color: var(--sf-text);
    background: rgba(255, 255, 255, 0.02);
}

.sf-docs-nav-link.active[b-vhnibhz1tq] {
    color: #a78bfa;
    font-weight: 600;
    border-left-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.05);
}

/* Docs Content styling */
.sf-docs-content[b-vhnibhz1tq] {
    background: rgba(31, 41, 55, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    min-height: 500px;
}

.sf-docs-section-tag[b-vhnibhz1tq] {
    font-size: 0.7rem;
    font-weight: 700;
    color: #818cf8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.leading-relaxed[b-vhnibhz1tq] {
    line-height: 1.7;
}

/* Custom Alert inside Docs */
.sf-docs-alert[b-vhnibhz1tq] {
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.88rem;
    line-height: 1.5;
}

.sf-docs-alert-info[b-vhnibhz1tq] {
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #93c5fd;
}

.sf-docs-alert-warning[b-vhnibhz1tq] {
    background-color: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #fde047;
}

.sf-docs-list[b-vhnibhz1tq] {
    padding-left: 1.25rem;
}

.sf-docs-list li[b-vhnibhz1tq] {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Codeblock formatting */
.sf-code-wrapper[b-vhnibhz1tq] {
    background-color: #0b0f19;
    border: 1px solid var(--sf-border);
    border-radius: 10px;
    overflow: hidden;
}

.sf-code-header[b-vhnibhz1tq] {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.72rem;
    font-family: var(--sf-font-mono, monospace);
    color: var(--sf-muted);
    font-weight: 600;
}

.sf-code-copy-btn[b-vhnibhz1tq] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--sf-muted);
    padding: 2px 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.sf-code-copy-btn:hover[b-vhnibhz1tq] {
    color: var(--sf-text);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.sf-code-pre[b-vhnibhz1tq] {
    margin: 0;
    padding: 1rem;
    font-size: 0.8rem;
    color: #a78bfa;
    overflow-x: auto;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    line-height: 1.5;
}

code[b-vhnibhz1tq] {
    color: inherit;
    background-color: transparent;
    padding: 0;
}
/* /Pages/Home.razor.rz.scp.css */
/* Typography Utils (Specific to Home or moved to global) */
.max-w-lg[b-401s8kyhzg] {
    max-width: 600px;
}

/* Alternate Backgrounds for Sections using full bleed hack */
.bg-alt[b-401s8kyhzg] {
    position: relative;
    background-color: var(--sf-bg-alt);
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.bg-alt[b-401s8kyhzg]::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    background-color: var(--sf-bg-alt);
    z-index: -1;
    border-top: 1px solid var(--sf-border);
    border-bottom: 1px solid var(--sf-border);
}

/* Main Body Constraint */
.sf-main[b-401s8kyhzg] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Background Effects */
.sf-hero-bg[b-401s8kyhzg] {
    position: absolute;
    top: -5vw;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 50vw;
    z-index: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.sf-glow-blob[b-401s8kyhzg] {
    width: 70vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(59, 130, 246, 0.15) 30%, rgba(11, 15, 25, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    mix-blend-mode: screen;
}

/* Hero */
.sf-hero[b-401s8kyhzg] {
    margin-top: 5rem;
    animation: fadeUp-b-401s8kyhzg 0.8s ease-out forwards;
    position: relative;
    z-index: 1;
    /* Keep above blob */
}

@keyframes fadeUp-b-401s8kyhzg {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sf-hero-title[b-401s8kyhzg] {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #FFFFFF;
}

.sf-hero-subtitle[b-401s8kyhzg] {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--sf-muted);
    max-width: 700px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

.sf-trust-banner[b-401s8kyhzg] {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Cards */
.sf-card[b-401s8kyhzg] {
    background: var(--sf-card);
    border: 1px solid var(--sf-border);
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
}

.sf-card:hover[b-401s8kyhzg] {
    transform: translateY(-4px);
}

.sf-card-problem:hover[b-401s8kyhzg] {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.15);
}

.sf-card-solution:hover[b-401s8kyhzg] {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

/* Custom Lists */
.sf-list-cross li[b-401s8kyhzg],
.sf-list-check li[b-401s8kyhzg] {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--sf-text);
    list-style: none;
    line-height: 1.5;
}

.sf-list-cross li[b-401s8kyhzg]::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--sf-danger);
    font-weight: bold;
    font-size: 1.1rem;
}

.sf-list-check li[b-401s8kyhzg]::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sf-success);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Steps */
.sf-steps-connector[b-401s8kyhzg] {
    position: absolute;
    top: 28px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(139, 92, 246, 0) 100%);
    z-index: 0;
}

.sf-home-step[b-401s8kyhzg] {
    position: relative;
    z-index: 1;
}

.sf-step-icon[b-401s8kyhzg] {
    width: 56px;
    height: 56px;
    background: rgba(11, 15, 25, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    border: 2px solid rgba(139, 92, 246, 0.5);
    color: #A78BFA;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3), inset 0 0 10px rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.sf-home-step:hover .sf-step-icon[b-401s8kyhzg] {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5), inset 0 0 15px rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.8);
    color: #fff;
}

/* Template Cards Section */
.sf-templates-section[b-401s8kyhzg] {
    position: relative;
}

.sf-access-alert[b-401s8kyhzg] {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.sf-glass-glow[b-401s8kyhzg] {
    position: absolute;
    width: 200px;
    height: 100%;
    top: 0;
    left: 20%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0) 70%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
    filter: blur(30px);
}

.sf-access-alert .bg-primary[b-401s8kyhzg] {
    left: 50%;
    transform: translateX(-50%);
}

.sf-access-divider[b-401s8kyhzg] {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
}

.sf-access-icon[b-401s8kyhzg] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 1.5rem;
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.1);
}

.bg-guest[b-401s8kyhzg] {
    background: rgba(156, 163, 175, 0.1);
    border: 1px solid rgba(156, 163, 175, 0.2);
}

.bg-user[b-401s8kyhzg] {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.2), 0 0 15px rgba(139, 92, 246, 0.3);
}

/* Features Array */
.sf-feature-card[b-401s8kyhzg] {
    background: var(--sf-card);
    border: 1px solid var(--sf-border);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sf-feature-card:hover[b-401s8kyhzg] {
    border-color: #60A5FA;
    background: rgba(31, 41, 55, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
}

.sf-feature-icon[b-401s8kyhzg] {
    font-size: 1.75rem;
    display: inline-block;
    padding: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    color: #A78BFA;
    margin-bottom: 1rem;
}

/* Badges */
.sf-badge[b-401s8kyhzg] {
    padding: 0.5rem 1rem;
    background: var(--sf-bg);
    border: 1px solid var(--sf-border);
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--sf-text);
}

.sf-badge:hover[b-401s8kyhzg] {
    border-color: #8B5CF6;
    color: #A78BFA;
}

.sf-info-card[b-401s8kyhzg] {
    background: var(--sf-card);
    border: 1px solid var(--sf-border);
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

/* Footer */
.sf-footer[b-401s8kyhzg] {
    border-top: 1px solid var(--sf-border);
    background: var(--sf-bg);
}

/* Simulated Consoles for Problem vs Solution */
.sf-simulated-console[b-401s8kyhzg] {
    background: transparent;
    border-radius: 12px;
}

.sf-simulated-console .console-title[b-401s8kyhzg] {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sf-muted);
}

.sf-simulated-console .console-body[b-401s8kyhzg] {
    border: 1px solid var(--sf-border) !important;
    border-radius: 12px !important;
    box-shadow: inset 0 4px 15px rgba(0, 0, 0, 0.6) !important;
}

.sf-simulated-console .sf-json-pre[b-401s8kyhzg] {
    margin-top: 0.5rem;
    background: rgba(0, 0, 0, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 8px;
    padding: 0.75rem;
    overflow-x: auto;
    font-size: 0.75rem;
    line-height: 1.4;
}

.btn-xs[b-401s8kyhzg] {
    padding: 4px 10px !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
}
/* /Pages/Tester/TesterDashboard.razor.rz.scp.css */
.sf-view-header[b-z76pzdeey5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.sf-view-header h1[b-z76pzdeey5] {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.sf-subtitle[b-z76pzdeey5] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
}

.sf-stat-grid[b-z76pzdeey5] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.sf-stat-card[b-z76pzdeey5] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
}

.sf-stat-icon[b-z76pzdeey5] {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.sf-stat-icon.emerald[b-z76pzdeey5] { color: var(--sf-emerald); box-shadow: 0 0 20px rgba(16, 185, 129, 0.2); }
.sf-stat-icon.indigo[b-z76pzdeey5] { color: var(--sf-primary); box-shadow: 0 0 20px rgba(99, 102, 241, 0.2); }
.sf-stat-icon.amber[b-z76pzdeey5] { color: var(--sf-amber); box-shadow: 0 0 20px rgba(245, 158, 11, 0.2); }

.sf-stat-data[b-z76pzdeey5] {
    display: flex;
    flex-direction: column;
}

.sf-stat-value[b-z76pzdeey5] {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.sf-stat-label[b-z76pzdeey5] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
}

.sf-section-title[b-z76pzdeey5] {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
}

.sf-text-link[b-z76pzdeey5] {
    font-size: 0.875rem;
    color: var(--sf-primary);
    text-decoration: none;
    font-weight: 600;
}

.sf-list[b-z76pzdeey5] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sf-list-item[b-z76pzdeey5] {
    background: rgba(255, 255, 255, 0.02);
    border: var(--sf-border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.sf-list-item:hover[b-z76pzdeey5] {
    background: rgba(255, 255, 255, 0.04);
}

.sf-item-name[b-z76pzdeey5] {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.sf-item-meta[b-z76pzdeey5] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

.sf-item-status[b-z76pzdeey5] {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sf-item-status.emerald[b-z76pzdeey5] { background: rgba(16, 185, 129, 0.1); color: var(--sf-emerald); }
.sf-item-status.amber[b-z76pzdeey5] { background: rgba(245, 158, 11, 0.1); color: var(--sf-amber); }

.sf-pulse[b-z76pzdeey5] {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    animation: sf-pulse-b-z76pzdeey5 1.5s infinite;
}

@keyframes sf-pulse-b-z76pzdeey5 {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.sf-template-stack[b-z76pzdeey5] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sf-mini-card[b-z76pzdeey5] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.02);
    border: var(--sf-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.sf-mini-card:hover[b-z76pzdeey5] {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--sf-primary-glow);
}

.sf-mini-icon[b-z76pzdeey5] {
    font-size: 1.25rem;
}

.sf-mini-content h6[b-z76pzdeey5] {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.sf-mini-content p[b-z76pzdeey5] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.sf-btn-outline[b-z76pzdeey5] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.sf-btn-outline:hover[b-z76pzdeey5] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
/* /Pages/TestRunner.razor.rz.scp.css */
.sf-playground[b-700m4yaidr] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 128px); /* Adjust for padding and header */
    gap: 1.5rem;
}

.sf-playground-header[b-700m4yaidr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--sf-surface-1);
    backdrop-filter: var(--sf-glass);
    border: var(--sf-border);
    padding: 1rem 1.5rem;
    border-radius: 16px;
}

.sf-scenario-info[b-700m4yaidr] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sf-scenario-icon[b-700m4yaidr] {
    width: 44px;
    height: 44px;
    background: var(--sf-indigo-900);
    color: var(--sf-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.sf-scenario-info h1[b-700m4yaidr] {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.sf-scenario-info p[b-700m4yaidr] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.sf-state-tag[b-700m4yaidr] {
    color: var(--sf-primary);
    font-weight: 700;
}

.sf-playground-actions[b-700m4yaidr] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.sf-session-capsule[b-700m4yaidr] {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.sf-session-capsule .label[b-700m4yaidr] {
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
}

.sf-session-capsule .value[b-700m4yaidr] {
    font-size: 0.8125rem;
    color: var(--sf-primary);
    font-weight: 600;
    font-family: var(--sf-font-mono);
}

/* Grid Layout */
.sf-playground-grid[b-700m4yaidr] {
    display: grid;
    grid-template-columns: 280px 1fr 340px;
    gap: 1.5rem;
    flex: 1;
    min-height: 0;
}

.sf-section-label[b-700m4yaidr] {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

/* Actions Sidebar */
.sf-actions-sidebar[b-700m4yaidr] {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sf-action-list[b-700m4yaidr] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sf-action-card[b-700m4yaidr] {
    background: var(--sf-surface-1);
    border: var(--sf-border);
    border-radius: 12px;
    padding: 1rem;
    text-align: left;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s;
}

.sf-action-card:hover[b-700m4yaidr] {
    background: var(--sf-surface-2);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.sf-action-card.active[b-700m4yaidr] {
    border-color: var(--sf-primary);
    background: rgba(99, 102, 241, 0.1);
}

.sf-action-header[b-700m4yaidr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.sf-action-num[b-700m4yaidr] {
    font-size: 0.65rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
}

.sf-method-badges[b-700m4yaidr] {
    display: flex;
    gap: 0.25rem;
}

.sf-badge-method[b-700m4yaidr] {
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 4px;
    border-radius: 4px;
}

.sf-badge-method.get[b-700m4yaidr] { background: var(--sf-surface-2); color: #fff; }
.sf-badge-method.post[b-700m4yaidr] { background: var(--sf-emerald); color: #000; }
.sf-badge-method.put[b-700m4yaidr] { background: var(--sf-amber); color: #000; }
.sf-badge-method.delete[b-700m4yaidr] { background: var(--sf-rose); color: #fff; }

.sf-action-trigger[b-700m4yaidr] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
}

/* Console Area */
.sf-console-area[b-700m4yaidr] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
}

.sf-builder-card[b-700m4yaidr] {
    padding: 1.5rem;
}

.sf-card-header[b-700m4yaidr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.sf-card-title[b-700m4yaidr] {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0;
}

.sf-active-trigger[b-700m4yaidr] {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--sf-primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.sf-builder-grid[b-700m4yaidr] {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.sf-input-group label[b-700m4yaidr] {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.sf-input-group select[b-700m4yaidr], .sf-input-group input[b-700m4yaidr] {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: var(--sf-border);
    border-radius: 8px;
    padding: 0.625rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
}

.sf-editor-container label[b-700m4yaidr] {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.sf-code-editor textarea[b-700m4yaidr] {
    width: 100%;
    height: 120px;
    background: #05070A;
    border: var(--sf-border);
    border-radius: 8px;
    padding: 1rem;
    color: var(--sf-primary);
    font-family: var(--sf-font-mono);
    font-size: 0.8125rem;
    resize: vertical;
}

.sf-card-footer[b-700m4yaidr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: var(--sf-border);
}

.sf-tip[b-700m4yaidr] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.sf-btn-run[b-700m4yaidr] {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
}

/* Response View */
.sf-response-view[b-700m4yaidr] {
    border-top: 2px solid var(--sf-primary);
    background: #05070A;
    border-radius: 12px;
    overflow: hidden;
}

.sf-response-header[b-700m4yaidr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: var(--sf-border);
}

.sf-status-group[b-700m4yaidr] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sf-status-group .label[b-700m4yaidr] { font-size: 0.7rem; font-weight: 800; color: rgba(255, 255, 255, 0.3); }
.sf-status-code[b-700m4yaidr] { font-size: 0.875rem; font-weight: 800; }
.sf-status-code.success[b-700m4yaidr] { color: var(--sf-emerald); }
.sf-status-code.error[b-700m4yaidr] { color: var(--sf-rose); }

.sf-transition-message[b-700m4yaidr] { font-size: 0.8125rem; font-weight: 600; }

.sf-response-body[b-700m4yaidr] {
    padding: 1.25rem;
    max-height: 400px;
    overflow-y: auto;
}

.sf-pretty-json[b-700m4yaidr] {
    font-family: var(--sf-font-mono);
    font-size: 0.8125rem;
    color: #A5B4FC;
    margin: 0;
}

/* History Sidebar */
.sf-history-sidebar[b-700m4yaidr] {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sf-timeline-wrapper[b-700m4yaidr] {
    flex: 1;
    overflow-y: auto;
}

.sf-timeline[b-700m4yaidr] {
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sf-timeline[b-700m4yaidr]::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.sf-timeline-item[b-700m4yaidr] {
    position: relative;
}

.sf-tl-marker[b-700m4yaidr] {
    position: absolute;
    left: -20px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #374151;
    border: 2px solid var(--sf-bg);
}

.sf-timeline-item.success .sf-tl-marker[b-700m4yaidr] { background: var(--sf-emerald); box-shadow: 0 0 10px var(--sf-emerald); }
.sf-timeline-item.fail .sf-tl-marker[b-700m4yaidr] { background: var(--sf-rose); box-shadow: 0 0 10px var(--sf-rose); }

.sf-tl-header[b-700m4yaidr] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
}

.sf-tl-header .method[b-700m4yaidr] { font-size: 0.6rem; font-weight: 800; padding: 2px 4px; border-radius: 4px; background: rgba(255, 255, 255, 0.05); }
.sf-tl-header .trigger[b-700m4yaidr] { font-size: 0.8125rem; font-weight: 600; color: #fff; }
.sf-tl-header .time[b-700m4yaidr] { font-size: 0.65rem; color: rgba(255, 255, 255, 0.3); margin-left: auto; }

.sf-tl-transition[b-700m4yaidr] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.sf-tl-transition .st[b-700m4yaidr] { color: rgba(255, 255, 255, 0.4); }
.sf-tl-transition .arrow[b-700m4yaidr] { color: var(--sf-primary); }
.sf-tl-transition .st.next[b-700m4yaidr] { color: var(--sf-primary); }

.sf-loading-view[b-700m4yaidr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sf-spinner[b-700m4yaidr] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-top-color: var(--sf-primary);
    border-radius: 50%;
    animation: spin-b-700m4yaidr 1s infinite linear;
    margin-bottom: 1rem;
}

@keyframes spin-b-700m4yaidr { to { transform: rotate(360deg); } }

/* Timeline method badge custom color themes */
.sf-tl-header .method.get[b-700m4yaidr] { color: #60A5FA !important; background: rgba(96, 165, 250, 0.15) !important; }
.sf-tl-header .method.post[b-700m4yaidr] { color: #34D399 !important; background: rgba(52, 211, 153, 0.15) !important; }
.sf-tl-header .method.put[b-700m4yaidr] { color: #FBBF24 !important; background: rgba(251, 191, 36, 0.15) !important; }
.sf-tl-header .method.delete[b-700m4yaidr] { color: #F87171 !important; background: rgba(248, 113, 113, 0.15) !important; }

/* /Shared/ProjectSidebar.razor.rz.scp.css */
/* Sidebar Component Styles */
.sf-project-sidebar[b-gyo5pr5s1c] {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0.75rem;
}

.sf-sidebar-header[b-gyo5pr5s1c] {
    padding: 0 0.75rem 1.5rem 0.75rem;
}

.sf-sidebar-title[b-gyo5pr5s1c] {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
}

.sf-project-nav[b-gyo5pr5s1c] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.sf-pnav-item[b-gyo5pr5s1c] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s;
    overflow: hidden;
}

.sf-pnav-item:hover[b-gyo5pr5s1c] {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.sf-pnav-item.active[b-gyo5pr5s1c] {
    background: rgba(99, 102, 241, 0.1);
    color: var(--sf-primary);
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.2);
}

.sf-pnav-item .icon[b-gyo5pr5s1c] {
    font-size: 1.1rem;
}

.sf-pnav-item .text[b-gyo5pr5s1c] {
    white-space: nowrap;
}

.sf-sidebar-footer[b-gyo5pr5s1c] {
    padding-top: 1rem;
    border-top: var(--sf-border, 1px solid rgba(255,255,255,0.1));
}

.sf-btn-back[b-gyo5pr5s1c] {
    width: 100%;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: color 0.2s;
    white-space: nowrap;
    overflow: hidden;
}

.sf-btn-back:hover[b-gyo5pr5s1c] {
    color: var(--sf-primary);
}
