@import '_content/Unfold.Meeting.ProblemDomain/Unfold.Meeting.ProblemDomain.uvelda25w7.bundle.scp.css';
@import '_content/Unfold.Tool.Conversation/Unfold.Tool.Conversation.rs2jhd94yy.bundle.scp.css';
@import '_content/Unfold.Tool.ProcessModel/Unfold.Tool.ProcessModel.gfmuvjs2um.bundle.scp.css';
@import '_content/Unfold.Tool.Whiteboard/Unfold.Tool.Whiteboard.a4zct53xcm.bundle.scp.css';

/* /Components/Shared/Breadcrumb.razor.rz.scp.css */
.breadcrumb-bar[b-odfy9dzqby] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 0;
    pointer-events: none;
    font-size: 0.75rem;
    line-height: 1;
    background: var(--mud-palette-background);
    box-sizing: border-box;
}

.breadcrumb-bar > *[b-odfy9dzqby] {
    pointer-events: auto;
}

.breadcrumb-segment[b-odfy9dzqby] {
    color: var(--nordic-text-muted);
    text-decoration: none;
    padding: 2px 4px;
    border-radius: var(--nordic-radius-sm);
    transition: color var(--nordic-transition-fast), background-color var(--nordic-transition-fast);
}

a.breadcrumb-segment:hover[b-odfy9dzqby] {
    color: var(--nordic-primary);
    background-color: var(--nordic-primary-pale);
}

.breadcrumb-current[b-odfy9dzqby] {
    color: var(--nordic-text-secondary);
    font-weight: 500;
}

.breadcrumb-separator[b-odfy9dzqby] {
    color: var(--nordic-text-muted);
    margin: 0 2px;
    font-size: 0.7rem;
    opacity: 0.6;
}

/* Tenant dropdown */

.breadcrumb-tenant-wrapper[b-odfy9dzqby] {
    position: relative;
}

.breadcrumb-tenant-trigger[b-odfy9dzqby] {
    display: inline-flex !important;
    align-items: center;
    gap: 3px;
    margin: 0;
    border: none;
    background: none !important;
    font: inherit;
    color: var(--nordic-text-muted);
    padding: 2px 4px;
    border-radius: var(--nordic-radius-sm);
    cursor: pointer !important;
    font-size: 0.75rem;
    line-height: 1;
    transition: color var(--nordic-transition-fast), background-color var(--nordic-transition-fast);
}

.breadcrumb-tenant-trigger:hover[b-odfy9dzqby] {
    color: var(--nordic-primary);
    background-color: var(--nordic-primary-pale);
}

.breadcrumb-tenant-chevron[b-odfy9dzqby] {
    font-size: 0.65rem;
    opacity: 0.7;
}

