/* /Components/Dialogs/MIPeopleEditDialog.razor.rz.scp.css */
/* Muted label colour for form fields whose value is currently empty.
   Uses the Radzen secondary-text token so the tint is correct in both
   light and dark themes without any extra JS or theme detection. */
.field-empty[b-twzd84obhi]  label {
    color: var(--rz-text-secondary-color);
}

/* Radzen outlined variant may render the floating label as a legend element */
.field-empty[b-twzd84obhi]  legend {
    color: var(--rz-text-secondary-color);
}
/* /Components/Layout/LoginControl.razor.rz.scp.css */
.avatar[b-uf2u11z7sy] {
    height: 2.5rem;
    width: 2.5rem;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.65);
    margin-left: 0.4rem;
    flex-shrink: 0;
}

.login-status[b-uf2u11z7sy] {
    margin-left: 0.5rem;
    font-weight: 700;
}

.status-guest[b-uf2u11z7sy] {
    color: #b6bcc7;
}

.status-volunteer[b-uf2u11z7sy] {
    color: #57d39b;
}

.status-admin[b-uf2u11z7sy] {
    color: #7db8ff;
}

.status-superadmin[b-uf2u11z7sy] {
    color: gold;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Navigation progress bar */
#nav-progress-bar[b-lh7hena10q] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 9999;
    pointer-events: none;
    background: linear-gradient(90deg,
        var(--rz-primary, #c0392b) 0%,
        color-mix(in srgb, var(--rz-primary, #c0392b) 60%, white) 100%);
    /* Start fully off-screen left, invisible */
    transform: translateX(-100%);
    opacity: 0;
    transition: none;
}

/* Crawls in from the left, stopping around 85% — looks "busy" */
#nav-progress-bar.nav-progress--active[b-lh7hena10q] {
    opacity: 1;
    transform: translateX(-15%);
    transition: transform 8s cubic-bezier(0.05, 0.5, 0.1, 1.0),
                opacity 0.05s linear;
}

/* Page loaded: snap to full width then fade out */
#nav-progress-bar.nav-progress--done[b-lh7hena10q] {
    opacity: 0;
    transform: translateX(0%);
    transition: transform 0.1s ease-out,
                opacity 0.4s ease 0.1s;
}

/* Content area inside RadzenBody */
.content[b-lh7hena10q] {
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    padding-top: 0;
}

/* Header brand and link styling (colours controlled by dark-red-theme.css) */
.header-brand[b-lh7hena10q] {
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin-left: 0.5rem;
}

.header-link[b-lh7hena10q] {
    text-decoration: none;
    white-space: nowrap;
}

.header-link:hover[b-lh7hena10q] {
    text-decoration: underline;
}


#blazor-error-ui[b-lh7hena10q] {
    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-lh7hena10q] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu uses RadzenPanelMenu – styling is handled by the Radzen theme and dark-red-theme.css */
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-9joj3j677c],
.components-reconnect-repeated-attempt-visible[b-9joj3j677c],
.components-reconnect-failed-visible[b-9joj3j677c],
.components-pause-visible[b-9joj3j677c],
.components-resume-failed-visible[b-9joj3j677c],
.components-rejoining-animation[b-9joj3j677c] {
    display: none;
}

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


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

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

}

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

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

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

