/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-32idef412l] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-32idef412l] {
    flex: 1;
}

.content[b-32idef412l] {
    flex: 1 1 auto;
}

.sidebar[b-32idef412l] {
    background-color: var(--exhortek-sidebar-bg);
    border-right: 1px solid var(--exhortek-sidebar-border);
}

.top-row[b-32idef412l] {
    background-color: var(--exhortek-header-bg);
    border-bottom: 1px solid var(--exhortek-sidebar-border);
    justify-content: space-between;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-32idef412l]  a, .top-row[b-32idef412l]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-32idef412l]  a:hover, .top-row[b-32idef412l]  .btn-link:hover {
        text-decoration: underline;
    }

@media (max-width: 640.98px) {
    .top-row[b-32idef412l] {
        justify-content: space-between;
    }

    .top-row[b-32idef412l]  a, .top-row[b-32idef412l]  .btn-link {
        margin-left: 0;
    }

    /* The sidebar already has its own off-canvas toggle at this width
       (NavMenu.razor's .navbar-toggler), so this button would be a
       redundant, non-functional-looking second control here. */
    .sidebar-toggle-btn[b-32idef412l] {
        display: none;
    }
}

@media (min-width: 641px) {
    .page[b-32idef412l] {
        flex-direction: row;
        /* Pins the whole shell to exactly one viewport. Sidebar and main
           both end up exactly 100vh, so neither ever needs position:sticky
           to keep its header aligned with the other's — there's nothing
           above either of them left to scroll. */
        height: 100vh;
    }

    .sidebar[b-32idef412l] {
        width: 260px;
        height: 100vh;
        flex-shrink: 0;
        overflow: hidden;
        transition: width 0.2s ease-in-out;
    }

    /* Toggled from the burger button in the main top-row (MainLayout.razor
       ToggleSidebar) rather than the off-canvas checkbox NavMenu.razor uses
       for narrow widths — that one only shows/hides the nav list, this
       collapses the whole column to reclaim the width for main content. */
    .page.sidebar-collapsed .sidebar[b-32idef412l] {
        width: 0;
        border-right: none;
    }

    main[b-32idef412l] {
        height: 100vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    /* The only scrolling region on desktop: main content scrolls on its
       own so the sidebar and header bars stay put. The sidebar's own nav
       list (NavMenu.razor.css .nav-scrollable) is sized to fit without its
       own scrollbar under normal window heights, so this is the one
       scrollbar you should ever see here. */
    .content[b-32idef412l] {
        overflow-y: auto;
    }

    .top-row[b-32idef412l] {
        flex-shrink: 0;
    }

    .top-row[b-32idef412l], article[b-32idef412l] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

.facepile-toggle[b-32idef412l] {
    border: 1px solid var(--exhortek-sidebar-border);
    background-color: transparent;
}

.facepile-avatar[b-32idef412l] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: var(--exhortek-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
}

#blazor-error-ui[b-32idef412l] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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-32idef412l] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-em15qb823a] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: var(--exhortek-primary);
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid var(--exhortek-sidebar-border);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2875, 108, 178, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem transparent;
}

.navbar-toggler:checked[b-em15qb823a] {
    background-color: rgba(75, 108, 178, 0.1);
}

.top-row[b-em15qb823a] {
    /* Fixed (not min-) height, and display:flex/align-items set explicitly
       here rather than relying on Bootstrap's .navbar defaults, so this
       renders at exactly the same height as MainLayout.razor's own
       .top-row and the two headers always line up. */
    height: 3.5rem;
    display: flex;
    align-items: center;
    background-color: var(--exhortek-sidebar-bg);
    border-bottom: 1px solid var(--exhortek-sidebar-border);
}

.navbar-brand[b-em15qb823a] {
    display: inline-flex;
    align-items: center;
}

.sidebar-heading[b-em15qb823a] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.25rem;
}

