/* /Components/Agent/AgentPanel.razor.rz.scp.css */
.agent-panel[b-ilh184kln0] {
    position: fixed;
    top: 60px;
    right: 0;
    height: calc(100vh - 60px);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(148, 163, 184, 0.1);
    transition: width 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
}

.agent-panel--collapsed[b-ilh184kln0] {
    width: 60px;
}

.agent-panel--expanded[b-ilh184kln0] {
    width: 350px;
}

.agent-panel-toggle[b-ilh184kln0] {
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s;
}

.agent-panel-toggle:hover[b-ilh184kln0] {
    transform: scale(1.1);
}

.agent-panel-header[b-ilh184kln0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.agent-panel-header h3[b-ilh184kln0] {
    margin: 0;
    color: white;
    font-size: 1rem;
}

.agent-panel-actions[b-ilh184kln0] {
    display: flex;
    gap: 0.5rem;
}

.btn-icon[b-ilh184kln0] {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
}

.btn-icon:hover[b-ilh184kln0] {
    color: white;
}

.agent-panel-body[b-ilh184kln0] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.agent-input-section[b-ilh184kln0] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.agent-prompt[b-ilh184kln0] {
    color: #e2e8f0;
    font-size: 0.875rem;
    margin: 0;
}

.agent-input-container[b-ilh184kln0] {
    display: flex;
    gap: 0.5rem;
}

.agent-input[b-ilh184kln0] {
    flex: 1;
    padding: 0.625rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
}

.agent-input:focus[b-ilh184kln0] {
    outline: none;
    border-color: #3b82f6;
}

.btn-send[b-ilh184kln0] {
    padding: 0.625rem 1rem;
    background: #3b82f6;
    border: none;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-send:hover:not(:disabled)[b-ilh184kln0] {
    background: #2563eb;
}

.btn-send:disabled[b-ilh184kln0] {
    opacity: 0.5;
    cursor: not-allowed;
}

.agent-quick-actions[b-ilh184kln0] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section-title[b-ilh184kln0] {
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
}

.quick-action-btn[b-ilh184kln0] {
    padding: 0.625rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 0.5rem;
    color: #e2e8f0;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.quick-action-btn:hover[b-ilh184kln0] {
    background: rgba(30, 41, 59, 0.9);
    border-color: #3b82f6;
    transform: translateX(2px);
}

.agent-history[b-ilh184kln0] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.history-item[b-ilh184kln0] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 0.375rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

.history-icon[b-ilh184kln0] {
    color: #10b981;
}

.history-text[b-ilh184kln0] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.agent-error[b-ilh184kln0] {
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.5rem;
    color: #fca5a5;
    font-size: 0.875rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .agent-panel--expanded[b-ilh184kln0] {
        width: 100%;
        left: 0;
    }
}
/* /Components/Agent/SuggestionCard.razor.rz.scp.css */
.suggestion-card[b-4619d8kduu] {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 0.75rem;
    padding: 1.25rem;
    border-left: 4px solid;
    margin-bottom: 1rem;
    animation: slideInRight-b-4619d8kduu 0.3s ease-out;
}

.suggestion-card[data-confidence="high"][b-4619d8kduu] {
    border-left-color: #10b981;
}

.suggestion-card[data-confidence="medium"][b-4619d8kduu] {
    border-left-color: #f59e0b;
}

.suggestion-card[data-confidence="low"][b-4619d8kduu] {
    border-left-color: #ef4444;
}

@keyframes slideInRight-b-4619d8kduu {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.suggestion-header[b-4619d8kduu] {
    margin-bottom: 1rem;
}

.suggestion-title-row[b-4619d8kduu] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.suggestion-icon[b-4619d8kduu] {
    font-size: 1.25rem;
}

.suggestion-title[b-4619d8kduu] {
    flex: 1;
    margin: 0;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.confidence-badge[b-4619d8kduu] {
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.confidence-high[b-4619d8kduu] {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.confidence-medium[b-4619d8kduu] {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.confidence-low[b-4619d8kduu] {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.suggestion-body[b-4619d8kduu] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.suggestion-decision[b-4619d8kduu] {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.suggestion-reason[b-4619d8kduu] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reason-label[b-4619d8kduu] {
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.reason-text[b-4619d8kduu] {
    color: #e2e8f0;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.suggestion-details[b-4619d8kduu] {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.btn-details[b-4619d8kduu] {
    background: transparent;
    border: none;
    color: #3b82f6;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.btn-details:hover[b-4619d8kduu] {
    color: #60a5fa;
}

.details-content[b-4619d8kduu] {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item[b-4619d8kduu] {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.detail-key[b-4619d8kduu] {
    color: #94a3b8;
    font-weight: 600;
}

.detail-value[b-4619d8kduu] {
    color: #e2e8f0;
}

.suggestion-actions[b-4619d8kduu] {
    display: flex;
    gap: 0.75rem;
}

.btn-apply[b-4619d8kduu] {
    flex: 1;
    padding: 0.75rem;
    background: #10b981;
    border: none;
    border-radius: 0.5rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-apply:hover:not(:disabled)[b-4619d8kduu] {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-apply:disabled[b-4619d8kduu] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-reject[b-4619d8kduu] {
    padding: 0.75rem 1.25rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 0.5rem;
    color: #e2e8f0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-reject:hover:not(:disabled)[b-4619d8kduu] {
    background: rgba(30, 41, 59, 0.9);
    border-color: #94a3b8;
}

.btn-reject:disabled[b-4619d8kduu] {
    opacity: 0.6;
    cursor: not-allowed;
}

.suggestion-feedback[b-4619d8kduu] {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.feedback-success[b-4619d8kduu] {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}

.feedback-error[b-4619d8kduu] {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.feedback-info[b-4619d8kduu] {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}
/* /Components/DecisionSphere.razor.rz.scp.css */
.decision-sphere-container[b-2srjext1sw] {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.sphere-panel[b-2srjext1sw] {
    width: min(100%, 38rem);
    display: grid;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: 1.75rem;
    background:
        radial-gradient(circle at top, rgba(142, 217, 209, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(10, 18, 28, 0.96), rgba(6, 13, 21, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.sphere-panel-header[b-2srjext1sw] {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
}

.sphere-panel-kicker[b-2srjext1sw] {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-secondary-light);
}

.sphere-panel h2[b-2srjext1sw] {
    margin: 0.35rem 0 0;
    font-family: var(--font-family-heading);
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
}

.sphere-progress-chip[b-2srjext1sw] {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-secondary);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sphere-wrapper[b-2srjext1sw] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.sphere-canvas[b-2srjext1sw] {
    width: 25rem;
    height: 25rem;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.sphere[b-2srjext1sw] {
    width: 18.5rem;
    height: 18.5rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%, rgba(240, 213, 171, 0.28), rgba(217, 163, 95, 0.26), rgba(16, 34, 50, 0.98));
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 50px rgba(142, 217, 209, 0.18),
        inset 0 0 60px rgba(255, 255, 255, 0.08),
        0 24px 64px rgba(0, 0, 0, 0.38);
    transition: all 0.3s ease;
    animation: sphereFloat-b-2srjext1sw 6s ease-in-out infinite;
}

@keyframes sphereFloat-b-2srjext1sw {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-8px); }
}

.sphere-idle[b-2srjext1sw] {
    filter: saturate(0.75);
    opacity: 0.9;
}

.sphere-active[b-2srjext1sw] {
    animation: sphereFloat-b-2srjext1sw 6s ease-in-out infinite, spherePulse-b-2srjext1sw 3s ease-in-out infinite;
}

.sphere-warning[b-2srjext1sw] {
    background: radial-gradient(circle at 30% 30%, rgba(255, 220, 147, 0.34), rgba(242, 170, 76, 0.34), rgba(55, 28, 4, 0.96));
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 56px rgba(242, 170, 76, 0.24),
        inset 0 0 60px rgba(255, 220, 147, 0.12),
        0 24px 64px rgba(0, 0, 0, 0.38);
}

.sphere-critical[b-2srjext1sw] {
    background: radial-gradient(circle at 30% 30%, rgba(255, 185, 185, 0.3), rgba(224, 97, 97, 0.38), rgba(59, 16, 16, 0.96));
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 60px rgba(224, 97, 97, 0.3),
        inset 0 0 60px rgba(255, 200, 200, 0.12),
        0 24px 64px rgba(0, 0, 0, 0.4);
}

.sphere-paused[b-2srjext1sw] {
    animation: none;
    opacity: 0.72;
    filter: grayscale(0.15);
}

@keyframes spherePulse-b-2srjext1sw {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.015); }
}

.sphere-glow[b-2srjext1sw] {
    position: absolute;
    top: 12%;
    left: 12%;
    width: 76%;
    height: 76%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.35), transparent 58%);
    filter: blur(14px);
    animation: glowPulse-b-2srjext1sw 3.2s ease-in-out infinite;
}

@keyframes glowPulse-b-2srjext1sw {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.56; }
}

.sphere-ring[b-2srjext1sw] {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(142, 217, 209, 0.28);
    animation: ringRotate-b-2srjext1sw 10s linear infinite;
}

.ring-1[b-2srjext1sw] {
    width: 19.75rem;
    height: 19.75rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(75deg);
}

.ring-2[b-2srjext1sw] {
    width: 21rem;
    height: 21rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(60deg);
    animation-duration: 12s;
    animation-direction: reverse;
}

.ring-3[b-2srjext1sw] {
    width: 22.25rem;
    height: 22.25rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(75deg);
    animation-duration: 14s;
}

@keyframes ringRotate-b-2srjext1sw {
    from { transform: translate(-50%, -50%) rotateZ(0deg) rotateX(75deg); }
    to { transform: translate(-50%, -50%) rotateZ(360deg) rotateX(75deg); }
}

.sphere-pulse[b-2srjext1sw] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18.5rem;
    height: 18.5rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(217, 163, 95, 0.3);
    animation: pulseExpand-b-2srjext1sw 2.6s ease-out infinite;
}

@keyframes pulseExpand-b-2srjext1sw {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.18);
        opacity: 0;
    }
}

.sphere-content[b-2srjext1sw] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    user-select: none;
}

.timer-value[b-2srjext1sw] {
    font-size: clamp(4rem, 7vw, 5.2rem);
    font-weight: 800;
    color: white;
    text-shadow: 0 0 20px rgba(240, 213, 171, 0.28);
    line-height: 1;
    font-family: var(--font-family-heading);
}

.timer-label[b-2srjext1sw] {
    margin-top: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.progress-ring[b-2srjext1sw] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 18.5rem;
    height: 18.5rem;
    pointer-events: none;
}

.progress-ring-bg[b-2srjext1sw] {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 4;
}

.progress-ring-fill[b-2srjext1sw] {
    fill: none;
    stroke: rgba(142, 217, 209, 0.88);
    stroke-width: 4;
    stroke-dasharray: 565.48;
    stroke-dashoffset: 565.48;
    transition: stroke-dashoffset 0.1s linear;
    filter: drop-shadow(0 0 10px rgba(142, 217, 209, 0.36));
}

.sphere-critical .progress-ring-fill[b-2srjext1sw] {
    stroke: rgba(224, 97, 97, 0.9);
    filter: drop-shadow(0 0 10px rgba(224, 97, 97, 0.42));
}

.particle[b-2srjext1sw] {
    position: absolute;
    width: 0.45rem;
    height: 0.45rem;
    background: radial-gradient(circle, rgba(240, 213, 171, 0.82), transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    animation: particleOrbit-b-2srjext1sw 4.8s linear infinite;
    animation-delay: calc(var(--particle-index) * -0.333s);
}

@keyframes particleOrbit-b-2srjext1sw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(11rem) rotate(0deg);
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    88% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(11rem) rotate(-360deg);
        opacity: 0;
    }
}

.status-indicator[b-2srjext1sw] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-icon[b-2srjext1sw] {
    font-size: 1.25rem;
}

.status-text[b-2srjext1sw] {
    font-size: 0.82rem;
}

.status-idle[b-2srjext1sw] {
    color: var(--color-text-secondary);
}

.status-active[b-2srjext1sw] {
    color: var(--color-secondary-light);
}

.status-critical[b-2srjext1sw] {
    color: #ffc4c4;
}

.status-paused[b-2srjext1sw] {
    color: #ffd88d;
}

.status-timeout[b-2srjext1sw] {
    color: #d6b6ff;
}

.sphere-telemetry[b-2srjext1sw] {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.telemetry-card[b-2srjext1sw] {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.telemetry-label[b-2srjext1sw] {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--color-text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.telemetry-card strong[b-2srjext1sw] {
    font-size: 1rem;
    color: var(--color-text-primary);
}

.action-buttons[b-2srjext1sw] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.sphere-button[b-2srjext1sw] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.78rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.95rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    background: rgba(255, 255, 255, 0.04);
    color: white;
}

.sphere-button:hover[b-2srjext1sw],
.sphere-button:focus-visible[b-2srjext1sw] {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.sphere-button-pause[b-2srjext1sw] {
    background: rgba(242, 170, 76, 0.14);
    border-color: rgba(242, 170, 76, 0.26);
    color: #ffd88d;
}

.sphere-button-reset[b-2srjext1sw] {
    background: rgba(224, 97, 97, 0.14);
    border-color: rgba(224, 97, 97, 0.26);
    color: #ffc4c4;
}

.sphere-button-resume[b-2srjext1sw] {
    background: rgba(70, 180, 126, 0.16);
    border-color: rgba(70, 180, 126, 0.28);
    color: #b7ffd4;
}

.sphere-button-restart[b-2srjext1sw] {
    background: rgba(142, 217, 209, 0.14);
    border-color: rgba(142, 217, 209, 0.26);
    color: var(--color-secondary-light);
}

@media (max-width: 768px) {
    .decision-sphere-container[b-2srjext1sw] {
        padding: 1rem;
    }

    .sphere-panel[b-2srjext1sw] {
        padding: 1rem;
    }

    .sphere-panel-header[b-2srjext1sw],
    .sphere-telemetry[b-2srjext1sw] {
        grid-template-columns: 1fr;
    }

    .sphere-panel-header[b-2srjext1sw] {
        display: grid;
    }

    .sphere-canvas[b-2srjext1sw] {
        width: 20rem;
        height: 20rem;
    }

    .sphere[b-2srjext1sw],
    .progress-ring[b-2srjext1sw],
    .sphere-pulse[b-2srjext1sw] {
        width: 15rem;
        height: 15rem;
    }

    .ring-1[b-2srjext1sw] {
        width: 16rem;
        height: 16rem;
    }

    .ring-2[b-2srjext1sw] {
        width: 17.25rem;
        height: 17.25rem;
    }

    .ring-3[b-2srjext1sw] {
        width: 18.5rem;
        height: 18.5rem;
    }

    .timer-value[b-2srjext1sw] {
        font-size: 3.8rem;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-wwks81zra1] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-wwks81zra1] {
    flex: 1;
}

.skip-link[b-wwks81zra1] {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary, #3366ff);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 0 0 4px 0;
    font-weight: 600;
}

.skip-link:focus[b-wwks81zra1] {
    top: 0;
}

.skip-link:focus-visible[b-wwks81zra1] {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

:global(a:focus-visible)[b-wwks81zra1],
:global(button:focus-visible)[b-wwks81zra1],
:global(input:focus-visible)[b-wwks81zra1],
:global(select:focus-visible)[b-wwks81zra1],
:global(textarea:focus-visible)[b-wwks81zra1],
:global([role="button"]:focus-visible)[b-wwks81zra1] {
    outline: 3px solid var(--color-primary, #3366ff);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(51, 102, 255, 0.2);
}

.public-header-shell[b-wwks81zra1],
.main-header-shell[b-wwks81zra1] {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky, 1020);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at top left, rgba(76, 116, 255, 0.18), transparent 22%),
        radial-gradient(circle at top right, rgba(96, 215, 197, 0.1), transparent 18%),
        rgba(7, 14, 27, 0.88);
    background-size: 72px 72px, auto, auto, auto;
    backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 42px rgba(1, 6, 20, 0.22);
}

.public-header-left[b-wwks81zra1],
.brand-stack[b-wwks81zra1],
.public-actions[b-wwks81zra1],
.public-footer-links[b-wwks81zra1] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.menu-icon-btn[b-wwks81zra1] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: white;
    cursor: pointer;
    font-size: 1.15rem;
}

.menu-icon-btn:hover[b-wwks81zra1],
.menu-icon-btn:focus-visible[b-wwks81zra1] {
    background: rgba(255, 255, 255, 0.12);
}

.public-brand[b-wwks81zra1],
.app-brand[b-wwks81zra1] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-weight: 800;
}

.app-brand[b-wwks81zra1] {
    font-size: 1.1rem;
}

.public-brand-mark[b-wwks81zra1] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.95rem;
    background: linear-gradient(135deg, #4c74ff, #60d7c5 62%, #f3b34a);
    color: white;
    box-shadow: 0 14px 36px rgba(76, 116, 255, 0.32);
    font-family: var(--font-family-heading, sans-serif);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.public-brand-mark--small[b-wwks81zra1] {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.85rem;
}

.public-brand-copy[b-wwks81zra1] {
    display: grid;
    gap: 0.08rem;
}

.public-brand-text[b-wwks81zra1] {
    font-family: var(--font-family-heading, sans-serif);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.public-brand-subtext[b-wwks81zra1] {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.header-status-chip[b-wwks81zra1] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-family-heading, sans-serif);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-dot[b-wwks81zra1] {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #60d7c5;
    box-shadow: 0 0 0 0.35rem rgba(96, 215, 197, 0.16);
}

.menu-backdrop[b-wwks81zra1] {
    position: fixed;
    inset: 0;
    z-index: 1150;
    border: none;
    background: rgba(3, 8, 20, 0.5);
    backdrop-filter: blur(4px);
}

.menu-drawer[b-wwks81zra1] {
    position: fixed;
    top: 5.25rem;
    left: 1rem;
    z-index: 1200;
    width: min(24rem, calc(100vw - 2rem));
    max-height: calc(100vh - 6.5rem);
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.15rem;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at top right, rgba(96, 215, 197, 0.08), transparent 18%),
        rgba(8, 12, 24, 0.96);
    background-size: 60px 60px, auto, auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    padding: 0.8rem;
}

.menu-drawer-nav[b-wwks81zra1] {
    display: grid;
    gap: 0.35rem;
}

.menu-drawer-link[b-wwks81zra1] {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 600;
    padding: 0.85rem 0.95rem;
    border-radius: 0.9rem;
}

.menu-drawer-link:hover[b-wwks81zra1],
.menu-drawer-link.active[b-wwks81zra1],
.menu-drawer-link:focus-visible[b-wwks81zra1] {
    background: linear-gradient(135deg, rgba(79, 108, 255, 0.16), rgba(36, 197, 232, 0.07));
    color: white;
}

.public-main[b-wwks81zra1] {
    padding: 1.5rem;
}

.public-page[b-wwks81zra1] {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.public-footer[b-wwks81zra1] {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2rem;
}

.public-footer-inner[b-wwks81zra1] {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.72);
}

.public-footer-links a[b-wwks81zra1] {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    font-weight: 600;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.public-footer-links a:hover[b-wwks81zra1],
.public-footer-links a:focus-visible[b-wwks81zra1] {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.top-row[b-wwks81zra1] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-wwks81zra1]  a,
.top-row[b-wwks81zra1]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-wwks81zra1]  a:hover,
.top-row[b-wwks81zra1]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-wwks81zra1]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row[b-wwks81zra1] {
        justify-content: space-between;
    }

    .top-row[b-wwks81zra1]  a,
    .top-row[b-wwks81zra1]  .btn-link {
        margin-left: 0;
    }

    .public-header-shell[b-wwks81zra1],
    .main-header-shell[b-wwks81zra1] {
        padding: 0.75rem 1rem;
    }

    .auth-actions[b-wwks81zra1] {
        display: none;
    }

    .header-status-chip[b-wwks81zra1] {
        display: none;
    }

    .public-actions[b-wwks81zra1] {
        gap: 0.5rem;
    }

    .menu-drawer[b-wwks81zra1] {
        top: 4.75rem;
        left: 0.75rem;
        width: calc(100vw - 1.5rem);
    }

    .public-main[b-wwks81zra1] {
        padding: 1rem;
    }
}

@media (min-width: 641px) {
    .page[b-wwks81zra1] {
        flex-direction: row;
    }

    .top-row[b-wwks81zra1] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-wwks81zra1]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-wwks81zra1],
    article[b-wwks81zra1] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-xgp438j662] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-xgp438j662] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-xgp438j662] {
    font-size: 1.1rem;
}

.bi[b-xgp438j662] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-xgp438j662] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-xgp438j662] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-xgp438j662] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-xgp438j662] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-xgp438j662] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-xgp438j662] {
        padding-bottom: 1rem;
    }

    .nav-item[b-xgp438j662]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-xgp438j662]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-xgp438j662]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-xgp438j662] {
        display: none;
    }

    .collapse[b-xgp438j662] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-xgp438j662] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/ReviewSession.razor.rz.scp.css */
