/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-at5kz7fuae],
.components-reconnect-repeated-attempt-visible[b-at5kz7fuae],
.components-reconnect-failed-visible[b-at5kz7fuae],
.components-pause-visible[b-at5kz7fuae],
.components-resume-failed-visible[b-at5kz7fuae],
.components-rejoining-animation[b-at5kz7fuae] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-at5kz7fuae],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-at5kz7fuae],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-at5kz7fuae],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-at5kz7fuae],
#components-reconnect-modal.components-reconnect-retrying[b-at5kz7fuae],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-at5kz7fuae],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-at5kz7fuae],
#components-reconnect-modal.components-reconnect-failed[b-at5kz7fuae],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-at5kz7fuae] {
    display: block;
}


#components-reconnect-modal[b-at5kz7fuae] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-at5kz7fuae 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-at5kz7fuae 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-at5kz7fuae 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-at5kz7fuae]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-at5kz7fuae 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-at5kz7fuae {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-at5kz7fuae {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-at5kz7fuae {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-at5kz7fuae] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-at5kz7fuae] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-at5kz7fuae] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-at5kz7fuae] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-at5kz7fuae] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-at5kz7fuae] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-at5kz7fuae] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-at5kz7fuae 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-at5kz7fuae] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-at5kz7fuae {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/GuidesHub.razor.rz.scp.css */
.page-head-row[b-5dc01d3xqf] {
    margin-bottom: var(--sp-5, 24px);
}

.guide-grid[b-5dc01d3xqf] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.guide-card[b-5dc01d3xqf] {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--ov-line, #E7E1D4);
    border-radius: var(--ov-r, 12px);
    box-shadow: var(--ov-shadow-sm);
}

