/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* layout styles live in wwwroot/css/fillpure.css */
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-dhartyncip],
.components-reconnect-repeated-attempt-visible[b-dhartyncip],
.components-reconnect-failed-visible[b-dhartyncip],
.components-pause-visible[b-dhartyncip],
.components-resume-failed-visible[b-dhartyncip],
.components-rejoining-animation[b-dhartyncip] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-dhartyncip],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-dhartyncip],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-dhartyncip],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-dhartyncip],
#components-reconnect-modal.components-reconnect-retrying[b-dhartyncip],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-dhartyncip],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-dhartyncip],
#components-reconnect-modal.components-reconnect-failed[b-dhartyncip],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-dhartyncip] {
    display: block;
}


#components-reconnect-modal[b-dhartyncip] {
    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-dhartyncip 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-dhartyncip 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-dhartyncip 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-dhartyncip]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-dhartyncip 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-dhartyncip {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-dhartyncip {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-dhartyncip {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-dhartyncip] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-dhartyncip] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-dhartyncip] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-dhartyncip] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-dhartyncip] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-dhartyncip] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-dhartyncip] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-dhartyncip 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-dhartyncip] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-dhartyncip {
    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/Admin/Cache.razor.rz.scp.css */
.fp-cache-card[b-9fzmz3iagy] {
    overflow: hidden;
}

.fp-cache-loading[b-9fzmz3iagy] {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.75rem;
    color: var(--fp-primary-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.fp-count-loader[b-9fzmz3iagy] {
    display: inline-block;
    width: 2.4rem;
    height: 1.35rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #e4edf2 25%, #f8fbfd 50%, #e4edf2 75%);
    background-size: 200% 100%;
    animation: fp-cache-shimmer-b-9fzmz3iagy 1.1s ease-in-out infinite;
}

@keyframes fp-cache-shimmer-b-9fzmz3iagy {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}

.fp-cache-table thead th[b-9fzmz3iagy] {
    background: #f3f8fb;
    color: var(--fp-primary-dark);
    border-bottom: 2px solid var(--fp-primary-light);
    font-size: 0.85rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    white-space: nowrap;
}

.fp-cache-table td[b-9fzmz3iagy] {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.fp-cache-table code[b-9fzmz3iagy] {
    color: var(--fp-primary-dark);
    font-size: 0.95rem;
    white-space: nowrap;
}

.fp-key-count[b-9fzmz3iagy] {
    min-width: 2.4rem;
    border: 1px solid #d9e5ec;
    color: var(--fp-primary-dark) !important;
    font-size: 0.9rem;
}

.fp-cache-card .card-footer[b-9fzmz3iagy] {
    background: #f8fbfd;
    border-top: 1px solid #dbe7ed;
    padding: 0.85rem 1rem;
}

@media (max-width: 575.98px) {
    .fp-cache-table th:nth-child(2)[b-9fzmz3iagy],
    .fp-cache-table td:nth-child(2)[b-9fzmz3iagy] {
        min-width: 14rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fp-count-loader[b-9fzmz3iagy] {
        animation: none;
    }
}
/* /Components/Pages/Dashboard.razor.rz.scp.css */
/* Floating, collapsible dashboard filter dock — pinned to the top-right corner so
   it's reachable at any scroll position. (The navbar is not sticky, so a fixed
   panel is safe; top offset clears the navbar when the page is at the top.) */

.fp-filter-dock[b-amjatxw6fd] {
    position: fixed;
    top: 4.75rem;
    right: 1rem;
    z-index: 1035;
    display: flex;
    justify-content: flex-end;
}

.fp-filter-panel[b-amjatxw6fd] {
    width: 260px;
    max-width: calc(100vw - 2rem);
}

/* Collapsed dock: a two-segment pill — [filter summary ▾] [print]. */
.fp-filter-collapsed[b-amjatxw6fd] {
    display: inline-flex;
    align-items: stretch;
    border-radius: 999px;
    overflow: hidden;
    max-width: min(70vw, 22rem);
}

.fp-filter-open[b-amjatxw6fd],
.fp-filter-print[b-amjatxw6fd] {
    border: none;
    padding: 0.45rem 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.fp-filter-open[b-amjatxw6fd] {
    background: var(--fp-primary);
    color: #fff;
    min-width: 0; /* allow the summary to ellipsize */
}

    .fp-filter-open:hover[b-amjatxw6fd] {
        background: var(--fp-primary-dark);
    }

.fp-filter-summary[b-amjatxw6fd] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fp-filter-print[b-amjatxw6fd] {
    background: #fff;
    color: var(--fp-primary-dark);
    border-left: 1px solid rgba(0, 0, 0, 0.12);
}

    .fp-filter-print:hover[b-amjatxw6fd] {
        background: #f1f5f9;
    }

/* On small screens, let the open panel span closer to the full width. */
@media (max-width: 575.98px) {
    .fp-filter-dock[b-amjatxw6fd] {
        top: 4rem;
        left: 1rem;
    }

    .fp-filter-panel[b-amjatxw6fd] {
        width: auto;
    }
}

/* In print, show the collapsed dock as a static, legible filter-summary chip (so the
   printout documents which filters were applied), and drop the interactive controls. */
@media print {
    .fp-filter-dock[b-amjatxw6fd] {
        position: static;
        margin-bottom: 0.5rem;
    }

    .fp-filter-print[b-amjatxw6fd],
    .fp-filter-open .fa-chevron-down[b-amjatxw6fd] {
        display: none !important;
    }

    .fp-filter-collapsed[b-amjatxw6fd] {
        box-shadow: none !important;
        border: 1px solid #333;
    }

    .fp-filter-open[b-amjatxw6fd] {
        background: #fff !important;
        color: #000 !important;
    }
}
/* /Components/Pages/Print.razor.rz.scp.css */
/* Custom one-pager — recreated from FILLPURE.samples/print-custom-default.html. */

.report-container[b-c535oyf76h] {
    background: #fff;
    padding: 20px;
    max-width: 800px;
    margin: 24px auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

[b-c535oyf76h] .section { margin-bottom: 20px; }

[b-c535oyf76h] .header {
    display: flex;
    align-items: center;
    border-bottom: 3px solid #4BA1C6;
    padding-bottom: 10px;
}

    [b-c535oyf76h] .header img {
        width: 200px;
        max-width: 45%;
        margin-right: 20px;
    }

    [b-c535oyf76h] .header h1 {
        font-size: 24px;
        color: #333;
        margin: 0;
    }

    [b-c535oyf76h] .header p {
        font-size: 14px;
        color: #555;
        margin: 4px 0 0;
    }

[b-c535oyf76h] .data-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
}

    [b-c535oyf76h] .data-table th,
    [b-c535oyf76h] .data-table td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: left;
        font-size: 14px;
    }

    [b-c535oyf76h] .data-table th {
        background: #4BA1C6;
        color: #fff;
        font-weight: bold;
    }

    [b-c535oyf76h] .data-table tr:nth-child(even) {
        background: #f2f2f2;
    }

[b-c535oyf76h] .photo-section,
[b-c535oyf76h] .signature-section {
    border: 2px solid #ddd;
    padding: 10px;
    border-radius: 3px;
    background: #f9f9f9;
}

    [b-c535oyf76h] .photo-section h3,
    [b-c535oyf76h] .signature-section h3 {
        margin-top: 0;
        color: #333;
    }

[b-c535oyf76h] .photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

[b-c535oyf76h] .report-photo {
    text-align: center;
    font-size: 12px;
    color: #666;
}

    [b-c535oyf76h] .report-photo img {
        max-height: 250px;
        max-width: 220px;
        width: auto;
        border-radius: 3px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        object-fit: contain;
        display: block;
        margin: 0 auto 4px;
    }

[b-c535oyf76h] .signature img {
    max-height: 120px;
    max-width: 760px;
    width: auto;
    padding: 5px;
    object-fit: contain;
}

[b-c535oyf76h] .signature-section table {
    width: 100%;
}

[b-c535oyf76h] .signature-section td {
    padding: 8px;
}

[b-c535oyf76h] .signature .sig-line {
    font-family: "Segoe Script", cursive;
    font-size: 28px;
    border-bottom: 1px solid #999;
    display: inline-block;
    padding: 0 40px 2px;
    margin: 6px 0;
}

/* image lightbox */
[b-c535oyf76h] .xmodal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

    [b-c535oyf76h] .xmodal.active { display: flex; }

[b-c535oyf76h] .xmodal-dialog {
    max-width: 95vw;
    max-height: 95vh;
    overflow: auto;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

[b-c535oyf76h] .xmodal-content { padding: 2rem; }

[b-c535oyf76h] .xmodal-photo {
    width: 70vw;
    max-width: 700px;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #9aa5b1;
}

[b-c535oyf76h] .close-btn {
    background: transparent;
    border: none;
    font-size: 2rem;
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    cursor: pointer;
}

@media print {
    .report-container[b-c535oyf76h] {
        box-shadow: none;
        border: none;
        padding: 3px;
        margin: 0;
        max-width: 100%;
    }

    [b-c535oyf76h] .no-print { display: none !important; }

    [b-c535oyf76h] .section { margin-bottom: 6px; }
}
/* /Components/Pages/Submissions.razor.rz.scp.css */
.fp-search-status[b-jbddlxo290] {
    min-height: 1.5rem;
    color: var(--fp-primary-dark);
}

.fp-search-status .spinner-border[b-jbddlxo290] {
    width: 0.85rem;
    height: 0.85rem;
    border-width: 0.12em;
}