/* Review Session Page Styles */

.review-session-page[b-iurw8y7zws] {
    min-height: 100vh;
    padding: 1rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Session Header */
.session-header[b-iurw8y7zws] {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
}

.header-content[b-iurw8y7zws] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.session-title[b-iurw8y7zws] {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    font-weight: 900;
}

.gradient-text[b-iurw8y7zws] {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.session-stats[b-iurw8y7zws] {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.stat-item[b-iurw8y7zws] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-icon[b-iurw8y7zws] {
    font-size: 1.5rem;
}

.stat-value[b-iurw8y7zws] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label[b-iurw8y7zws] {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.session-actions[b-iurw8y7zws] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-icon[b-iurw8y7zws] {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-icon:hover[b-iurw8y7zws] {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-danger[b-iurw8y7zws] {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-danger:hover[b-iurw8y7zws] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.3);
}

/* Review Grid */
.review-grid[b-iurw8y7zws] {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 1400px) {
    .review-grid[b-iurw8y7zws] {
        grid-template-columns: 1fr 1fr;
    }
    
    .analysis-panel[b-iurw8y7zws] {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .review-grid[b-iurw8y7zws] {
        grid-template-columns: 1fr;
    }
}

/* Content Panel */
.content-panel[b-iurw8y7zws] {
    padding: 1.5rem;
}

.panel-header[b-iurw8y7zws] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.panel-header h2[b-iurw8y7zws] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.content-meta[b-iurw8y7zws] {
    display: flex;
    gap: 0.5rem;
}

.meta-badge[b-iurw8y7zws] {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
}

.meta-badge.ai-score[b-iurw8y7zws] {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        rgba(239, 68, 68, 0.1) 100%);
    border-color: rgba(var(--ai-score), var(--ai-score), var(--ai-score), 0.3);
}

/* Media Container */
.media-container[b-iurw8y7zws] {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.video-container[b-iurw8y7zws] {
    aspect-ratio: 16 / 9;
}

.review-video[b-iurw8y7zws] {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-container[b-iurw8y7zws] {
    max-height: 500px;
}

.review-image[b-iurw8y7zws] {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Video Controls Overlay */
.video-controls-overlay[b-iurw8y7zws] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.media-container:hover .video-controls-overlay[b-iurw8y7zws] {
    opacity: 1;
}

.playback-info[b-iurw8y7zws] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.time-display[b-iurw8y7zws] {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.playback-speed[b-iurw8y7zws] {
    display: flex;
    gap: 0.25rem;
}

.playback-speed button[b-iurw8y7zws] {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.playback-speed button.active[b-iurw8y7zws] {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* Flagged Moments */
.flagged-moments[b-iurw8y7zws] {
    margin-top: 0.5rem;
}

.flagged-moments h4[b-iurw8y7zws] {
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
    color: #fbbf24;
}

.moment-chips[b-iurw8y7zws] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.moment-chip[b-iurw8y7zws] {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.moment-chip:hover[b-iurw8y7zws] {
    background: rgba(251, 191, 36, 0.2);
    transform: translateY(-2px);
}

.moment-chip .timestamp[b-iurw8y7zws] {
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Text Content */
.text-content-container[b-iurw8y7zws] {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.content-text[b-iurw8y7zws] {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.highlighted-phrases h4[b-iurw8y7zws] {
    margin: 0 0 0.75rem 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.phrase-item[b-iurw8y7zws] {
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid #ef4444;
}

.phrase-item.phrase-high[b-iurw8y7zws] {
    background: rgba(239, 68, 68, 0.2);
    border-color: #dc2626;
}

.phrase-item.phrase-medium[b-iurw8y7zws] {
    background: rgba(251, 191, 36, 0.1);
    border-color: #fbbf24;
}

.phrase-item.phrase-low[b-iurw8y7zws] {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.phrase-text[b-iurw8y7zws] {
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.phrase-reason[b-iurw8y7zws] {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Context Info */
.context-info[b-iurw8y7zws] {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.info-grid[b-iurw8y7zws] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.info-item[b-iurw8y7zws] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label[b-iurw8y7zws] {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.info-value[b-iurw8y7zws] {
    font-weight: 600;
    color: var(--text-primary);
}

/* Decision Panel */
.decision-panel[b-iurw8y7zws] {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.sphere-container-wrapper[b-iurw8y7zws] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.decision-hint[b-iurw8y7zws] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
}

.hint-icon[b-iurw8y7zws] {
    font-size: 1.5rem;
}

.hint-text[b-iurw8y7zws] {
    font-size: 0.875rem;
    color: var(--color-primary);
}

/* Decision Buttons */
.decision-buttons[b-iurw8y7zws] {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.decision-btn[b-iurw8y7zws] {
    flex: 1;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid;
    background: transparent;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.decision-approve[b-iurw8y7zws] {
    border-color: #10b981;
    color: #10b981;
}

.decision-approve:hover:not(:disabled)[b-iurw8y7zws] {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.decision-reject[b-iurw8y7zws] {
    border-color: #ef4444;
    color: #ef4444;
}

.decision-reject:hover:not(:disabled)[b-iurw8y7zws] {
    background: rgba(239, 68, 68, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.3);
}

.decision-btn:disabled[b-iurw8y7zws] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-icon[b-iurw8y7zws] {
    font-size: 2rem;
}

.btn-shortcut[b-iurw8y7zws] {
    font-size: 0.75rem;
    opacity: 0.7;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Secondary Actions */
.secondary-actions[b-iurw8y7zws] {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.action-btn[b-iurw8y7zws] {
    flex: 1;
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn:hover[b-iurw8y7zws] {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Analysis Panel */
.analysis-panel[b-iurw8y7zws] {
    padding: 1.5rem;
}

.panel-tabs[b-iurw8y7zws] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.tab-btn[b-iurw8y7zws] {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: -2px;
}

.tab-btn.active[b-iurw8y7zws] {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* AI Analysis */
.ai-confidence[b-iurw8y7zws] {
    margin-bottom: 1.5rem;
}

.ai-confidence h3[b-iurw8y7zws] {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.confidence-meter[b-iurw8y7zws] {
    position: relative;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
}

.confidence-bar[b-iurw8y7zws] {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #3b82f6, #ef4444);
    border-radius: 16px;
    transition: width 0.5s ease;
}

.confidence-value[b-iurw8y7zws] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.ai-factors[b-iurw8y7zws] {
    margin-bottom: 1.5rem;
}

.ai-factors h3[b-iurw8y7zws] {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.factor-item[b-iurw8y7zws] {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.factor-header[b-iurw8y7zws] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.factor-name[b-iurw8y7zws] {
    font-weight: 600;
}

.factor-score[b-iurw8y7zws] {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.factor-high[b-iurw8y7zws] {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.factor-medium[b-iurw8y7zws] {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.factor-low[b-iurw8y7zws] {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.factor-description[b-iurw8y7zws] {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.ai-recommendation h3[b-iurw8y7zws] {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.recommendation-card[b-iurw8y7zws] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.recommendation-approve[b-iurw8y7zws] {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
}

.recommendation-reject[b-iurw8y7zws] {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
}

.recommendation-icon[b-iurw8y7zws] {
    font-size: 2rem;
}

.recommendation-text[b-iurw8y7zws] {
    font-size: 1.25rem;
    font-weight: 700;
}

.recommendation-reason[b-iurw8y7zws] {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* History List */
.history-list[b-iurw8y7zws] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.history-item[b-iurw8y7zws] {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.2s;
}

.history-item:hover[b-iurw8y7zws] {
    background: rgba(255, 255, 255, 0.05);
}

.history-header[b-iurw8y7zws] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.history-id[b-iurw8y7zws] {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.history-decision[b-iurw8y7zws] {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.history-approved[b-iurw8y7zws] {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.history-rejected[b-iurw8y7zws] {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.history-time[b-iurw8y7zws] {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.history-preview[b-iurw8y7zws] {
    font-size: 0.875rem;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Session Footer */
.session-footer[b-iurw8y7zws] {
    padding: 1rem 1.5rem;
}

.footer-content[b-iurw8y7zws] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.queue-info[b-iurw8y7zws] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.queue-label[b-iurw8y7zws] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.queue-indicator[b-iurw8y7zws] {
    flex: 1;
    max-width: 300px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.queue-bar[b-iurw8y7zws] {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.queue-count[b-iurw8y7zws] {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-actions[b-iurw8y7zws] {
    display: flex;
    gap: 0.75rem;
}

.footer-btn[b-iurw8y7zws] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.footer-btn:hover:not(:disabled)[b-iurw8y7zws] {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-btn:disabled[b-iurw8y7zws] {
    opacity: 0.5;
    cursor: not-allowed;
}

.footer-btn-primary[b-iurw8y7zws] {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-color: transparent;
}

.footer-btn-primary:hover:not(:disabled)[b-iurw8y7zws] {
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

/* Keyboard Shortcuts Overlay */
.shortcuts-overlay[b-iurw8y7zws] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.shortcuts-panel[b-iurw8y7zws] {
    max-width: 500px;
    padding: 2rem;
}

.shortcuts-panel h2[b-iurw8y7zws] {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    text-align: center;
}

.shortcuts-list[b-iurw8y7zws] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.shortcut-item[b-iurw8y7zws] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

kbd[b-iurw8y7zws] {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-family: monospace;
    font-weight: 600;
}
/* /Pages/SphereFeed.razor.rz.scp.css */
.sphere-page[b-ry0d5xzvt6] {
    display: grid;
    gap: 1.25rem;
}

.sphere-hero[b-ry0d5xzvt6] {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    gap: 1.5rem;
    align-items: end;
    padding: 1.5rem;
    background:
        linear-gradient(135deg, rgba(142, 217, 209, 0.08), transparent 42%),
        linear-gradient(180deg, rgba(12, 23, 34, 0.96), rgba(8, 16, 26, 0.96));
}

.sphere-eyebrow[b-ry0d5xzvt6],
.sphere-kicker[b-ry0d5xzvt6] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-secondary-light);
}

.sphere-eyebrow[b-ry0d5xzvt6]::before,
.sphere-kicker[b-ry0d5xzvt6]::before {
    content: "";
    width: 0.75rem;
    height: 1px;
    background: currentColor;
}

.sphere-hero h1[b-ry0d5xzvt6],
.sphere-stage h2[b-ry0d5xzvt6],
.sphere-detail h2[b-ry0d5xzvt6],
.section-heading h3[b-ry0d5xzvt6] {
    margin: 0;
    font-family: var(--font-family-heading);
    line-height: 1;
}

.sphere-hero h1[b-ry0d5xzvt6] {
    margin-top: 0.75rem;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.sphere-hero p[b-ry0d5xzvt6],
.sphere-stage-copy p[b-ry0d5xzvt6] {
    margin: 0.85rem 0 0;
    max-width: 62ch;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

.sphere-hero-metrics[b-ry0d5xzvt6] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.hero-metric[b-ry0d5xzvt6],
.telemetry-item[b-ry0d5xzvt6],
.detail-summary-item[b-ry0d5xzvt6] {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metric-label[b-ry0d5xzvt6],
.telemetry-item span[b-ry0d5xzvt6],
.detail-summary-item span[b-ry0d5xzvt6] {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--color-text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-metric strong[b-ry0d5xzvt6],
.telemetry-item strong[b-ry0d5xzvt6],
.detail-summary-item strong[b-ry0d5xzvt6] {
    font-size: 1rem;
    color: var(--color-text-primary);
}

.sphere-layout[b-ry0d5xzvt6] {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 420px);
    gap: 1rem;
    align-items: start;
}

.sphere-stage[b-ry0d5xzvt6],
.sphere-detail[b-ry0d5xzvt6] {
    padding: 1.4rem;
}

.sphere-stage[b-ry0d5xzvt6] {
    display: grid;
    gap: 1.2rem;
    background:
        radial-gradient(circle at top, rgba(142, 217, 209, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(10, 19, 29, 0.97), rgba(7, 14, 23, 0.97));
}

.sphere-stage-top[b-ry0d5xzvt6],
.detail-head[b-ry0d5xzvt6],
.section-heading[b-ry0d5xzvt6] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
}

.sphere-stage-status[b-ry0d5xzvt6] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.status-pill[b-ry0d5xzvt6],
.detail-score[b-ry0d5xzvt6] {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.sphere-live-status[b-ry0d5xzvt6] {
    margin-top: 0.75rem;
    color: var(--color-secondary-light);
    font-size: 0.92rem;
}

.sphere-orbit-shell[b-ry0d5xzvt6] {
    position: relative;
    min-height: 34rem;
    border-radius: 1.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at center, rgba(217, 163, 95, 0.12), transparent 22%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 48%),
        linear-gradient(180deg, rgba(10, 18, 28, 0.94), rgba(4, 10, 17, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sphere-orbit-grid[b-ry0d5xzvt6],
.sphere-axis[b-ry0d5xzvt6],
.sphere-core-beacon[b-ry0d5xzvt6] {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.sphere-orbit-grid[b-ry0d5xzvt6] {
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sphere-orbit-grid--outer[b-ry0d5xzvt6] {
    width: 85%;
    height: 85%;
}

.sphere-orbit-grid--middle[b-ry0d5xzvt6] {
    width: 60%;
    height: 60%;
}

.sphere-orbit-grid--inner[b-ry0d5xzvt6] {
    width: 34%;
    height: 34%;
}

.sphere-axis--horizontal[b-ry0d5xzvt6] {
    width: 84%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.sphere-axis--vertical[b-ry0d5xzvt6] {
    width: 1px;
    height: 84%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.sphere-core-beacon[b-ry0d5xzvt6] {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: 0 0 0 8px rgba(217, 163, 95, 0.08), 0 0 28px rgba(217, 163, 95, 0.4);
}

.sphere-canvas[b-ry0d5xzvt6] {
    position: relative;
    min-height: 34rem;
    outline: none;
}

.sphere-node[b-ry0d5xzvt6] {
    position: absolute;
    display: grid;
    gap: 0.2rem;
    max-width: 11rem;
    padding: 0.65rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(10, 18, 28, 0.7);
    backdrop-filter: blur(14px);
    color: var(--color-text-primary);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.sphere-node:hover[b-ry0d5xzvt6],
.sphere-node:focus-visible[b-ry0d5xzvt6] {
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.sphere-node--front[b-ry0d5xzvt6] {
    background: rgba(14, 26, 38, 0.82);
}

.sphere-node--rear[b-ry0d5xzvt6] {
    background: rgba(10, 16, 24, 0.55);
}

.sphere-node--active[b-ry0d5xzvt6] {
    border-color: rgba(217, 163, 95, 0.5);
    background: linear-gradient(135deg, rgba(217, 163, 95, 0.2), rgba(142, 217, 209, 0.14));
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.4),
        0 0 calc(28px * var(--node-glow)) rgba(142, 217, 209, 0.3);
}

.sphere-node-title[b-ry0d5xzvt6] {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}

.sphere-node-meta[b-ry0d5xzvt6] {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.sphere-stage-footer[b-ry0d5xzvt6] {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(260px, 1fr);
    gap: 1rem;
}

.sphere-compass-panel[b-ry0d5xzvt6],
.sphere-telemetry-panel[b-ry0d5xzvt6],
.detail-section[b-ry0d5xzvt6] {
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-header[b-ry0d5xzvt6] {
    display: grid;
    gap: 0.3rem;
    margin-bottom: 0.9rem;
}

.sphere-controls[b-ry0d5xzvt6] {
    display: grid;
    gap: 0.7rem;
}

.sphere-controls-row[b-ry0d5xzvt6] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.sphere-control[b-ry0d5xzvt6] {
    display: grid;
    gap: 0.2rem;
    justify-items: center;
    padding: 0.95rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(14, 24, 35, 0.92);
    color: var(--color-text-primary);
    cursor: pointer;
    transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.sphere-control span[b-ry0d5xzvt6] {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
}

.sphere-control strong[b-ry0d5xzvt6] {
    font-size: 1.15rem;
}

.sphere-control:hover[b-ry0d5xzvt6],
.sphere-control:focus-visible[b-ry0d5xzvt6],
.neighbor-card:hover[b-ry0d5xzvt6],
.neighbor-card:focus-visible[b-ry0d5xzvt6],
.related-item:hover[b-ry0d5xzvt6],
.related-item:focus-visible[b-ry0d5xzvt6] {
    transform: translateY(-2px);
    border-color: rgba(217, 163, 95, 0.3);
    background: rgba(20, 31, 44, 0.96);
}

.sphere-control-hint[b-ry0d5xzvt6] {
    margin-top: 0.8rem;
    color: var(--color-text-muted);
    font-size: 0.86rem;
    line-height: 1.6;
}

.sphere-mobile-gesture[b-ry0d5xzvt6] {
    display: none;
    margin-top: 0.65rem;
    color: var(--color-secondary-light);
    font-size: 0.84rem;
    line-height: 1.55;
}

.telemetry-grid[b-ry0d5xzvt6],
.detail-summary[b-ry0d5xzvt6],
.neighbor-grid[b-ry0d5xzvt6],
.related-list[b-ry0d5xzvt6] {
    display: grid;
    gap: 0.75rem;
}

.telemetry-grid[b-ry0d5xzvt6],
.detail-summary[b-ry0d5xzvt6] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sphere-detail[b-ry0d5xzvt6] {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 1rem;
    background:
        linear-gradient(180deg, rgba(11, 20, 31, 0.98), rgba(7, 14, 23, 0.98));
}

.sphere-detail video[b-ry0d5xzvt6] {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 1.25rem;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tag-row[b-ry0d5xzvt6] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.tag-chip[b-ry0d5xzvt6] {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: rgba(142, 217, 209, 0.12);
    border: 1px solid rgba(142, 217, 209, 0.16);
    color: var(--color-secondary-light);
    font-size: 0.82rem;
}

.neighbor-card[b-ry0d5xzvt6],
.related-item[b-ry0d5xzvt6] {
    display: grid;
    gap: 0.25rem;
    width: 100%;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: inherit;
    cursor: pointer;
    transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.neighbor-title[b-ry0d5xzvt6],
.related-item strong[b-ry0d5xzvt6] {
    font-size: 0.95rem;
}

.neighbor-meta[b-ry0d5xzvt6],
.related-item span[b-ry0d5xzvt6] {
    color: var(--color-text-muted);
    font-size: 0.82rem;
}

.sphere-empty[b-ry0d5xzvt6] {
    padding: 2rem;
    text-align: center;
    color: var(--color-text-secondary);
}

@media (max-width: 1180px) {
    .sphere-layout[b-ry0d5xzvt6],
    .sphere-hero[b-ry0d5xzvt6],
    .sphere-stage-footer[b-ry0d5xzvt6] {
        grid-template-columns: 1fr;
    }

    .sphere-detail[b-ry0d5xzvt6] {
        position: static;
    }
}

@media (max-width: 720px) {
    .sphere-hero[b-ry0d5xzvt6],
    .sphere-stage[b-ry0d5xzvt6],
    .sphere-detail[b-ry0d5xzvt6] {
        padding: 1rem;
    }

    .sphere-hero-metrics[b-ry0d5xzvt6],
    .telemetry-grid[b-ry0d5xzvt6],
    .detail-summary[b-ry0d5xzvt6] {
        grid-template-columns: 1fr;
    }

    .sphere-orbit-shell[b-ry0d5xzvt6],
    .sphere-canvas[b-ry0d5xzvt6] {
        min-height: 25rem;
    }

    .sphere-node[b-ry0d5xzvt6] {
        width: 1rem;
        height: 1rem;
        max-width: none;
        padding: 0;
        border-radius: 999px;
        border-color: rgba(255, 255, 255, 0.16);
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
    }

    .sphere-node-title[b-ry0d5xzvt6],
    .sphere-node-meta[b-ry0d5xzvt6] {
        display: none;
    }

    .sphere-node--active[b-ry0d5xzvt6] {
        width: auto;
        height: auto;
        min-width: 7.5rem;
        max-width: 9rem;
        padding: 0.55rem 0.7rem;
        border-radius: 0.9rem;
    }

    .sphere-node--active .sphere-node-title[b-ry0d5xzvt6],
    .sphere-node--active .sphere-node-meta[b-ry0d5xzvt6] {
        display: block;
    }

    .sphere-node--active .sphere-node-title[b-ry0d5xzvt6] {
        font-size: 0.78rem;
    }

    .sphere-node--active .sphere-node-meta[b-ry0d5xzvt6] {
        font-size: 0.62rem;
    }

    .sphere-controls-row[b-ry0d5xzvt6] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sphere-control[b-ry0d5xzvt6] {
        min-height: 4.25rem;
    }

    .sphere-mobile-gesture[b-ry0d5xzvt6] {
        display: block;
    }
}