@keyframes components-reconnect-modal-fadeInOpacity-b-9joj3j677c {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-9joj3j677c {
    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/Layout/VersionDisplay.razor.rz.scp.css */
.version-display[b-7pcy1l6t5j] {
    position: fixed;
    bottom: 8px;
    left: 8px;
    font-size: 0.7rem;
    color: var(--rz-text-secondary-color, #666);
    opacity: 0.8;
    font-family: var(--rz-body-font-family);
    user-select: none;
    pointer-events: none;
    z-index: 1;
}

/* Adjust position when sidebar is expanded to avoid overlap */
.rz-sidebar-expanded ~ * .version-display[b-7pcy1l6t5j] {
    left: calc(var(--rz-sidebar-width, 250px) + 8px);
    transition: left 0.3s ease;
}
/* /Components/Pages/Admin/Admin.razor.rz.scp.css */
[b-8vhegrqvec] button.isbn-refresh-btn:disabled {
    color: #222 !important;
}
/* /Components/Pages/Admin/BurialSiteEdit.razor.rz.scp.css */
.map-thumb-card[b-jfgyl8e283] {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    width: 170px;
    flex-shrink: 0;
}

.map-thumb-img[b-jfgyl8e283] {
    width: 170px;
    height: 130px;
    object-fit: cover;
    display: block;
}

.map-thumb-placeholder[b-jfgyl8e283] {
    width: 170px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    font-size: 2.5rem;
}
/* /Components/Pages/Admin/Statistics.razor.rz.scp.css */
/*
 * Status label colours for the stats tables.
 * The dark-mode values match the map icon tints exactly.
 * Light-mode overrides use darker shades of the same hue family so the text
 * remains legible on a pale background without diverging from the icon palette.
 *
 * Colours NOT needing a light-mode override (already dark enough at any bg):
 *   green-600 (#16a34a), green-700 (#15803d), green-800 (#166534),
 *   blue-600  (#2563eb), orange-700 (#c2410c), amber-600 (#d97706), red-600 (#b91c1c)
 *
 * Colours that DO need a light-mode override:
 *   yellow-350 (#fbe72b) — nearly invisible on white → yellow-800 (#854d0e)
 *   grey-400   (#9ca3af) — too pale on white         → grey-700  (#374151)
 *   grey-500   (#6b7280) — borderline on white        → grey-700  (#374151)
 */

.status-label[b-ummaar1w8t] {
    font-weight: 600;
}

/* ── Default (dark-mode) values — match the map icon palette exactly ── */
.status-complete[b-ummaar1w8t]             { color: #16a34a; }   /* green-600 */
.status-indexed[b-ummaar1w8t]              { color: #2563eb; }   /* blue-600  */
.status-verified[b-ummaar1w8t]             { color: #fbe72b; }   /* yellow-350 */
.status-historicallypublished[b-ummaar1w8t]{ color: #d97706; }   /* amber-600  */
.status-initialread[b-ummaar1w8t]          { color: #c2410c; }   /* orange-700 */
.status-indexverified[b-ummaar1w8t]        { color: #16a34a; }   /* green-600  */
.status-unreadable[b-ummaar1w8t]           { color: #166534; }   /* green-800  */
.status-deleted[b-ummaar1w8t]              { color: #b91c1c; }   /* red-600    */
.status-unknown[b-ummaar1w8t]              { color: #9ca3af; }   /* grey-400   */

/* ── Light-mode overrides — darker shades, same hue family ── */
[data-bs-theme="light"] .status-verified[b-ummaar1w8t]              { color: #854d0e; }  /* yellow-800: still warm/golden, clearly readable */
[data-bs-theme="light"] .status-historicallypublished[b-ummaar1w8t] { color: #92400e; }  /* amber-900:  slightly deeper than amber-600     */
[data-bs-theme="light"] .status-unknown[b-ummaar1w8t]               { color: #374151; }  /* grey-700:   enough contrast on white/pale bg   */
[data-bs-theme="light"] .status-unreadable[b-ummaar1w8t]            { color: #14532d; }  /* green-900:  darker than green-800 for contrast */

/* Stat cell: main number with optional muted sub-note on a second line */
.stat-cell[b-ummaar1w8t] {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.no-mis-note[b-ummaar1w8t] {
    font-size: 0.75rem;
    color: #6b7280;      /* grey-500 — muted in dark mode */
    white-space: nowrap;
}

[data-bs-theme="light"] .no-mis-note[b-ummaar1w8t] {
    color: #9ca3af;      /* grey-400 — still readable on light backgrounds */
}

/* Two-column layout: table on the left, pie chart on the right */
.stats-row[b-ummaar1w8t] {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stats-col-table[b-ummaar1w8t] {
    flex: 1 1 45%;
    min-width: 260px;
}

.stats-col-chart[b-ummaar1w8t] {
    flex: 1 1 45%;
    min-width: 320px;
}
/* /Components/Pages/Admin/VisitorLogPage.razor.rz.scp.css */
.role-badge[b-o0urp46m2d] {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.role-superadmin[b-o0urp46m2d] { color: #7c3aed; } /* violet-700 — dark enough on both themes */
.role-admin[b-o0urp46m2d]       { color: #b45309; } /* amber-700 */
.role-volunteer[b-o0urp46m2d]   { color: #1d4ed8; } /* blue-700  */
.role-guest[b-o0urp46m2d]       { color: #374151; } /* grey-700  */

/* Light-mode overrides to ensure WCAG AA on white backgrounds */
@media (prefers-color-scheme: light) {
    .role-superadmin[b-o0urp46m2d] { color: #6d28d9; } /* violet-700 */
    .role-admin[b-o0urp46m2d]       { color: #92400e; } /* amber-800 */
    .role-volunteer[b-o0urp46m2d]   { color: #1e40af; } /* blue-800  */
    .role-guest[b-o0urp46m2d]       { color: #374151; } /* grey-700  */
}

.session-open[b-o0urp46m2d] {
    color: #6b7280; /* grey-500 */
    font-style: italic;
}

@media (prefers-color-scheme: light) {
    .session-open[b-o0urp46m2d] { color: #374151; } /* grey-700 — WCAG AA on white */
}

.logout-reason[b-o0urp46m2d] {
    color: #6b7280; /* grey-500 */
    font-size: 0.82rem;
}

@media (prefers-color-scheme: light) {
    .logout-reason[b-o0urp46m2d] { color: #374151; } /* grey-700 — WCAG AA on white */
}
/* /Components/Pages/BurialSiteInfo.razor.rz.scp.css */
.map-carousel-item[b-946uxef3kc] {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-carousel-img[b-946uxef3kc] {
    max-height: 450px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.map-carousel-placeholder[b-946uxef3kc] {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--rz-base-background-color);
    border-radius: 6px;
    padding: 2rem;
    width: 100%;
}

.map-lightbox-overlay[b-946uxef3kc] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.map-lightbox-content[b-946uxef3kc] {
    background: var(--rz-base-background-color);
    padding: 1rem;
    border-radius: 8px;
    max-width: 92vw;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    cursor: default;
    overflow: hidden;
}

.map-lightbox-content.map-lightbox-maximised[b-946uxef3kc] {
    max-width: 100vw;
    max-height: 100vh;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
}

.map-lightbox-content.map-lightbox-maximised .map-lightbox-img-wrapper[b-946uxef3kc] {
    flex: 1 1 0;
    min-height: 0;
    overflow: auto;
}

.map-lightbox-toolbar[b-946uxef3kc] {
    flex-shrink: 0;
}

.map-lightbox-img-wrapper[b-946uxef3kc] {
    overflow: auto;
    user-select: none;
}

.map-lightbox-img[b-946uxef3kc] {
    display: block;
    /* natural size constraints for non-maximised mode; JS overrides for maximised+zoom */
    max-width: 85vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.map-lightbox-zoom-label[b-946uxef3kc] {
    font-size: 0.8rem;
    min-width: 3.5rem;
    text-align: center;
    color: var(--rz-text-secondary-color);
}
/* /Components/Pages/Home.razor.rz.scp.css */
body[b-hp1qu5gy57] {
    height: 100vh; /* Fallback */
    height: 100dvh; /* Dynamic Viewport Height: responds to toolbars */
    margin: 0;
    overflow: hidden; /* Recommended for Blazor apps to prevent double-scrollbars */
}

.page-container[b-hp1qu5gy57] {
    padding: 0px;
}

.map-wrapper[b-hp1qu5gy57] {
    position: relative;
    height: calc(100dvh - var(--rz-header-height, 64px));
    width: 100%;
    overflow: hidden;
}

#map[b-hp1qu5gy57] {
    height: 100%;
    width: 100%;
}

#map-legend[b-hp1qu5gy57] {
    position: absolute;
    bottom: calc(30px + env(safe-area-inset-bottom));
    right: 10px;
    color: #212529;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.4;
    z-index: 100;
    pointer-events: none;
    min-width: 185px;
    max-width: calc(100vw - 24px);
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

@media (max-width: 576px) {
    #map-legend[b-hp1qu5gy57] {
        bottom: auto;
        top: 10px;
        right: 10px;
        left: auto;
        min-width: 140px;
        font-size: 11px;
        padding: 6px 10px;
    }
}

.legend-panel-header[b-hp1qu5gy57] {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    pointer-events: auto;
    margin-bottom: 4px;
    gap: 6px;
}

.legend-section + .legend-section[b-hp1qu5gy57] {
    margin-top: 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 4px;
}

.legend-section-header[b-hp1qu5gy57] {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    pointer-events: auto;
    margin-bottom: 6px;
}

    .legend-section-header:hover .legend-title[b-hp1qu5gy57] {
        opacity: 0.75;
    }

.legend-chevron[b-hp1qu5gy57] {
    font-size: 10px;
    color: #555;
    flex-shrink: 0;
    margin-left: 6px;
}

.legend-title[b-hp1qu5gy57] {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 0;
    text-align: center;
    flex: 1;
    color: #000000;
}

.legend-item[b-hp1qu5gy57] {
    color: #212529;
    display: flex;
    font-weight: 700;
    font-size: 13px;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 4px;
    cursor: pointer;
    pointer-events: auto;
    user-select: none;
    transition: opacity 0.15s ease;
}
    .legend-item:hover[b-hp1qu5gy57] {
        opacity: 0.75;
    }
    .legend-item span[b-hp1qu5gy57] {
        color: #212529;
        font-weight: 500; 
    }

.legend-item--disabled[b-hp1qu5gy57] {
    opacity: 0.4;
    filter: grayscale(80%);
}

.legend-item:last-child[b-hp1qu5gy57] {
    margin-bottom: 0;
}

.legend-icon[b-hp1qu5gy57] {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.legend-pub-badge-wrapper[b-hp1qu5gy57] {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    position: relative;
}

.legend-pub-badge-wrapper img[b-hp1qu5gy57] {
    width: 22px;
    height: 22px;
}

.legend-pub-badge[b-hp1qu5gy57] {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #16a34a;
    border: 1.5px solid #ffffff;
    box-sizing: border-box;
}

.legend-pub-badge--society[b-hp1qu5gy57] {
    background-color: #16a34a; /* green */
}

.legend-pub-badge--moray[b-hp1qu5gy57] {
    background-color: #ca8a04; /* yellow */
}

.legend-pub-badge--thirdparty[b-hp1qu5gy57] {
    background-color: #2563eb; /* blue */
}
/* /Components/Pages/Members/MIInfo.razor.rz.scp.css */
/* ── Section card headers ────────────────────────────────────────────────── */
.mi-section-heading[b-y9bf8r9h95] {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--rz-primary, #9b0801);
    margin-bottom: 0.85rem;
}

/* ── Highlighted person names in the inscription ─────────────────────────── */
/* NOTE: colour rules for .mi-inscription-text strong live in app.css because */
/* <strong> tags are MarkupString-injected and bypass Blazor CSS isolation.   */

/* ── Inscription pre block ───────────────────────────────────────────────── */
.mi-inscription-text[b-y9bf8r9h95] {
    white-space: pre-wrap;
    font-family: inherit;
    margin: 0;
    font-size: var(--rz-body-font-size);
    line-height: 1.6;
}

/* ── Burial ground card: burial ground name ──────────────────────────────── */
.mi-site-name[b-y9bf8r9h95] {
    color: var(--rz-primary, #9b0801);
    font-weight: 600;
}

/* ── Map carousel ────────────────────────────────────────────────────────── */
.mi-map-carousel-item[b-y9bf8r9h95] {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mi-map-carousel-img[b-y9bf8r9h95] {
    max-height: 450px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.mi-map-carousel-placeholder[b-y9bf8r9h95] {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--rz-base-background-color);
    border-radius: 6px;
    padding: 2rem;
    width: 100%;
}

/* ── Lightbox ────────────────────────────────────────────────────────────── */
.mi-map-lightbox-overlay[b-y9bf8r9h95] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mi-map-lightbox-content[b-y9bf8r9h95] {
    background: var(--rz-base-background-color);
    padding: 1rem;
    border-radius: 8px;
    max-width: 92vw;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    cursor: default;
    overflow: hidden;
}

.mi-map-lightbox-content.mi-map-lightbox-maximised[b-y9bf8r9h95] {
    max-width: 100vw;
    max-height: 100vh;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
}

.mi-map-lightbox-toolbar[b-y9bf8r9h95] {
    flex-shrink: 0;
}

.mi-map-lightbox-zoom-label[b-y9bf8r9h95] {
    min-width: 3.5rem;
    text-align: center;
    font-size: var(--rz-body2-font-size);
}

.mi-map-lightbox-img-wrapper[b-y9bf8r9h95] {
    flex: 1;
    overflow: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 0;
}

.mi-map-lightbox-img[b-y9bf8r9h95] {
    transform-origin: top left;
    transition: transform 0.15s ease;
    max-width: none;
}
/* /Components/Pages/Publications.razor.rz.scp.css */
/* ::deep bypasses Blazor CSS scoping so these rules reach spans built
   via RenderTreeBuilder (which never receive the b-xxxx scoped attribute).
   Flexbox alignment is used because Radzen wraps cell content in a flex
   container, making text-align: right ineffective on block children. */

[b-zitfcwc5au] .status-cell {
    display: block;
    flex: 1;
    min-width: 0;
    text-align: right;
    padding-right: 4px;
}

[b-zitfcwc5au] .status-cell.has-count {
    font-weight: 600;
}

[b-zitfcwc5au] .status-header {
    display: block;
    flex: 1;
    min-width: 0;
    text-align: center;
    cursor: help;
}
/* /Components/Pages/Research/ResearchMi.razor.rz.scp.css */
/* Unpublished inscription text — warning colour only, no background.
   Light mode: amber-800 (#92400e) gives ~7:1 contrast on white (WCAG AA ✓).
   Dark mode:  amber-300 (#fcd34d) gives ~7.5:1 contrast on a typical dark surface (WCAG AA ✓). */
.inscription-unpublished[b-bgxqr3iebx] {
    color: #92400e;
}

@media (prefers-color-scheme: dark) {
    .inscription-unpublished[b-bgxqr3iebx] {
        color: #fcd34d;
    }
}
/* /Components/Pages/SearchMI.razor.rz.scp.css */
/* Radzen components handle styling and dark mode automatically */