.gc-icon[b-5dc01d3xqf] {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--ov-r-sm, 8px);
    background: var(--ov-lime-soft, #EEF6D6);
    color: var(--ov-lime-deep, #97C21C);
}

.gc-body[b-5dc01d3xqf] {
    flex: 1 1 auto;
    min-width: 0;
}

.gc-title-row[b-5dc01d3xqf] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.gc-body p[b-5dc01d3xqf] {
    margin: 0;
    color: var(--ov-muted, #6B6860);
    font-size: 0.9rem;
}

.gc-badge[b-5dc01d3xqf] {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--ov-r-pill, 999px);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.gc-badge.gc-new[b-5dc01d3xqf] {
    background: var(--ov-lime-soft, #EEF6D6);
    color: var(--ov-lime-ink, #2C3A05);
    border: 1px solid var(--ov-lime-soft-line, #DDEBB2);
}

.gc-badge.gc-done[b-5dc01d3xqf] {
    background: var(--ov-bg-tint);
    color: var(--ov-muted);
}

.gc-badge.gc-done svg[b-5dc01d3xqf] {
    width: 12px;
    height: 12px;
}

.guide-card .btn[b-5dc01d3xqf] {
    flex: 0 0 auto;
    align-self: center;
}
/* /Components/Shared/OnboardingChecklist.razor.rz.scp.css */
/* Deliberately quiet: a warm neutral panel with a thin lime hairline, not a saturated
   gradient. The lists are the hero of the dashboard; this first-run helper should recede. */
.ob-check[b-gx9vnr6wwk] {
    position: relative;
    background: var(--ov-surface-2, #FBF7EF);
    border: 1px solid var(--ov-lime-soft-line, #DDEBB2);
    border-radius: var(--ov-r-lg, 16px);
    padding: 16px 18px;
    margin-bottom: 20px;
    box-shadow: var(--ov-shadow-sm);
}

.ob-dismiss[b-gx9vnr6wwk] {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: var(--ov-r-pill, 999px);
    background: transparent;
    color: #6B6860;
    cursor: pointer;
}

.ob-dismiss:hover[b-gx9vnr6wwk] {
    background: rgba(43, 38, 28, 0.06);
}

.ob-head[b-gx9vnr6wwk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    padding-right: 28px;
}

.ob-head h2[b-gx9vnr6wwk] {
    margin: 0 0 2px;
    font-size: 1.02rem;
}

.ob-head p[b-gx9vnr6wwk] {
    margin: 0;
    color: #6B6860;
    font-size: 0.9rem;
}

.ob-progress[b-gx9vnr6wwk] {
    flex: 0 0 160px;
    height: 8px;
    background: rgba(43, 38, 28, 0.10);
    border-radius: var(--ov-r-pill, 999px);
    overflow: hidden;
}

.ob-progress-fill[b-gx9vnr6wwk] {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--ov-lime, #B7E42F), var(--ov-lime-deep, #97C21C));
    border-radius: inherit;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ob-steps[b-gx9vnr6wwk] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ob-step[b-gx9vnr6wwk] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 4px;
    border-radius: var(--ov-r, 12px);
}

.ob-tick[b-gx9vnr6wwk] {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: var(--ov-r-pill, 999px);
    border: 2px solid rgba(43, 38, 28, 0.20);
    color: #fff;
}

.ob-tick svg[b-gx9vnr6wwk] {
    width: 14px;
    height: 14px;
}

.ob-step.done .ob-tick[b-gx9vnr6wwk] {
    background: var(--ov-lime-deep, #97C21C);
    border-color: var(--ov-lime-deep, #97C21C);
}

.ob-label[b-gx9vnr6wwk] {
    flex: 1 1 auto;
    font-weight: 500;
}

.ob-step.done .ob-label[b-gx9vnr6wwk] {
    color: #6B6860;
    text-decoration: line-through;
}
/* /Components/Shared/WelcomeWizard.razor.rz.scp.css */
.wiz-overlay[b-d12uwra1pe] {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(27, 26, 23, 0.55);
    backdrop-filter: blur(3px);
    animation: wiz-fade-b-d12uwra1pe 0.25s ease;
}

.wiz-card[b-d12uwra1pe] {
    position: relative;
    width: 100%;
    max-width: 560px;
    background: #fff;
    border-radius: var(--ov-r-lg, 16px);
    box-shadow: var(--ov-shadow-lg);
    padding: 34px 34px 28px;
    animation: wiz-rise-b-d12uwra1pe 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wiz-close[b-d12uwra1pe] {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: var(--ov-r-pill, 999px);
    background: transparent;
    color: var(--ov-muted);
    cursor: pointer;
}

.wiz-close:hover[b-d12uwra1pe] {
    background: rgba(43, 38, 28, 0.06);
}

.wiz-eyebrow[b-d12uwra1pe] {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ov-lime-deep, #97C21C);
    margin-bottom: 8px;
}

.wiz-card h1[b-d12uwra1pe] {
    margin: 0 0 10px;
    font-size: 1.6rem;
    line-height: 1.2;
}

.wiz-lede[b-d12uwra1pe] {
    margin: 0 0 22px;
    color: var(--ov-ink-soft);
    font-size: 1rem;
    line-height: 1.5;
}

.wiz-choices[b-d12uwra1pe] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

@media (max-width: 520px) {
    .wiz-choices[b-d12uwra1pe] { grid-template-columns: 1fr; }
}

/* Third path (Excel import) spans the full row under the two main choices. */
.wiz-choice-wide[b-d12uwra1pe] {
    grid-column: 1 / -1;
}

.wiz-choice[b-d12uwra1pe] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-align: left;
    padding: 18px;
    border: 1.5px solid var(--ov-line, #E7E1D4);
    border-radius: var(--ov-r, 12px);
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.wiz-choice:hover:not(:disabled)[b-d12uwra1pe] {
    border-color: var(--ov-lime, #B7E42F);
    transform: translateY(-2px);
    box-shadow: var(--ov-shadow-sm);
}

.wiz-choice:disabled[b-d12uwra1pe] {
    opacity: 0.6;
    cursor: default;
}

.wiz-choice strong[b-d12uwra1pe] {
    font-size: 1.05rem;
}

.wiz-choice span:last-child[b-d12uwra1pe] {
    font-size: 0.88rem;
    color: var(--ov-muted);
}

/* Template tiles ("Wat wil je bewaken?"): same chrome as the path choice, emoji as icon. */
.wc-emoji[b-d12uwra1pe] {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    border-radius: var(--ov-r-sm, 8px);
    background: var(--ov-lime-soft, #EEF6D6);
}

.wc-icon[b-d12uwra1pe] {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--ov-r-sm, 8px);
    background: var(--ov-lime-soft, #EEF6D6);
    color: var(--ov-lime-deep, #97C21C);
    margin-bottom: 4px;
}

.wiz-skip[b-d12uwra1pe] {
    display: block;
    margin: 4px auto 0;
    border: none;
    background: transparent;
    color: var(--ov-muted);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
}

.wiz-label[b-d12uwra1pe] {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.wiz-card .input[b-d12uwra1pe] {
    width: 100%;
}

.wiz-hint[b-d12uwra1pe] {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: var(--ov-lime-deep, #97C21C);
}

.wiz-sample[b-d12uwra1pe] {
    margin: 4px 0 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.wiz-sample .wiz-hint[b-d12uwra1pe] {
    margin: 6px 0 0;
}

.wiz-error[b-d12uwra1pe] {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: var(--ov-danger);
}

.wiz-actions[b-d12uwra1pe] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.wiz-confirm[b-d12uwra1pe] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--ov-lime-soft, #EEF6D6);
    border: 1px solid var(--ov-lime-soft-line, #DDEBB2);
    border-radius: var(--ov-r, 12px);
    margin-top: 16px;
}

.wiz-confirm p[b-d12uwra1pe] {
    margin: 0;
    line-height: 1.45;
}

.wc-check[b-d12uwra1pe] {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: var(--ov-r-pill, 999px);
    background: var(--ov-lime-deep, #97C21C);
    color: #fff;
}

.wc-check svg[b-d12uwra1pe] {
    width: 16px;
    height: 16px;
}

@keyframes wiz-fade-b-d12uwra1pe {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes wiz-rise-b-d12uwra1pe {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