.bi[b-em15qb823a] {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.bi-house-door-fill-nav-menu[b-em15qb823a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234b6cb2' 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-em15qb823a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234b6cb2' 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-em15qb823a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234b6cb2' 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");
}

.bi-speedometer-nav-menu[b-em15qb823a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234b6cb2' class='bi bi-speedometer2' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5V6a.5.5 0 0 1-1 0V4.5A.5.5 0 0 1 8 4M3.732 5.732a.5.5 0 0 1 .707 0l.915.914a.5.5 0 1 1-.708.708l-.914-.915a.5.5 0 0 1 0-.707M2 10a.5.5 0 0 1 .5-.5h1.586a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 10m9.5 0a.5.5 0 0 1 .5-.5h1.5a.5.5 0 0 1 0 1H12a.5.5 0 0 1-.5-.5m.754-4.246a.389.389 0 0 0-.527-.02L7.547 9.31a.91.91 0 1 0 1.302 1.258l3.434-4.297a.389.389 0 0 0-.029-.518z'/%3E%3Cpath fill-rule='evenodd' d='M0 10a8 8 0 1 1 15.547 2.661c-.442 1.253-1.845 1.602-2.932 1.25C11.309 13.488 9.475 13 8 13c-1.474 0-3.31.488-4.615.911-1.087.352-2.49.003-2.932-1.25A8 8 0 0 1 0 10m8-7a7 7 0 0 0-6.603 9.329c.203.575.923.876 1.68.63C4.397 12.533 6.358 12 8 12s3.604.532 4.923.96c.757.245 1.477-.056 1.68-.631A7 7 0 0 0 8 3'/%3E%3C/svg%3E");
}

.bi-layers-nav-menu[b-em15qb823a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234b6cb2' class='bi bi-layers' viewBox='0 0 16 16'%3E%3Cpath d='M8.235 1.559a.5.5 0 0 0-.47 0l-7.5 4a.5.5 0 0 0 0 .882L3.188 8 .264 9.559a.5.5 0 0 0 0 .882l7.5 4a.5.5 0 0 0 .47 0l7.5-4a.5.5 0 0 0 0-.882L12.813 8l2.922-1.559a.5.5 0 0 0 0-.882zm3.515 7.008L14.438 10 8 13.433 1.562 10 4.25 8.567l3.515 1.874a.5.5 0 0 0 .47 0zM8 9.433 1.562 6 8 2.567 14.438 6z'/%3E%3C/svg%3E");
}

.bi-shield-nav-menu[b-em15qb823a] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234b6cb2' class='bi bi-shield-check' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M5.338 1.59a61 61 0 0 0-2.837.856.48.48 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.7 10.7 0 0 0 2.287 2.233c.346.244.652.42.893.533q.18.084.293.118a1 1 0 0 0 .101.025 1 1 0 0 0 .1-.025q.114-.034.294-.118c.24-.113.547-.29.893-.533a10.7 10.7 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39q-1.264-.421-2.837-.855C9.552 1.29 8.531 1 8 1s-1.552.29-2.662.59zM8 15c-.18 0-.492-.086-.912-.34a9.6 9.6 0 0 1-2.049-1.989c-1.386-1.814-2.554-4.552-2.049-8.564a59 59 0 0 1 2.633-.798C6.71 2.965 7.573 2.5 8 2.5s1.29.465 2.377.809c.929.294 1.858.573 2.633.798.505 4.012-.663 6.75-2.049 8.564a9.6 9.6 0 0 1-2.049 1.989C8.492 14.914 8.18 15 8 15m2.354-8.646a.5.5 0 0 0-.708-.708L7.25 8.043 6.354 7.146a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0z'/%3E%3C/svg%3E");
}

.nav-item[b-em15qb823a] {
    font-size: 0.9rem;
    padding-bottom: 0.15rem;
}

    .nav-item:first-of-type[b-em15qb823a] {
        padding-top: 0.5rem;
    }

    .nav-item:last-of-type[b-em15qb823a] {
        padding-bottom: 0.5rem;
    }

    .nav-item[b-em15qb823a]  .nav-link {
        color: var(--bs-body-color);
        background: none;
        border: none;
        border-radius: 4px;
        min-height: 2.25rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding-block: 0.35rem;
        line-height: 1.3;
        width: 100%;
    }

.nav-item[b-em15qb823a]  a.active {
    background-color: rgba(75, 108, 178, 0.12);
    color: var(--exhortek-primary);
}

.nav-item[b-em15qb823a]  .nav-link:hover {
    background-color: rgba(75, 108, 178, 0.08);
    color: var(--exhortek-primary);
}

.nav-scrollable[b-em15qb823a] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-em15qb823a] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-em15qb823a] {
        display: none;
    }

    .nav-scrollable[b-em15qb823a] {
        /* Never collapse the sidebar for wide screens. Height/overflow here
           is a safety net, not the normal case: row sizing above keeps the
           full link list well under a typical viewport height, so this
           scrollbar should not appear in practice — but if it ever grows
           past the window, it scrolls in place instead of pushing the
           sidebar past the viewport or being clipped. */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
        display: block;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-mq120vh70g],
.components-reconnect-repeated-attempt-visible[b-mq120vh70g],
.components-reconnect-failed-visible[b-mq120vh70g],
.components-pause-visible[b-mq120vh70g],
.components-resume-failed-visible[b-mq120vh70g],
.components-rejoining-animation[b-mq120vh70g] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-mq120vh70g],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-mq120vh70g],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-mq120vh70g],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-mq120vh70g],
#components-reconnect-modal.components-reconnect-retrying[b-mq120vh70g],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-mq120vh70g],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-mq120vh70g],
#components-reconnect-modal.components-reconnect-failed[b-mq120vh70g],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-mq120vh70g] {
    display: block;
}


