/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-r5gbe049r3] {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header.top-bar[b-r5gbe049r3] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 0.75rem;
    border-bottom: 1px solid var(--dx-border-color, #dee2e6);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
    flex-shrink: 0;
    min-height: 46px;
}

main[b-r5gbe049r3] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.app-title[b-r5gbe049r3] {
    font-size: 1.25rem;
    font-weight: 600;
    white-space: nowrap;
}

.top-bar-actions[b-r5gbe049r3] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-left: auto;
    flex-shrink: 0;
}

.content[b-r5gbe049r3] {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1rem 0.5rem;
}

@media (max-width: 576px) {
    header.top-bar[b-r5gbe049r3] {
        gap: 0.375rem;
        padding: 0 0.5rem;
    }

    /* Hide username on very small screens to save header space */
    .top-bar-actions .user-name[b-r5gbe049r3] {
        display: none;
    }
}

#blazor-error-ui[b-r5gbe049r3] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-r5gbe049r3] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
[b-r8e8gnhtmr] .nav-menu {
    flex: 1;
    margin: 0;
}

/* Suppress DxMenu's own bottom border – header already provides a separator */
[b-r8e8gnhtmr] .nav-menu .dxbl-menu,
[b-r8e8gnhtmr] .nav-menu .dxbl-menu-horizontal {
    border-bottom: none !important;
    box-shadow: none !important;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-7ix0ndj12z],
.components-reconnect-repeated-attempt-visible[b-7ix0ndj12z],
.components-reconnect-failed-visible[b-7ix0ndj12z],
.components-pause-visible[b-7ix0ndj12z],
.components-resume-failed-visible[b-7ix0ndj12z],
.components-rejoining-animation[b-7ix0ndj12z] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-7ix0ndj12z],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-7ix0ndj12z],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-7ix0ndj12z],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-7ix0ndj12z],
#components-reconnect-modal.components-reconnect-retrying[b-7ix0ndj12z],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-7ix0ndj12z],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-7ix0ndj12z],
#components-reconnect-modal.components-reconnect-failed[b-7ix0ndj12z],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-7ix0ndj12z] {
    display: block;
}


#components-reconnect-modal[b-7ix0ndj12z] {
    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-7ix0ndj12z 0.5s both;

    &[open] {
        animation: components-reconnect-modal-slideUp-b-7ix0ndj12z 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-7ix0ndj12z 0.5s ease-in-out 0.3s;
        animation-fill-mode: both;
    }

}

#components-reconnect-modal[b-7ix0ndj12z]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-7ix0ndj12z 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-7ix0ndj12z {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-7ix0ndj12z {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-7ix0ndj12z {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-7ix0ndj12z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-7ix0ndj12z] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-7ix0ndj12z] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

#components-reconnect-modal button:hover[b-7ix0ndj12z] {
    background-color: #3b6ea2;
}

#components-reconnect-modal button:active[b-7ix0ndj12z] {
    background-color: #6b9ed2;
}

.components-rejoining-animation[b-7ix0ndj12z] {
    position: relative;
    width: 80px;
    height: 80px;
}