.breadcrumb-dropdown[b-odfy9dzqby] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 180px;
    background: var(--nordic-surface, #ffffff) !important;
    border: 1px solid var(--nordic-border, #e0e0e0);
    border-radius: var(--nordic-radius-md, 6px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 1300;
    padding: 4px 0;
}

.breadcrumb-dropdown-item[b-odfy9dzqby] {
    padding: 6px 12px;
    font-size: 0.8rem;
    color: var(--nordic-text-secondary);
    cursor: pointer !important;
    transition: background-color var(--nordic-transition-fast);
}

.breadcrumb-dropdown-item:hover[b-odfy9dzqby] {
    background-color: var(--nordic-primary-pale);
}

.breadcrumb-dropdown-item--active[b-odfy9dzqby] {
    color: var(--nordic-primary);
    font-weight: 500;
    border-left: 2px solid var(--nordic-primary);
    padding-left: 10px;
}

.breadcrumb-dropdown-divider[b-odfy9dzqby] {
    height: 1px;
    background: var(--nordic-border);
    margin: 4px 0;
}

.breadcrumb-dropdown-action[b-odfy9dzqby] {
    padding: 6px 12px;
    font-size: 0.8rem;
    color: var(--nordic-primary);
    cursor: pointer !important;
    transition: background-color var(--nordic-transition-fast);
}

.breadcrumb-dropdown-action:hover[b-odfy9dzqby] {
    background-color: var(--nordic-primary-pale);
}
/* /Components/Shared/CollapsibleSection.razor.rz.scp.css */
.collapsible-section[b-lro5m49bw2] {
    margin-bottom: 1rem;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 4px;
}

.section-header[b-lro5m49bw2] {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    cursor: pointer;
    background: var(--mud-palette-background-grey);
    transition: background 0.2s;
}

.section-header:hover[b-lro5m49bw2] {
    background: var(--mud-palette-action-default-hover);
}

.section-content[b-lro5m49bw2] {
    padding: 1rem;
    animation: slideDown-b-lro5m49bw2 0.2s ease-out;
}

@keyframes slideDown-b-lro5m49bw2 {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}
/* /Components/Shared/DisclosureControl.razor.rz.scp.css */
.disclosure-container[b-38wia4pkhv] {
    position: relative;
    margin-bottom: 1rem;
}

.disclosure-header[b-38wia4pkhv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.disclosure-content[b-38wia4pkhv] {
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.disclosure-content.expanding[b-38wia4pkhv] {
    animation: expandIn-b-38wia4pkhv 0.3s ease-out;
}

.disclosure-content.collapsing[b-38wia4pkhv] {
    animation: collapseOut-b-38wia4pkhv 0.3s ease-in;
}

@keyframes expandIn-b-38wia4pkhv {
    from {
        opacity: 0.5;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 2000px;
        transform: translateY(0);
    }
}

@keyframes collapseOut-b-38wia4pkhv {
    from {
        opacity: 1;
        max-height: 2000px;
        transform: translateY(0);
    }
    to {
        opacity: 0.5;
        max-height: 0;
        transform: translateY(-10px);
    }
}

.disclosure-expand-hint[b-38wia4pkhv] {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: var(--mud-palette-background-grey);
    border-radius: 4px;
    text-align: center;
}

.disclosure-container[data-disclosure-level="1"][b-38wia4pkhv] {
    border-left: 3px solid var(--mud-palette-primary);
}

.disclosure-container[data-disclosure-level="2"][b-38wia4pkhv] {
    border-left: 3px solid var(--mud-palette-info);
}

.disclosure-container[data-disclosure-level="3"][b-38wia4pkhv] {
    border-left: 3px solid var(--mud-palette-success);
}

.disclosure-container[data-disclosure-level="4"][b-38wia4pkhv] {
    border-left: 3px solid var(--mud-palette-secondary);
}
/* /Components/Shared/EducationalTooltipComponent.razor.rz.scp.css */
.educational-term[b-zjqnriw69b] {
    border-bottom: 1px dashed var(--mud-palette-text-secondary);
    cursor: help;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.educational-term .help-icon[b-zjqnriw69b] {
    opacity: 0.5;
    font-size: 14px;
}

.educational-term:hover .help-icon[b-zjqnriw69b] {
    opacity: 1;
    color: var(--mud-palette-primary);
}

.educational-tooltip-content[b-zjqnriw69b] {
    padding: 0.5rem;
    max-width: 400px;
}
/* /Components/Shared/HelpHint.razor.rz.scp.css */
.help-hint[b-7clw13o8s9] {
    animation: slideIn-b-7clw13o8s9 0.3s ease-out;
}

@keyframes slideIn-b-7clw13o8s9 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Shared/LearnMoreModal.razor.rz.scp.css */
.educational-content[b-hi1xwz4ko3] {
    line-height: 1.6;
}

.educational-content h1[b-hi1xwz4ko3] {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.educational-content h2[b-hi1xwz4ko3] {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.educational-content p[b-hi1xwz4ko3] {
    margin-bottom: 1rem;
}
/* /Components/Shared/PieMenu.razor.rz.scp.css */
/* ============================================================
   PieMenu – Scoped CSS (Nordic Muted → Vivid)
   ============================================================ */

/* --- Backdrop --- */
.pie-backdrop[b-fmp2m968xr] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 9998;
    transition: background 0.25s ease;
    pointer-events: all;
}

.pie-backdrop--visible[b-fmp2m968xr] {
    background: rgba(0, 0, 0, 0.15);
}

/* --- Container positioning --- */
.pie-container[b-fmp2m968xr] {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pie-position-bottom-right[b-fmp2m968xr] {
    bottom: 115px;
    right: 115px;
}

.pie-position-bottom-left[b-fmp2m968xr] {
    bottom: 115px;
    left: 115px;
}

.pie-position-center[b-fmp2m968xr] {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* --- FAB button --- */
.pie-fab[b-fmp2m968xr] {
    border-radius: 50%;
    border: none;
    background: var(--nordic-primary, #7A8A99);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    position: relative;
    z-index: 10001;
    outline: none;
}

.pie-fab:hover[b-fmp2m968xr] {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 3px 8px rgba(0, 0, 0, 0.15);
}

.pie-fab:active[b-fmp2m968xr] {
    transform: scale(0.95);
}

.pie-fab--open[b-fmp2m968xr] {
    background: #475569;
}

.pie-fab-letter[b-fmp2m968xr] {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    user-select: none;
}

.pie-fab-icon[b-fmp2m968xr] {
    pointer-events: none;
}

/* --- FAB label --- */
.pie-fab-label[b-fmp2m968xr] {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    letter-spacing: 0.03em;
}

/* --- SVG pie ---
   Position is set via inline left/top style to center on FAB.
   pointer-events: none on SVG so empty areas pass through to backdrop;
   interactive children (segments, center circle) set their own pointer-events. */
.pie-svg[b-fmp2m968xr] {
    width: 400px;
    height: 400px;
    position: absolute;
    pointer-events: none;
    overflow: visible;
    transform-origin: center;
    animation: pie-spring-in-b-fmp2m968xr 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* --- Segments --- */
.pie-segment[b-fmp2m968xr] {
    cursor: pointer;
    transition: fill 200ms ease;
    pointer-events: all;
}

.pie-segment-disabled[b-fmp2m968xr] {
    cursor: not-allowed;
}

/* --- Segment group entrance --- */
.pie-segment-group[b-fmp2m968xr] {
    opacity: 0;
    animation: pie-segment-enter-b-fmp2m968xr 0.25s ease forwards;
}

/* --- Labels --- */
.pie-label[b-fmp2m968xr] {
    font-size: 11px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    pointer-events: none;
    user-select: none;
    font-weight: 500;
    transition: fill 200ms ease;
}

/* --- Icons --- */
.pie-icon[b-fmp2m968xr] {
    pointer-events: none;
    overflow: visible;
}

/* --- Number hints --- */
.pie-number-hint[b-fmp2m968xr] {
    font-size: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, monospace;
    fill: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    user-select: none;
    font-weight: 600;
}

/* --- Center circle ---
   Fill is set inline (dynamic: #e2e8f0 default, vivid on hover).
   pointer-events: all so it receives clicks for drill-back. */
.pie-center-circle[b-fmp2m968xr] {
    cursor: pointer;
    transition: fill 200ms ease;
    pointer-events: all;
}

/* --- Center text (all non-interactive, pointer-events handled via inline style) --- */
.pie-center-title[b-fmp2m968xr] {
    font-size: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    pointer-events: none;
    user-select: none;
    font-weight: 600;
    transition: fill 200ms ease;
}

.pie-center-description[b-fmp2m968xr] {
    font-size: 9px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    pointer-events: none;
    user-select: none;
    font-weight: 400;
}

.pie-center-back-label[b-fmp2m968xr] {
    font-size: 11px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    fill: #6a7a8a;
    pointer-events: none;
    user-select: none;
    font-weight: 500;
}

/* ============================================================
   Animations
   ============================================================ */

/* Spring-in for the whole pie */
@keyframes pie-spring-in-b-fmp2m968xr {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
    70% {
        transform: scale(0.98);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Staggered entrance for each segment group */
@keyframes pie-segment-enter-b-fmp2m968xr {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
/* /Components/Shared/ToolTransitionOverlay.razor.rz.scp.css */
.tool-transition-overlay[b-y20x1oxvtb] {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1200;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tool-transition-overlay.slide-in[b-y20x1oxvtb] {
    animation: slideIn-b-y20x1oxvtb 0.3s ease forwards;
}

.tool-transition-overlay.fade-out[b-y20x1oxvtb] {
    animation: fadeOut-b-y20x1oxvtb 0.3s ease forwards;
}

.tool-transition-cue[b-y20x1oxvtb] {
    min-width: 300px;
    max-width: 500px;
    border-radius: 8px;
    background: var(--mud-palette-surface) !important;
}

@keyframes slideIn-b-y20x1oxvtb {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeOut-b-y20x1oxvtb {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
}
/* /Components/Voice/CorrectionIndicator.razor.rz.scp.css */
.correction-indicator[b-rjqj9lofpo] {
    background-color: var(--color-success-bg);
    border-left: 4px solid var(--color-success);
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 12px;
    animation: slide-in-b-rjqj9lofpo 0.3s ease;
}

@keyframes slide-in-b-rjqj9lofpo {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.correction-header[b-rjqj9lofpo] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.correction-icon[b-rjqj9lofpo] {
    font-size: 1.25rem;
}

.correction-text[b-rjqj9lofpo] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-success-dark);
}

.correction-undo[b-rjqj9lofpo] {
    margin-left: auto;
    padding: 4px 12px;
    background-color: white;
    border: 1px solid var(--color-gray-300);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
}

.correction-undo:hover[b-rjqj9lofpo] {
    background-color: var(--color-gray-50);
}

.correction-list[b-rjqj9lofpo] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.correction-item[b-rjqj9lofpo] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--color-gray-700);
}

.original[b-rjqj9lofpo] {
    text-decoration: line-through;
    color: var(--color-error);
}

.corrected[b-rjqj9lofpo] {
    font-weight: 600;
    color: var(--color-success-dark);
}

.confidence[b-rjqj9lofpo] {
    color: var(--color-gray-500);
    font-size: 0.75rem;
}
/* /Components/Voice/MicrophoneButton.razor.rz.scp.css */
.microphone-button[b-m22j1ogrsy] {
    position: relative;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background-color: var(--mud-palette-primary);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.microphone-button:hover:not(:disabled)[b-m22j1ogrsy] {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.microphone-button:disabled[b-m22j1ogrsy] {
    background-color: var(--mud-palette-text-disabled);
    cursor: not-allowed;
}

.microphone-button.recording[b-m22j1ogrsy] {
    background-color: var(--mud-palette-error);
    animation: pulse 1.5s ease-in-out infinite;
}

.microphone-icon[b-m22j1ogrsy] {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.recording-indicator[b-m22j1ogrsy] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    animation: pulse-dot 1s ease-in-out infinite;
}

@@keyframes pulse {
    0%[b-m22j1ogrsy], 100%[b-m22j1ogrsy] {
        box-shadow: 0 0 0 0 rgba(200, 90, 84, 0.7);
    }
    50%[b-m22j1ogrsy] {
        box-shadow: 0 0 0 10px rgba(200, 90, 84, 0);
    }
}

@@keyframes pulse-dot {
    0%[b-m22j1ogrsy], 100%[b-m22j1ogrsy] {
        transform: scale(1);
        opacity: 1;
    }
    50%[b-m22j1ogrsy] {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.microphone-error[b-m22j1ogrsy] {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    padding: 8px 12px;
    background-color: var(--mud-palette-error-lighten);
    color: var(--mud-palette-error);
    border-radius: 4px;
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 10;
}
/* /Components/Voice/TranscriptDisplay.razor.rz.scp.css */
.transcript-container[b-ke9263hkcy] {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    margin-bottom: 12px;
}

.transcript-container.active[b-ke9263hkcy] {
    opacity: 1;
    max-height: 200px;
}

.transcript-header[b-ke9263hkcy] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, var(--mud-palette-primary-lighten), var(--mud-palette-primary));
    border-radius: 8px 8px 0 0;
    color: white;
}

.transcript-icon[b-ke9263hkcy] {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
    animation: pulse-icon-b-ke9263hkcy 2s ease-in-out infinite;
}

@keyframes pulse-icon-b-ke9263hkcy {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.transcript-label[b-ke9263hkcy] {
    font-size: 0.875rem;
    font-weight: 600;
}

.audio-pulse[b-ke9263hkcy] {
    margin-left: auto;
    width: 20px;
    height: 20px;
    position: relative;
}

.audio-pulse[b-ke9263hkcy]::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: white;
    opacity: 0.6;
    animation: pulse-ring-b-ke9263hkcy 1.5s ease-out infinite;
}

@keyframes pulse-ring-b-ke9263hkcy {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.transcript-content[b-ke9263hkcy] {
    padding: 12px 16px;
    background-color: var(--mud-palette-background-gray);
    border-radius: 0 0 8px 8px;
    max-height: 150px;
    overflow-y: auto;
}

.transcript-words[b-ke9263hkcy] {
    line-height: 1.8;
    font-size: 1rem;
}

.transcript-words.interim[b-ke9263hkcy] {
    color: var(--mud-palette-text-secondary);
    font-style: italic;
}

.transcript-words.final[b-ke9263hkcy] {
    color: var(--mud-palette-text-primary);
    font-weight: 500;
    padding-top: 8px;
    border-top: 1px solid var(--mud-palette-lines-default);
    margin-top: 8px;
    animation: fade-in-b-ke9263hkcy 0.3s ease;
}

@keyframes fade-in-b-ke9263hkcy {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.word[b-ke9263hkcy] {
    display: inline-block;
    margin-right: 0.3em;
    transition: opacity 0.2s ease;
    animation: word-appear-b-ke9263hkcy 0.2s ease;
}

@keyframes word-appear-b-ke9263hkcy {
    from {
        opacity: 0;
        transform: translateY(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.word.low-confidence[b-ke9263hkcy] {
    text-decoration: underline dotted;
    text-decoration-color: var(--mud-palette-warning);
}
/* /Components/Voice/VoiceAssignmentSettings.razor.rz.scp.css */
.voice-assignment-settings[b-rn3za4wmpk] {
    margin-bottom: 16px;
}