#components-reconnect-modal[b-mq120vh70g] {
    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-mq120vh70g 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-mq120vh70g 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-mq120vh70g 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-mq120vh70g]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-mq120vh70g 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-mq120vh70g {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-mq120vh70g {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-mq120vh70g {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-mq120vh70g] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-mq120vh70g] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-mq120vh70g] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-mq120vh70g] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-mq120vh70g] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-mq120vh70g] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-mq120vh70g] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-mq120vh70g 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-mq120vh70g] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-mq120vh70g {
    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/Cases/CaseDetails.razor.rz.scp.css */
.case-description-text[b-ucybd6cky4] {
    white-space: pre-wrap;
    word-break: break-word;
}

.work-notes-card[b-ucybd6cky4] {
    background-color: rgba(58, 170, 53, 0.06);
}

.timeline[b-ucybd6cky4] {
    position: relative;
    padding-left: 2.25rem;
}

.timeline-item[b-ucybd6cky4] {
    position: relative;
    padding-bottom: 1.25rem;
}

    .timeline-item:not(:last-child)[b-ucybd6cky4]::before {
        content: "";
        position: absolute;
        left: -1.65rem;
        top: 1.75rem;
        bottom: -0.25rem;
        width: 2px;
        background-color: var(--bs-border-color);
    }

.timeline-icon[b-ucybd6cky4] {
    position: absolute;
    left: -2.25rem;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: rgba(var(--exhortek-primary-rgb), 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.timeline-content[b-ucybd6cky4] {
    padding-top: 0.05rem;
}
/* /Components/Pages/Cases/CreateCase.razor.rz.scp.css */
.stepper[b-cxd7mjo17e] {
    display: flex;
    align-items: center;
}

.stepper-step[b-cxd7mjo17e] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bs-secondary-color);
}

    .stepper-step .step-circle[b-cxd7mjo17e] {
        width: 1.75rem;
        height: 1.75rem;
        border-radius: 50%;
        border: 1px solid var(--bs-border-color);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .stepper-step.active[b-cxd7mjo17e] {
        color: var(--exhortek-primary);
        font-weight: 600;
    }

        .stepper-step.active .step-circle[b-cxd7mjo17e] {
            background-color: var(--exhortek-primary);
            border-color: var(--exhortek-primary);
            color: #fff;
        }

    .stepper-step.completed .step-circle[b-cxd7mjo17e] {
        background-color: rgba(var(--exhortek-primary-rgb), 0.12);
        border-color: var(--exhortek-primary);
        color: var(--exhortek-primary);
    }

.stepper-connector[b-cxd7mjo17e] {
    flex: 1 1 auto;
    height: 1px;
    background-color: var(--bs-border-color);
    margin: 0 0.75rem;
}

    .stepper-connector.completed[b-cxd7mjo17e] {
        background-color: var(--exhortek-primary);
    }

@media (max-width: 767.98px) {
    .stepper-step .step-label[b-cxd7mjo17e] {
        display: none;
    }
}

.dropzone[b-cxd7mjo17e] {
    border: 1px dashed var(--bs-border-color);
    border-radius: 6px;
    padding: 1.25rem;
    background-color: var(--bs-tertiary-bg);
}

.dropzone.disabled[b-cxd7mjo17e] {
    opacity: 0.65;
}

.dropzone-input[b-cxd7mjo17e] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* /Components/Pages/Dashboard.razor.rz.scp.css */
.hero-banner[b-rxsx1egx2o] {
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(120deg, rgba(var(--exhortek-primary-rgb), 0.14), rgba(111, 66, 193, 0.1));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.hero-banner-tagline[b-rxsx1egx2o] {
    font-family: 'Segoe Script', cursive;
    font-size: 1.15rem;
    line-height: 1.3;
    color: var(--exhortek-primary);
    text-align: right;
    opacity: 0.85;
}

.section-icon[b-rxsx1egx2o] {
    font-size: 1.25rem;
    line-height: 1;
}

.elevate-plan-card[b-rxsx1egx2o] {
    border: 1px solid var(--bs-border-color);
    border-radius: 10px;
    padding: 1rem;
    background-color: var(--bs-body-bg);
}

.support-plan-card[b-rxsx1egx2o] {
    border-radius: 10px;
    padding: 1rem;
}

.support-plan-assure[b-rxsx1egx2o] {
    background-color: rgba(58, 170, 53, 0.06);
    border: 1px solid rgba(58, 170, 53, 0.2);
}

.support-plan-flex[b-rxsx1egx2o] {
    background-color: rgba(111, 66, 193, 0.06);
    border: 1px solid rgba(111, 66, 193, 0.2);
}

@media (max-width: 767.98px) {
    .hero-banner[b-rxsx1egx2o] {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-banner-tagline[b-rxsx1egx2o] {
        text-align: left;
    }
}