.components-rejoining-animation div[b-7ix0ndj12z] {
    position: absolute;
    border: 3px solid #0087ff;
    opacity: 1;
    border-radius: 50%;
    animation: components-rejoining-animation-b-7ix0ndj12z 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.components-rejoining-animation div:nth-child(2)[b-7ix0ndj12z] {
    animation-delay: -0.5s;
}

@keyframes components-rejoining-animation-b-7ix0ndj12z {
    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/Benchmark.razor.rz.scp.css */
.benchmark-page[b-3yyv3x6tli] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.benchmark-header[b-3yyv3x6tli] {
    flex-shrink: 0;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.benchmark-treelist-container[b-3yyv3x6tli] {
    flex: 1;
    overflow: auto;
    min-height: 0;
}

[b-3yyv3x6tli] .benchmark-treelist {
    height: 100%;
}

[b-3yyv3x6tli] td.deviation-positive {
    color: var(--dxds-color-content-success-default-rest);
    font-weight: 600;
}

[b-3yyv3x6tli] td.deviation-negative {
    color: var(--dxds-color-content-danger-default-rest);
    font-weight: 600;
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Single-viewport landing page */
.home-page[b-yjffbwaxwo] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 60px); /* subtract header height */
    padding: 0;
    gap: 0;
    overflow: hidden;
}

/* ── Hero ─────────────────────────────────────────── */
.hero[b-yjffbwaxwo] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex: 1 1 auto;
    min-height: 0;
    animation: fade-in-b-yjffbwaxwo 0.5s ease-out both;
}

.hero-text[b-yjffbwaxwo] { flex: 0 1 480px; }

.hero-text h1[b-yjffbwaxwo] {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

.hero-text p[b-yjffbwaxwo] {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.75;
    margin: 0 0 0.75rem;
    max-width: 480px;
}

.cta[b-yjffbwaxwo] {
    display: inline-block;
    background: var(--dx-color-primary, #1565c0);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: var(--app-border-radius);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
}

.cta:hover[b-yjffbwaxwo] { opacity: 0.85; transform: translateY(-1px); color: #fff; }

/* Bar graphic */
.hero-graphic[b-yjffbwaxwo] { flex: 0 0 auto; }

.bars[b-yjffbwaxwo] {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 140px;
}

.bars span[b-yjffbwaxwo] {
    width: 28px;
    height: var(--h);
    background: var(--dx-color-primary, #1565c0);
    opacity: 0.3;
    border-radius: 3px 3px 0 0;
    transform: scaleY(0);
    transform-origin: bottom;
    animation: bar-grow-b-yjffbwaxwo 0.5s ease-out var(--d, 0s) forwards;
}

.bars span.accent[b-yjffbwaxwo] { opacity: 0.8; }

@keyframes bar-grow-b-yjffbwaxwo { to { transform: scaleY(1); } }

/* ── Features ─────────────────────────────────────── */
.features[b-yjffbwaxwo] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    flex: 0 0 auto;
}

.feat[b-yjffbwaxwo] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border: 1px solid var(--dx-border-color, rgba(0,0,0,0.1));
    border-radius: var(--app-border-radius);
    padding: 0.6rem 0.75rem;
    opacity: 0;
    animation: slide-up-b-yjffbwaxwo 0.4s ease-out var(--d, 0s) both;
}

.feat i[b-yjffbwaxwo] {
    font-size: 1.25rem;
    color: var(--dx-color-primary, #1565c0);
}

.feat strong[b-yjffbwaxwo] { font-size: 0.8125rem; }

.feat span[b-yjffbwaxwo] {
    font-size: 0.75rem;
    opacity: 0.7;
    line-height: 1.4;
}

/* ── Steps ────────────────────────────────────────── */
.steps[b-yjffbwaxwo] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex: 0 0 auto;
    padding: 0.5rem 0;
    animation: fade-in-b-yjffbwaxwo 0.5s ease-out 0.3s both;
}

.step[b-yjffbwaxwo] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 500;
}

.num[b-yjffbwaxwo] {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--dx-color-primary, #1565c0);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.arrow[b-yjffbwaxwo] { opacity: 0.3; font-size: 0.75rem; }

/* ── Contact banner ───────────────────────────────── */
.contact[b-yjffbwaxwo] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 0 0 auto;
    padding: 0.6rem 1rem;
    background: var(--dx-color-primary, #1565c0);
    color: #fff;
    border-radius: var(--app-border-radius);
    font-size: 0.8125rem;
    animation: fade-in-b-yjffbwaxwo 0.5s ease-out 0.5s both;
}

.contact a[b-yjffbwaxwo] { color: #fff; text-decoration: underline; font-weight: 500; }
.contact .sep[b-yjffbwaxwo] { opacity: 0.4; }

/* ── Animations ───────────────────────────────────── */
@keyframes fade-in-b-yjffbwaxwo {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slide-up-b-yjffbwaxwo {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
    .hero[b-yjffbwaxwo] { flex-direction: column; text-align: center; }
    .hero-graphic[b-yjffbwaxwo] { display: none; }
    .features[b-yjffbwaxwo] { grid-template-columns: repeat(2, 1fr); }
    .steps[b-yjffbwaxwo] { flex-wrap: wrap; }
    .contact[b-yjffbwaxwo] { flex-wrap: wrap; text-align: center; }
}
