/* /Components/CompanyGuard.razor.rz.scp.css */
.company-guard-overlay[b-5cuqo3ou87] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-body, #f5f6fa);
    padding: 2rem;
}

.company-guard-loading[b-5cuqo3ou87] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.company-guard-logo[b-5cuqo3ou87] {
    height: 4rem;
    width: auto;
    overflow: visible;
}

[b-5cuqo3ou87] .logo-pin {
    transform-origin: 20px 26px;
    animation: pin-bounce-b-5cuqo3ou87 1.6s ease-in-out infinite;
}

[b-5cuqo3ou87] .logo-dot {
    transform-origin: 20px 19px;
    animation: dot-jelly-b-5cuqo3ou87 1.6s ease-in-out infinite;
    animation-delay: 0.1s;
}

@keyframes pin-bounce-b-5cuqo3ou87 {
    0%, 100% {
        transform: translateY(0);
    }
    15% {
        transform: translateY(-10px);
    }
    30% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-4px);
    }
    50% {
        transform: translateY(0);
    }
}

@keyframes dot-jelly-b-5cuqo3ou87 {
    0%, 100% {
        transform: translateY(0) scaleY(1) scaleX(1);
    }
    10% {
        transform: translateY(2px) scaleY(0.85) scaleX(1.12);
    }
    20% {
        transform: translateY(-12px) scaleY(1.15) scaleX(0.9);
    }
    35% {
        transform: translateY(2px) scaleY(0.9) scaleX(1.08);
    }
    45% {
        transform: translateY(-5px) scaleY(1.08) scaleX(0.95);
    }
    55% {
        transform: translateY(0) scaleY(1) scaleX(1);
    }
}

.company-guard-brand[b-5cuqo3ou87] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading, #1e293b);
    letter-spacing: -0.02em;
}

.company-guard-card[b-5cuqo3ou87] {
    text-align: center;
    max-width: 480px;
    padding: 3rem 2.5rem;
    border-radius: 1rem;
    background: var(--bg-card, #fff);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.company-guard-icon[b-5cuqo3ou87] {
    font-size: 3.5rem;
    color: var(--color-primary, #4f46e5);
    opacity: 0.8;
}

.company-guard-card h2[b-5cuqo3ou87] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading, #1e293b);
}

.company-guard-card p[b-5cuqo3ou87] {
    margin: 0;
    font-size: 1rem;
    color: var(--text-muted, #64748b);
    line-height: 1.6;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-uv3koqut8o] {
    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-uv3koqut8o] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
/* ── Visibility rules (state-driven by Blazor classes) ── */
.components-reconnect-first-attempt-visible[b-sfdjnui7da],
.components-reconnect-repeated-attempt-visible[b-sfdjnui7da],
.components-reconnect-failed-visible[b-sfdjnui7da],
.components-pause-visible[b-sfdjnui7da],
.components-resume-failed-visible[b-sfdjnui7da],
.components-rejoining-animation[b-sfdjnui7da] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-sfdjnui7da],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-sfdjnui7da],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-sfdjnui7da],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-sfdjnui7da],
#components-reconnect-modal.components-reconnect-retrying[b-sfdjnui7da],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-sfdjnui7da],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-sfdjnui7da],
#components-reconnect-modal.components-reconnect-failed[b-sfdjnui7da],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-sfdjnui7da] {
    display: block;
}

/* ── Dialog ── */
#components-reconnect-modal[b-sfdjnui7da] {
    font-family: 'DM Sans', 'Google Sans', system-ui, -apple-system, sans-serif;
    background-color: var(--color-surface, #ffffff);
    color: var(--color-text, #0f172a);
    width: 22rem;
    max-width: 90vw;
    margin: 18vh auto;
    padding: 2.25rem 2rem 1.75rem;
    border: 1px solid var(--color-border, #e1ebed);
    border-radius: 0.75rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: reconnect-fadeOut-b-sfdjnui7da 0.35s both;

    &[open] {
        animation:
            reconnect-slideUp-b-sfdjnui7da 0.6s cubic-bezier(.05, .89, .25, 1.02) 0.15s,
            reconnect-fadeIn-b-sfdjnui7da 0.4s ease-out 0.15s;
        animation-fill-mode: both;
    }
}

#components-reconnect-modal[b-sfdjnui7da]::backdrop {
    background-color: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: reconnect-fadeIn-b-sfdjnui7da 0.4s ease-out;
    opacity: 1;
}

/* ── Animations ── */
@keyframes reconnect-slideUp-b-sfdjnui7da {
    0%   { transform: translateY(24px) scale(0.96); }
    100% { transform: translateY(0) scale(1); }
}

@keyframes reconnect-fadeIn-b-sfdjnui7da {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes reconnect-fadeOut-b-sfdjnui7da {
    0%   { opacity: 1; }
    100% { opacity: 0; }
}

/* ── Container ── */
.components-reconnect-container[b-sfdjnui7da] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

/* ── Icon area ── */
.reconnect-icon[b-sfdjnui7da] {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reconnect-icon-glyph[b-sfdjnui7da] {
    font-size: 2.25rem;
    color: var(--color-primary, #0d9488);
}

/* ── Ripple animation (teal-themed) ── */
.components-rejoining-animation[b-sfdjnui7da] {
    position: absolute;
    inset: 0;
    width: 64px;
    height: 64px;
}

.components-rejoining-animation div[b-sfdjnui7da] {
    position: absolute;
    border: 2.5px solid var(--color-primary, #0d9488);
    opacity: 1;
    border-radius: 50%;
    animation: reconnect-ripple-b-sfdjnui7da 1.8s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.components-rejoining-animation div:nth-child(2)[b-sfdjnui7da] {
    animation-delay: -0.6s;
}

@keyframes reconnect-ripple-b-sfdjnui7da {
    0% {
        top: 32px;
        left: 32px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    4.9% {
        top: 32px;
        left: 32px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    5% {
        top: 32px;
        left: 32px;
        width: 0;
        height: 0;
        opacity: 0.7;
    }
    100% {
        top: 0;
        left: 0;
        width: 64px;
        height: 64px;
        opacity: 0;
    }
}

/* ── Text ── */
.reconnect-text[b-sfdjnui7da] {
    text-align: center;
}

#components-reconnect-modal h3[b-sfdjnui7da] {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text, #0f172a);
}

#components-reconnect-modal p[b-sfdjnui7da] {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-text-muted, #475569);
    text-align: center;
}

/* ── Actions ── */
.reconnect-actions[b-sfdjnui7da] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.25rem;
}

#components-reconnect-modal button[b-sfdjnui7da] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: 100%;
    padding: 0.55rem 1.25rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    background-color: var(--color-primary, #0d9488);
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.15s;
}

#components-reconnect-modal button:hover[b-sfdjnui7da] {
    background-color: var(--color-primary-dark, #0f766e);
}

#components-reconnect-modal button:active[b-sfdjnui7da] {
    background-color: var(--color-primary, #0d9488);
}

.reconnect-reload[b-sfdjnui7da] {
    display: none;
    font-size: 0.8rem;
    color: var(--color-text-muted, #475569);
    text-decoration: none;
    transition: color 0.15s;
}

.reconnect-reload:hover[b-sfdjnui7da] {
    color: var(--color-primary, #0d9488);
    text-decoration: underline;
}

#components-reconnect-modal.components-reconnect-failed .reconnect-reload[b-sfdjnui7da],
#components-reconnect-modal.components-reconnect-resume-failed .reconnect-reload[b-sfdjnui7da] {
    display: inline;
}
/* /Components/Pages/Admin/FloorPlanEditor.razor.rz.scp.css */
/* ── Floor Plan Editor ── */

.editor-layout[b-93qh0u9zh2] {
    display: flex;
    flex-direction: row;
    gap: 0;
    height: calc(100vh - 160px);
    min-height: 500px;
}

/* ── Left toolbox sidebar ── */

.editor-toolbox[b-93qh0u9zh2] {
    display: flex;
    flex-direction: column;
    width: 160px;
    min-width: 160px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 0.4rem 0;
    overflow-y: auto;
    scrollbar-width: thin;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.toolbox-section[b-93qh0u9zh2] {
    display: flex;
    flex-direction: column;
    padding: 0 0.5rem;
}

.toolbox-heading[b-93qh0u9zh2] {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    padding: 0.35rem 0.35rem 0.15rem;
}

.toolbox-btn[b-93qh0u9zh2] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.35rem;
    font-size: 0.75rem;
    border: none;
    border-radius: 0.375rem;
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.12s;
    white-space: nowrap;
    line-height: 1.3;
    width: 100%;
    text-align: left;
}

.toolbox-btn:hover[b-93qh0u9zh2] {
    background-color: var(--color-surface-alt);
}

.toolbox-btn.active[b-93qh0u9zh2] {
    background-color: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
    font-weight: 600;
}

.toolbox-btn.dimmed[b-93qh0u9zh2] {
    opacity: 0.4;
    background-color: transparent;
    color: inherit;
    font-weight: inherit;
}

.toolbox-btn:disabled[b-93qh0u9zh2] {
    opacity: 0.4;
    cursor: default;
}

.toolbox-btn i[b-93qh0u9zh2] {
    font-size: 0.9rem;
    line-height: 1;
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
}

.toolbox-label[b-93qh0u9zh2] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toolbox-btn-pan[b-93qh0u9zh2] {
    cursor: default;
    opacity: 0.55;
}

.toolbox-btn-pan:disabled[b-93qh0u9zh2] {
    opacity: 0.55;
}

.toolbox-btn-pan:hover[b-93qh0u9zh2] {
    background-color: transparent;
    opacity: 0.7;
}

.toolbox-btn-pan.active[b-93qh0u9zh2] {
    opacity: 1;
    background-color: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
    font-weight: 600;
}

.toolbox-btn kbd[b-93qh0u9zh2] {
    display: inline-block;
    padding: 0 0.25rem;
    font-size: 0.6rem;
    font-family: inherit;
    line-height: 1.4;
    color: var(--color-text-muted);
    background: var(--color-surface-alt, #f1f5f9);
    border: 1px solid var(--color-border);
    border-radius: 0.2rem;
    margin-left: auto;
    flex-shrink: 0;
}

.toolbox-divider[b-93qh0u9zh2] {
    height: 1px;
    background: var(--color-border);
    margin: 0.3rem 0.5rem;
}

.toolbox-footer[b-93qh0u9zh2] {
    margin-top: auto;
    padding: 0.4rem 0.5rem 0.25rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.toolbox-hint[b-93qh0u9zh2] {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}

.toolbox-hint kbd[b-93qh0u9zh2] {
    display: inline-block;
    padding: 0 0.2rem;
    font-size: 0.6rem;
    font-family: inherit;
    line-height: 1.3;
    color: var(--color-text-muted);
    background: var(--color-surface-alt, #f1f5f9);
    border: 1px solid var(--color-border);
    border-radius: 0.2rem;
}

/* ── Main area (toolbar + canvas + properties) ── */

.editor-main[b-93qh0u9zh2] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: 0;
}


/* Top toolbar */
.editor-toolbar[b-93qh0u9zh2] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 0.4rem 0.75rem;
    flex-wrap: wrap;
    position: relative;
}

.toolbar-left[b-93qh0u9zh2] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.toolbar-mode-indicator[b-93qh0u9zh2] {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.08);
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    border-radius: 9999px;
    white-space: nowrap;
    pointer-events: none;
}

.toolbar-mode-label[b-93qh0u9zh2] {
    font-weight: 500;
    color: var(--color-text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.toolbar-mode-indicator i[b-93qh0u9zh2] {
    font-size: 0.85rem;
    line-height: 1;
}

.toolbar-right[b-93qh0u9zh2] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
    flex-shrink: 0;
}

.toolbar-hint[b-93qh0u9zh2] {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.toolbar-group[b-93qh0u9zh2] {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.toolbar-divider[b-93qh0u9zh2] {
    width: 1px;
    height: 1.6rem;
    background: var(--color-border);
    margin: 0 0.4rem;
}

.toolbar-label[b-93qh0u9zh2] {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-right: 0.15rem;
    white-space: nowrap;
}

.toolbar-btn[b-93qh0u9zh2] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.55rem;
    font-size: 0.78rem;
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    background: var(--color-surface);
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
    line-height: 1.3;
}

.toolbar-btn:hover[b-93qh0u9zh2] {
    background-color: var(--color-surface-alt);
    border-color: var(--color-primary-light);
}

.toolbar-btn.active[b-93qh0u9zh2] {
    background-color: rgba(var(--color-primary-rgb), 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
}

.toolbar-btn i[b-93qh0u9zh2] {
    font-size: 0.9rem;
    line-height: 1;
}

.toolbar-btn .tb-icon[b-93qh0u9zh2] {
    font-size: 0.9rem;
    line-height: 1;
}

/* Zoom controls */
.toolbar-right input[type=range][b-93qh0u9zh2] {
    width: 80px;
    accent-color: var(--color-primary);
}

.zoom-pct[b-93qh0u9zh2] {
    font-size: 0.75rem;
    font-variant-numeric: tabular-nums;
    color: var(--color-text-muted);
    min-width: 2.8rem;
    text-align: center;
}

/* Canvas + properties area */
.editor-body[b-93qh0u9zh2] {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 0.75rem;
    flex: 1;
    min-height: 0;
    margin-top: 0.5rem;
}

.editor-canvas-wrap[b-93qh0u9zh2] {
    position: relative;
    background: var(--color-surface-alt, #e8e8e8);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: grab;
}

.editor-canvas-wrap.panning[b-93qh0u9zh2] {
    cursor: grabbing;
}

/* While panning, override child element cursors so grab/grabbing always shows */
.editor-canvas-wrap.panning .editor-canvas[b-93qh0u9zh2],
.editor-canvas-wrap.panning .editor-canvas[b-93qh0u9zh2]  * {
    cursor: grabbing !important;
}

.editor-canvas[b-93qh0u9zh2] {
    width: 100%;
    height: 100%;
    background: var(--color-surface);
}

/* Canvas sheet (SVG rect) */
.editor-canvas[b-93qh0u9zh2]  .fp-bg {
    fill: var(--color-surface, #ffffff);
}

/* Grid overlay rendered inside SVG */
.editor-canvas[b-93qh0u9zh2]  .fp-grid line {
    stroke: rgba(203, 213, 225, 0.35);
    stroke-width: 0.5;
}

.editor-canvas[b-93qh0u9zh2]  .fp-grid .fp-grid-major {
    stroke: rgba(148, 163, 184, 0.3);
    stroke-width: 0.5;
}

:global(html.dark) .editor-canvas[b-93qh0u9zh2]  .fp-grid line {
    stroke: rgba(148, 163, 184, 0.06);
}

:global(html.dark) .editor-canvas[b-93qh0u9zh2]  .fp-grid .fp-grid-major {
    stroke: rgba(148, 163, 184, 0.12);
}

/* SVG element styles — outline-only to match booking-view appearance.
   !important is needed to override inline styles baked into loaded SVGs. */
.editor-canvas[b-93qh0u9zh2]  .wall        { fill: none !important; stroke: #475569 !important; stroke-width: 6 !important; stroke-linecap: square; stroke-linejoin: miter; }
.editor-canvas[b-93qh0u9zh2]  .window      { fill: none !important; stroke: #38bdf8 !important; stroke-width: 4 !important; stroke-dasharray: 8 4; }
.editor-canvas[b-93qh0u9zh2]  .door        { fill: rgba(148, 163, 184, 0.1) !important; stroke: #94a3b8 !important; stroke-width: 1.5 !important; }
.editor-canvas[b-93qh0u9zh2]  .fp-staircase { fill: none !important; stroke: #cbd5e1 !important; stroke-width: 1.5 !important; }
.editor-canvas[b-93qh0u9zh2]  .fp-stair-line { stroke: #cbd5e1 !important; stroke-width: 0.75 !important; pointer-events: none; }
.editor-canvas[b-93qh0u9zh2]  .desk        { fill: none !important; stroke: #4a6fa5 !important; stroke-width: 1.5 !important; }
.editor-canvas[b-93qh0u9zh2]  .room        { fill: none !important; stroke: #64748b !important; stroke-width: 1.5 !important; }
.editor-canvas[b-93qh0u9zh2]  .parking     { fill: none !important; stroke: #4a6fa5 !important; stroke-width: 1.5 !important; stroke-dasharray: 2 3; stroke-linecap: round; }

/* Label element */
.editor-canvas[b-93qh0u9zh2]  .fp-label    { font-size: 14px; fill: var(--color-text, #2d3748) !important; font-weight: 400; cursor: move; font-family: inherit; }

/* Meeting table elements */
.editor-canvas[b-93qh0u9zh2]  .fp-mt-shape { stroke-width: 2 !important; }
.editor-canvas[b-93qh0u9zh2]  .fp-meeting-rect   { fill: none !important; stroke: #4a6fa5 !important; }
.editor-canvas[b-93qh0u9zh2]  .fp-meeting-circle { fill: none !important; stroke: #4a6fa5 !important; }
.editor-canvas[b-93qh0u9zh2]  .fp-meeting-oval   { fill: none !important; stroke: #4a6fa5 !important; }
.editor-canvas[b-93qh0u9zh2]  .fp-meeting-ushape { fill: none !important; stroke: #4a6fa5 !important; }
.editor-canvas[b-93qh0u9zh2]  .fp-mt-seat  { fill: none !important; stroke: #94a3b8 !important; stroke-width: 1 !important; }

/* Dark mode SVG element overrides — outline-only with brighter strokes */
:global(html.dark) .editor-canvas[b-93qh0u9zh2]  .wall        { stroke: #94a3b8 !important; stroke-width: 6; }
:global(html.dark) .editor-canvas[b-93qh0u9zh2]  .window      { stroke: #60a5fa !important; }
:global(html.dark) .editor-canvas[b-93qh0u9zh2]  .door        { fill: rgba(71, 85, 105, 0.1) !important; stroke: #475569 !important; }
:global(html.dark) .editor-canvas[b-93qh0u9zh2]  .desk        { fill: none !important; stroke: #60a5fa !important; }
:global(html.dark) .editor-canvas[b-93qh0u9zh2]  .room        { fill: none !important; stroke: #94a3b8 !important; }
:global(html.dark) .editor-canvas[b-93qh0u9zh2]  .parking     { fill: none !important; stroke: #60a5fa !important; stroke-dasharray: 2 3; stroke-linecap: round; }
:global(html.dark) .editor-canvas[b-93qh0u9zh2]  .fp-staircase { fill: none !important; stroke: #334155 !important; stroke-width: 1 !important; }
:global(html.dark) .editor-canvas[b-93qh0u9zh2]  .fp-stair-line { stroke: #334155 !important; stroke-width: 0.75 !important; }
:global(html.dark) .editor-canvas[b-93qh0u9zh2]  .fp-meeting-rect,
:global(html.dark) .editor-canvas[b-93qh0u9zh2]  .fp-meeting-circle,
:global(html.dark) .editor-canvas[b-93qh0u9zh2]  .fp-meeting-oval,
:global(html.dark) .editor-canvas[b-93qh0u9zh2]  .fp-meeting-ushape { fill: none !important; stroke: #60a5fa !important; }
:global(html.dark) .editor-canvas[b-93qh0u9zh2]  .fp-mt-seat  { fill: none !important; stroke: #475569 !important; }

.editor-canvas[b-93qh0u9zh2]  [data-editor-id] {
    cursor: move;
    pointer-events: all;
}

/* Highlight elements that have a linked resource */
.editor-canvas[b-93qh0u9zh2]  [data-resource-id] {
    fill: rgba(var(--color-primary-rgb), 0.15);
    stroke-dasharray: none;
}

.editor-canvas[b-93qh0u9zh2]  .fp-handle {
    fill: var(--color-primary);
    stroke: #fff;
    stroke-width: 1;
    pointer-events: all;
}

.editor-canvas[b-93qh0u9zh2]  .fp-rotate-handle {
    fill: #f59e0b;
    stroke: #fff;
    stroke-width: 1.5;
    cursor: grab;
    pointer-events: all;
}

.editor-canvas[b-93qh0u9zh2]  .fp-rotate-line {
    stroke: #f59e0b;
    stroke-width: 1;
    stroke-dasharray: 3 2;
    pointer-events: none;
}

.editor-canvas[b-93qh0u9zh2]  .fp-background {
    opacity: 0.35;
    pointer-events: none;
}

.editor-canvas[b-93qh0u9zh2]  .fp-rubber-band {
    fill: rgba(59, 130, 246, 0.08);
    stroke: var(--color-primary);
    stroke-width: 1;
    stroke-dasharray: 4 3;
    pointer-events: none;
}

.editor-canvas[b-93qh0u9zh2]  .fp-place-preview {
    fill: rgba(59, 130, 246, 0.1);
    stroke: var(--color-primary);
    stroke-width: 1.5;
    stroke-dasharray: 6 4;
    pointer-events: none;
}

.editor-canvas[b-93qh0u9zh2]  rect.fp-place-preview {
    rx: 4;
}

.editor-canvas[b-93qh0u9zh2]  .fp-multi-selection-box {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 1.5;
    stroke-dasharray: 6 3;
    pointer-events: none;
}

/* Properties panel */
.editor-properties[b-93qh0u9zh2] {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.props-scroll[b-93qh0u9zh2] {
    overflow-y: auto;
    flex-shrink: 1;
    min-height: 0;
}

.palette-title[b-93qh0u9zh2] {
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.palette-section[b-93qh0u9zh2] {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
    flex-shrink: 0;
}

/* Compact inline property row: label on the left, input on the right */
.prop-row[b-93qh0u9zh2] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.35rem;
}

.prop-label[b-93qh0u9zh2] {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    white-space: nowrap;
    min-width: 3rem;
    flex-shrink: 0;
}

.prop-input[b-93qh0u9zh2] {
    padding: 0.25rem 0.4rem;
    font-size: 0.78rem;
    flex: 1;
    min-width: 0;
}

/* Side-by-side pair of prop-rows (e.g. X/Y, W/H) */
.prop-pair[b-93qh0u9zh2] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 0.5rem;
    margin-bottom: 0.35rem;
}

.prop-pair .prop-row[b-93qh0u9zh2] {
    margin-bottom: 0;
}

.prop-group[b-93qh0u9zh2] {
    margin-bottom: 0.6rem;
}

.prop-group .form-label[b-93qh0u9zh2] {
    font-size: 0.78rem;
    margin-bottom: 0.2rem;
}

.prop-group .form-control[b-93qh0u9zh2] {
    padding: 0.35rem 0.5rem;
    font-size: 0.82rem;
}

.editor-hint[b-93qh0u9zh2] {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    padding: 0.5rem 0;
}

.element-list[b-93qh0u9zh2] {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.element-list-item[b-93qh0u9zh2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0.5rem;
    font-size: 0.8rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background 0.1s;
}

.element-list-item:hover[b-93qh0u9zh2] {
    background-color: var(--color-surface-alt);
}

.element-list-item.selected[b-93qh0u9zh2] {
    background-color: rgba(var(--color-primary-rgb), 0.08);
    font-weight: 600;
}

.element-coords[b-93qh0u9zh2] {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-variant-numeric: tabular-nums;
}

/* SVG source editor */
.svg-source-editor[b-93qh0u9zh2] {
    position: fixed;
    bottom: 0;
    left: var(--sidebar-width);
    right: 0;
    background: #1e293b;
    border-top: 2px solid var(--color-primary);
    z-index: 50;
    display: flex;
    flex-direction: column;
}

.svg-source-resize-handle[b-93qh0u9zh2] {
    height: 6px;
    cursor: ns-resize;
    background: transparent;
    flex-shrink: 0;
}

.svg-source-resize-handle:hover[b-93qh0u9zh2],
.svg-source-resize-handle:active[b-93qh0u9zh2] {
    background: var(--color-primary);
}

.svg-source-resize-overlay[b-93qh0u9zh2] {
    position: fixed;
    inset: 0;
    z-index: 99;
    cursor: ns-resize;
}

.svg-source-header[b-93qh0u9zh2] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0.75rem;
    background: #0f172a;
    color: #e2e8f0;
    font-size: 0.8rem;
    font-weight: 600;
}

.svg-source-editor textarea[b-93qh0u9zh2] {
    flex: 1;
    background: #1e293b;
    color: #e2e8f0;
    border: none;
    padding: 0.75rem;
    font-family: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
    font-size: 0.8rem;
    line-height: 1.5;
    resize: none;
    outline: none;
    tab-size: 2;
}

.svg-source-editor textarea[b-93qh0u9zh2]::selection {
    background: rgba(99, 102, 241, 0.4);
}

/* Toggle switch for boolean props (e.g. Bold) */
.prop-toggle[b-93qh0u9zh2] {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.prop-toggle input[type=checkbox][b-93qh0u9zh2] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.prop-toggle-track[b-93qh0u9zh2] {
    display: inline-block;
    width: 2rem;
    height: 1.1rem;
    border-radius: 0.55rem;
    background: var(--color-border);
    transition: background 0.2s;
    position: relative;
}

.prop-toggle input:checked + .prop-toggle-track[b-93qh0u9zh2] {
    background: var(--color-primary);
}

.prop-toggle-thumb[b-93qh0u9zh2] {
    position: absolute;
    top: 0.15rem;
    left: 0.15rem;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s;
}

.prop-toggle input:checked + .prop-toggle-track .prop-toggle-thumb[b-93qh0u9zh2] {
    transform: translateX(0.9rem);
}

/* Resource link badge */
.resource-link-badge[b-93qh0u9zh2] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.5rem;
    border-radius: 0.375rem;
    background: rgba(var(--color-primary-rgb), 0.08);
    border: 1px solid rgba(var(--color-primary-rgb), 0.25);
    font-size: 0.78rem;
    margin-bottom: 0.35rem;
}

.resource-link-badge i[b-93qh0u9zh2] {
    color: var(--color-primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.resource-link-name[b-93qh0u9zh2] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
}

.resource-link-unlink[b-93qh0u9zh2] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    transition: all 0.15s;
}

.resource-link-unlink:hover[b-93qh0u9zh2] {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-danger, #ef4444);
}

/* Color picker in properties */
.color-row[b-93qh0u9zh2] {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.color-row input[type=color][b-93qh0u9zh2] {
    width: 1.6rem;
    height: 1.6rem;
    border: 1px solid var(--color-border);
    border-radius: 0.25rem;
    padding: 0.1rem;
    cursor: pointer;
    background: var(--color-surface);
    flex-shrink: 0;
}

.color-row input[type=text][b-93qh0u9zh2] {
    flex: 1;
    min-width: 0;
    padding: 0.25rem 0.4rem;
    font-size: 0.78rem;
}

@media (max-width: 900px) {
    .editor-body[b-93qh0u9zh2] {
        grid-template-columns: 1fr;
    }

    .editor-properties[b-93qh0u9zh2] {
        max-height: 250px;
    }

    .editor-toolbar[b-93qh0u9zh2] {
        overflow-x: auto;
    }

    .toolbar-left[b-93qh0u9zh2] {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
}

/* ── Keyboard shortcuts dialog ── */

[b-93qh0u9zh2] .shortcut-section {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--color-border);
}

[b-93qh0u9zh2] .shortcut-section:first-child {
    margin-top: 0;
}

[b-93qh0u9zh2] .shortcut-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    font-size: 0.85rem;
}

[b-93qh0u9zh2] .shortcut-row kbd {
    display: inline-block;
    background: var(--color-surface-alt, #f1f5f9);
    border: 1px solid var(--color-border);
    border-radius: 0.3rem;
    padding: 0.15rem 0.5rem;
    font-family: inherit;
    font-size: 0.78rem;
    min-width: 1.6rem;
    text-align: center;
}

/* Trace background image controls */
[b-93qh0u9zh2] .trace-image-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.4rem 0.75rem;
    background: var(--color-surface-alt, #f8fafc);
    border-bottom: 1px solid var(--color-border, #e2e8f0);
    font-size: 0.82rem;
    flex-wrap: wrap;
}

[b-93qh0u9zh2] .trace-label {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

[b-93qh0u9zh2] .trace-control {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    margin: 0;
    cursor: default;
}

[b-93qh0u9zh2] .trace-control input[type="range"] {
    width: 6rem;
}

[b-93qh0u9zh2] .trace-control input[type="number"] {
    padding: 0.15rem 0.35rem;
    font-size: 0.8rem;
}
/* /Components/Pages/Admin/QrCodes.razor.rz.scp.css */
.qr-grid[b-lr7pda5goq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.qr-card[b-lr7pda5goq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    text-align: center;
}

.qr-image[b-lr7pda5goq] {
    width: 180px;
    height: auto;
    image-rendering: pixelated;
}

.qr-card-label[b-lr7pda5goq] {
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.qr-card-type[b-lr7pda5goq] {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    text-transform: capitalize;
}

/* ── QR Print Styles ── */

@media print {
    /* Hide everything outside the QR print area */
    body *[b-lr7pda5goq] {
        visibility: hidden;
    }

    #qr-print-area[b-lr7pda5goq],
    #qr-print-area *[b-lr7pda5goq] {
        visibility: visible;
    }

    #qr-print-area[b-lr7pda5goq] {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 1rem;
        background: white !important;
    }

    .qr-card[b-lr7pda5goq] {
        border: 1px dashed #ccc;
        page-break-inside: avoid;
        padding: 0.75rem;
        background: white !important;
        box-shadow: none !important;
    }

    .qr-image[b-lr7pda5goq] {
        width: 150px;
    }

    .qr-card-label[b-lr7pda5goq] {
        font-size: 0.85rem;
    }

    .qr-card-type[b-lr7pda5goq] {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .qr-grid[b-lr7pda5goq] {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
}
/* /Components/Pages/CheckInResource.razor.rz.scp.css */
/* ── Check-In Landing Page ── */

.checkin-page[b-gtir19iew4] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.checkin-card[b-gtir19iew4] {
    text-align: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 3rem 2.5rem;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.checkin-icon[b-gtir19iew4] {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.checkin-success-icon[b-gtir19iew4] {
    animation: checkin-pop 0.4s ease;
}

.checkin-card h2[b-gtir19iew4] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.checkin-subtitle[b-gtir19iew4] {
    color: var(--color-text-muted);
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
}

.checkin-detail[b-gtir19iew4] {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin: 0;
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ── Home Dashboard ── */

.home-section-grid[b-cjocxlkdu2] {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .home-section-grid[b-cjocxlkdu2] {
        grid-template-columns: 1fr;
    }
}

.recent-bookings-list[b-cjocxlkdu2] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    container-type: inline-size;
    container-name: recent-bookings;
}

.recent-booking-item[b-cjocxlkdu2] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.5rem;
    border-bottom: 1px solid var(--color-separator);
}

.recent-booking-item:last-child[b-cjocxlkdu2] {
    border-bottom: none;
}

.recent-booking-main[b-cjocxlkdu2] {
    flex: 1;
    min-width: 0;
}

.recent-booking-header[b-cjocxlkdu2] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recent-booking-meta[b-cjocxlkdu2] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-top: 0.25rem;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    padding-left: 0.15rem;
}

@container recent-bookings (max-width: 360px) {
    .recent-booking-item[b-cjocxlkdu2] {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0.3rem 0.5rem;
        padding: 0.65rem 1rem;
    }

    .recent-booking-main[b-cjocxlkdu2] {
        flex: 1 1 100%;
    }

    .btn-rebook[b-cjocxlkdu2] {
        margin-left: auto;
    }
}

.coming-soon-badge[b-cjocxlkdu2] {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 9999px;
    background: linear-gradient(135deg, #818cf8, #6366f1);
    color: #fff;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* ── Home hero header ── */
.home-hero[b-cjocxlkdu2] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.75rem;
    flex-wrap: wrap;
}

.home-hero-text[b-cjocxlkdu2] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-hero-title[b-cjocxlkdu2] {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 0.75rem;
    color: var(--color-text);
}

.home-version[b-cjocxlkdu2] {
    position: fixed;
    bottom: 0.75rem;
    right: 1rem;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
    z-index: 10;
}

.home-hero-subtitle[b-cjocxlkdu2] {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin: 0 0 2rem;
    line-height: 1.65;
    max-width: 46ch;
    font-weight: 400;
}

.btn-hero[b-cjocxlkdu2] {
    padding: 0.7rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    gap: 0.5rem;
}

.btn-hero i[b-cjocxlkdu2] {
    font-size: 1rem;
}

/* ── Mobile optimizations ── */
@media (max-width: 768px) {
    .home-hero[b-cjocxlkdu2] {
        margin-bottom: 1rem;
        gap: 0.5rem;
    }

    .home-hero-title[b-cjocxlkdu2] {
        font-size: 1.5rem;
        margin-bottom: 0.15rem;
    }

    .home-hero-subtitle[b-cjocxlkdu2] {
        font-size: 0.82rem;
        margin-bottom: 0.75rem;
    }

    .btn-hero[b-cjocxlkdu2] {
        display: none;
    }
}
/* /Components/Pages/Reporting/ReportingBookings.razor.rz.scp.css */
/* ── Reporting Bookings ── */

.reporting-filters[b-xghml27g37] {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-group[b-xghml27g37] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter-group label[b-xghml27g37] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.filter-group input[type="date"][b-xghml27g37],
.filter-group select[b-xghml27g37] {
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--color-separator);
    border-radius: var(--radius-md, 0.5rem);
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 0.875rem;
}

.filter-group select:disabled[b-xghml27g37] {
    opacity: 0.5;
    cursor: not-allowed;
}

.charts-grid[b-xghml27g37] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.chart-card[b-xghml27g37] {
    background: var(--color-surface);
    border: 1px solid var(--color-separator);
    border-radius: var(--radius-lg, 0.75rem);
    padding: 1.25rem;
}

.chart-card-wide[b-xghml27g37] {
    grid-column: span 2;
}

.chart-card h3[b-xghml27g37] {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--color-text);
}

.chart-empty[b-xghml27g37] {
    text-align: center;
    padding: 2rem;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.loading-spinner[b-xghml27g37] {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-secondary);
    font-size: 1rem;
}

@media (max-width: 900px) {
    .charts-grid[b-xghml27g37] {
        grid-template-columns: 1fr;
    }
    .chart-card-wide[b-xghml27g37] {
        grid-column: span 1;
    }
}
/* /Components/Pages/Reporting/ReportingOverview.razor.rz.scp.css */
/* ── Reporting Overview ── */

.reporting-filters[b-n58lkty6me] {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-group[b-n58lkty6me] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter-group label[b-n58lkty6me] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.filter-group input[type="date"][b-n58lkty6me],
.filter-group select[b-n58lkty6me] {
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--color-separator);
    border-radius: var(--radius-md, 0.5rem);
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 0.875rem;
}

.filter-group select:disabled[b-n58lkty6me] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── KPI Cards ── */

.kpi-row[b-n58lkty6me] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.kpi-card[b-n58lkty6me] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-separator);
    border-radius: var(--radius-lg, 0.75rem);
    text-align: center;
}

.kpi-value[b-n58lkty6me] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary, #14b8a6);
    line-height: 1.2;
}

.kpi-label[b-n58lkty6me] {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-top: 0.25rem;
}

/* ── Charts Grid ── */

.charts-grid[b-n58lkty6me] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.chart-card[b-n58lkty6me] {
    background: var(--color-surface);
    border: 1px solid var(--color-separator);
    border-radius: var(--radius-lg, 0.75rem);
    padding: 1.25rem;
}

.chart-card h3[b-n58lkty6me] {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--color-text);
}

.chart-empty[b-n58lkty6me] {
    text-align: center;
    padding: 2rem;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.loading-spinner[b-n58lkty6me] {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-secondary);
    font-size: 1rem;
}

@media (max-width: 900px) {
    .charts-grid[b-n58lkty6me] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Reporting/ReportingUtilization.razor.rz.scp.css */
/* ── Reporting Utilization ── */

.reporting-filters[b-7o324z8hav] {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-group[b-7o324z8hav] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter-group label[b-7o324z8hav] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.filter-group input[type="date"][b-7o324z8hav],
.filter-group select[b-7o324z8hav] {
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--color-separator);
    border-radius: var(--radius-md, 0.5rem);
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 0.875rem;
}

.filter-group select:disabled[b-7o324z8hav] {
    opacity: 0.5;
    cursor: not-allowed;
}

.kpi-row[b-7o324z8hav] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.kpi-card[b-7o324z8hav] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-separator);
    border-radius: var(--radius-lg, 0.75rem);
    text-align: center;
}

.kpi-value[b-7o324z8hav] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary, #14b8a6);
    line-height: 1.2;
}

.kpi-label[b-7o324z8hav] {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-top: 0.25rem;
}

.charts-grid[b-7o324z8hav] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.chart-card[b-7o324z8hav] {
    background: var(--color-surface);
    border: 1px solid var(--color-separator);
    border-radius: var(--radius-lg, 0.75rem);
    padding: 1.25rem;
}

.chart-card-wide[b-7o324z8hav] {
    grid-column: span 2;
}

.chart-card h3[b-7o324z8hav] {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--color-text);
}

.chart-empty[b-7o324z8hav] {
    text-align: center;
    padding: 2rem;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.loading-spinner[b-7o324z8hav] {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-secondary);
    font-size: 1rem;
}

@media (max-width: 900px) {
    .charts-grid[b-7o324z8hav] {
        grid-template-columns: 1fr;
    }
    .chart-card-wide[b-7o324z8hav] {
        grid-column: span 1;
    }
}
/* /Components/Shared/AttendeeSearchSelector.razor.rz.scp.css */
.attendee-search-selector[b-m7qpdnqbiv] {
    position: relative;
}

.attendee-chips[b-m7qpdnqbiv] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 0.5rem;
}

.attendee-chip[b-m7qpdnqbiv] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: var(--color-primary, #6366f1);
    color: #fff;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.attendee-chip-remove[b-m7qpdnqbiv] {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0 0.15rem;
    margin-left: 0.1rem;
}

.attendee-chip-remove:hover[b-m7qpdnqbiv] {
    color: #fff;
}

.attendee-search-dropdown[b-m7qpdnqbiv] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    max-height: 240px;
    overflow-y: auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.attendee-search-item[b-m7qpdnqbiv] {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: background 0.1s;
}

.attendee-search-item:hover[b-m7qpdnqbiv] {
    background: var(--color-primary);
    color: #fff;
}

.attendee-search-item:hover .attendee-search-email[b-m7qpdnqbiv] {
    color: rgba(255, 255, 255, 0.8);
}

.attendee-search-name[b-m7qpdnqbiv] {
    font-size: 0.875rem;
    font-weight: 500;
}

.attendee-search-email[b-m7qpdnqbiv] {
    font-size: 0.75rem;
    color: var(--color-text-muted, #6b7280);
}

.attendee-search-empty[b-m7qpdnqbiv] {
    padding: 0.75rem;
    font-size: 0.8rem;
    color: var(--color-text-muted, #6b7280);
    text-align: center;
}
/* /Components/Shared/CustomSelect.razor.rz.scp.css */
/* ?? Custom Select ?? */
.custom-select[b-541h9m84c8] {
    position: relative;
    display: block;
}

.custom-select-trigger[b-541h9m84c8] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.22rem 0.65rem;
    padding-right: 1.75rem;
    font-size: 0.78rem;
    font-family: inherit;
    border: 1px solid var(--color-border);
    border-radius: 9999px;
    background: var(--color-surface);
    color: var(--color-text);
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
    white-space: nowrap;
    position: relative;
    min-height: 1.75rem;
    min-width: 9rem;
    line-height: 1.4;
    text-align: left;
    width: 100%;
}

.custom-select-trigger:hover[b-541h9m84c8] {
    border-color: var(--color-primary-light);
}

.custom-select-trigger:focus[b-541h9m84c8] {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(var(--color-primary-rgb), 0.12);
}

.custom-select.open .custom-select-trigger[b-541h9m84c8] {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(var(--color-primary-rgb), 0.12);
}

.custom-select-arrow[b-541h9m84c8] {
    position: absolute;
    right: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--color-text-muted);
    transition: transform 0.2s;
    pointer-events: none;
}

.custom-select.open .custom-select-arrow[b-541h9m84c8] {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select-text[b-541h9m84c8] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-placeholder[b-541h9m84c8] {
    color: var(--color-text-muted);
    opacity: 0.7;
}

/* Backdrop */
.custom-select-backdrop[b-541h9m84c8] {
    position: fixed;
    inset: 0;
    z-index: 1040;
}

/* Dropdown */
.custom-select-dropdown[b-541h9m84c8] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 1050;
    min-width: 100%;
    max-height: 260px;
    overflow-y: auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 0.3rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
    animation: customSelectFadeIn-b-541h9m84c8 0.15s ease-out;
}

@keyframes customSelectFadeIn-b-541h9m84c8 {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-select-dropdown[b-541h9m84c8]::-webkit-scrollbar {
    width: 4px;
}

.custom-select-dropdown[b-541h9m84c8]::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 2px;
}

/* Options */
.custom-select-option[b-541h9m84c8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.65rem;
    font-size: 0.8rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background 0.1s;
    white-space: nowrap;
    color: var(--color-text);
    position: relative;
}

.custom-select-option:hover[b-541h9m84c8] {
    background: var(--color-surface-alt);
}

.custom-select-option.selected[b-541h9m84c8] {
background: rgba(var(--color-primary-rgb), 0.08);
    font-weight: 600;
    color: var(--color-primary);
}

.custom-select-option-icon[b-541h9m84c8] {
    flex-shrink: 0;
    font-size: 0.95rem;
    line-height: 1;
}

.custom-select-option-label[b-541h9m84c8] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-select-option-desc[b-541h9m84c8] {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    margin-left: auto;
}

.custom-select-check[b-541h9m84c8] {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ?? Form-select size variant (for use inside forms) ?? */
.custom-select-trigger.form-select-sm[b-541h9m84c8] {
    padding: 0.25rem 0.65rem;
    padding-right: 1.75rem;
    font-size: 0.8rem;
}

/* Dark mode */
[b-541h9m84c8] html.dark .custom-select-dropdown {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
/* /Components/Shared/LanguageSwitcher.razor.rz.scp.css */
.language-switcher[b-lrd2ezvj90] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.82rem;
}

.lang-link[b-lrd2ezvj90] {
    padding: 0.2rem 0.5rem;
    border: none;
    border-radius: 0.25rem;
    background: none;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    color: var(--color-text-muted);
    transition: background 0.15s, color 0.15s;
}

.lang-link:hover[b-lrd2ezvj90] {
    background: rgba(var(--color-primary-rgb), 0.08);
    color: var(--color-text);
}

.lang-link.active[b-lrd2ezvj90] {
    background: rgba(var(--color-primary-rgb), 0.12);
    color: var(--color-primary);
    font-weight: 600;
}

/* /Components/Shared/LoadingIndicator.razor.rz.scp.css */
/* Skeleton styles are defined globally in app.css */
/* /Components/Shared/NotificationBanner.razor.rz.scp.css */
.notification-banner-stack[b-poqcixf2py] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.notification-banner[b-poqcixf2py] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid;
    animation: notification-slide-in-b-poqcixf2py 0.25s ease-out;
}

@keyframes notification-slide-in-b-poqcixf2py {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Light Mode Severity Variants */

.notification-banner--info[b-poqcixf2py] {
    border-color: rgba(14, 165, 233, 0.3);
    background-color: rgba(14, 165, 233, 0.08);
    color: #0369a1;
}

.notification-banner--warning[b-poqcixf2py] {
    border-color: rgba(251, 191, 36, 0.3);
    background-color: rgba(251, 191, 36, 0.08);
    color: #92400e;
}

.notification-banner--error[b-poqcixf2py] {
    border-color: rgba(244, 63, 94, 0.3);
    background-color: rgba(244, 63, 94, 0.08);
    color: #9f1239;
}

/* Dark Mode Severity Variants */

[b-poqcixf2py] html.dark .notification-banner--info {
    border-color: rgba(56, 189, 248, 0.3);
    background-color: rgba(14, 165, 233, 0.12);
    color: #38bdf8;
}

[b-poqcixf2py] html.dark .notification-banner--warning {
    border-color: rgba(251, 191, 36, 0.3);
    background-color: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
}

[b-poqcixf2py] html.dark .notification-banner--error {
    border-color: rgba(251, 113, 133, 0.3);
    background-color: rgba(244, 63, 94, 0.12);
    color: #fb7185;
}

/* Icon */

.notification-banner__icon[b-poqcixf2py] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
}

.notification-banner__icon svg[b-poqcixf2py] {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Content */

.notification-banner__content[b-poqcixf2py] {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    line-height: 1.5;
}

.notification-banner__title[b-poqcixf2py] {
    font-weight: 600;
    margin-right: 6px;
}

.notification-banner__message[b-poqcixf2py] {
    word-break: break-word;
}

/* Close Button */

.notification-banner__close[b-poqcixf2py] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 6px;
    opacity: 0.6;
    color: inherit;
    padding: 0;
    transition: opacity 0.15s, background-color 0.15s;
    margin-top: -2px;
}

.notification-banner__close:hover[b-poqcixf2py],
.notification-banner__close:focus-visible[b-poqcixf2py] {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.06);
}

[b-poqcixf2py] html.dark .notification-banner__close:hover,
[b-poqcixf2py] html.dark .notification-banner__close:focus-visible {
    background-color: rgba(255, 255, 255, 0.08);
}

.notification-banner__close:focus-visible[b-poqcixf2py] {
    outline: 2px solid currentColor;
    outline-offset: -2px;
}

.notification-banner__close svg[b-poqcixf2py] {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Dismiss Animation */

.notification-banner--dismissing[b-poqcixf2py] {
    animation: notification-slide-out-b-poqcixf2py 0.2s ease-in forwards;
}

@keyframes notification-slide-out-b-poqcixf2py {
    to {
        opacity: 0;
        transform: translateY(-4px);
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
        overflow: hidden;
    }
}

/* Mobile Responsive */

@media (max-width: 768px) {
    .notification-banner-stack[b-poqcixf2py] {
        gap: 6px;
        margin-bottom: 12px;
    }

    .notification-banner[b-poqcixf2py] {
        padding: 10px 12px;
        gap: 10px;
        border-radius: 6px;
    }

    .notification-banner__content[b-poqcixf2py] {
        font-size: 13px;
        line-height: 1.45;
    }

    .notification-banner__title[b-poqcixf2py] {
        display: block;
        margin-right: 0;
        margin-bottom: 2px;
    }

    .notification-banner__close[b-poqcixf2py] {
        width: 36px;
        height: 36px;
        margin-top: -4px;
        margin-right: -4px;
    }
}

@media (max-width: 480px) {
    .notification-banner[b-poqcixf2py] {
        padding: 10px;
        gap: 8px;
        
    }

    .notification-banner__icon[b-poqcixf2py] {
        width: 18px;
        height: 18px;
    }

    .notification-banner__icon svg[b-poqcixf2py] {
        width: 18px;
        height: 18px;
    }

    .notification-banner__content[b-poqcixf2py] {
        font-size: 12.5px;
    }
}
/* /Components/Shared/ThemeSwitcher.razor.rz.scp.css */
.theme-toggle[b-j2nnc15jzj] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border: none;
    border-radius: 0.25rem;
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0;
    transition: color 0.15s, background 0.15s;
    flex-shrink: 0;
}

.theme-toggle:hover[b-j2nnc15jzj] {
    color: var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.08);
}

.theme-toggle i[b-j2nnc15jzj] {
    font-size: 0.95rem;
    line-height: 1;
    pointer-events: none;
}
/* /Components/Shared/TranslatableTextField.razor.rz.scp.css */
.translatable-field[b-an7wvh9lk2] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.translatable-field-label[b-an7wvh9lk2] {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(var(--text-primary-rgb), 0.85);
}

/* Every row uses the same 3-column grid so flags always align */
.translatable-row[b-an7wvh9lk2] {
    display: grid;
    grid-template-columns: 1fr 52px 28px;
    align-items: center;
    gap: 0.25rem;
    position: relative;
}

/* Input bordered box */
.translatable-input-group[b-an7wvh9lk2] {
    display: flex;
    align-items: center;
    border: 1px solid rgba(var(--text-primary-rgb), 0.2);
    border-radius: 6px;
    background: var(--input-bg, #fff);
    transition: border-color 0.15s;
}

.translatable-input-group:focus-within[b-an7wvh9lk2] {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1);
}

.translatable-input-group .translatable-input[b-an7wvh9lk2] {
    flex: 1;
    border: none;
    background: transparent;
    box-shadow: none;
    outline: none;
    min-width: 0;
}

.translatable-input-group .translatable-input:focus[b-an7wvh9lk2] {
    box-shadow: none;
}

/* Action cell � holds the remove button or empty space */
.translatable-row-action[b-an7wvh9lk2] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
}

/* Flag toggle button */
.translatable-lang-toggle[b-an7wvh9lk2] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.375rem;
    border: none;
    background: rgba(var(--text-primary-rgb), 0.04);
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background 0.15s;
}

.translatable-lang-toggle:hover:not(:disabled)[b-an7wvh9lk2] {
    background: rgba(var(--text-primary-rgb), 0.1);
}

.translatable-lang-toggle:disabled[b-an7wvh9lk2] {
    cursor: default;
    opacity: 0.6;
}

[b-an7wvh9lk2] .translatable-caret {
    position: absolute;
    bottom: 3px;
    right: 4px;
    font-size: 0.625rem;
    opacity: 0.6;
}

/* Static flag badge on the secondary row */
.translatable-lang-badge[b-an7wvh9lk2] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Flag SVG */
[b-an7wvh9lk2] .flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    display: block;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

/* Language dropdown */
.translatable-row .translatable-lang-dropdown[b-an7wvh9lk2] {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: var(--dropdown-bg, #fff);
    border: 1px solid rgba(var(--text-primary-rgb), 0.12);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.25rem;
    min-width: 130px;
}

.translatable-lang-backdrop[b-an7wvh9lk2] {
    position: fixed;
    inset: 0;
    z-index: -1;
}

.translatable-lang-option[b-an7wvh9lk2] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.375rem 0.5rem;
    border: none;
    background: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8125rem;
    color: var(--text-primary);
    text-align: left;
}

.translatable-lang-option:hover[b-an7wvh9lk2] {
    background: rgba(var(--primary-rgb), 0.08);
}

.translatable-lang-option.selected[b-an7wvh9lk2] {
    background: rgba(var(--primary-rgb), 0.12);
    font-weight: 500;
}

/* Add translation link */
.translatable-add[b-an7wvh9lk2] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0;
    font-size: 0.8125rem;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.translatable-add:hover[b-an7wvh9lk2] {
    text-decoration: underline;
}

/* Dark mode */
:global(html.dark) .translatable-input-group[b-an7wvh9lk2] {
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--input-bg, rgba(255, 255, 255, 0.05));
}

:global(html.dark) .translatable-lang-toggle[b-an7wvh9lk2] {
    background: rgba(255, 255, 255, 0.06);
}

:global(html.dark) .translatable-lang-toggle:hover:not(:disabled)[b-an7wvh9lk2] {
    background: rgba(255, 255, 255, 0.12);
}

:global(html.dark) .translatable-lang-dropdown[b-an7wvh9lk2] {
    background: var(--dropdown-bg, #1e1e1e);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
/* /Components/Shared/UserSearchSelector.razor.rz.scp.css */
.user-search-selector[b-iyayjsjd95] {
    position: relative;
}

.user-search-dropdown[b-iyayjsjd95] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    max-height: 240px;
    overflow-y: auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.user-search-item[b-iyayjsjd95] {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: background 0.1s;
}

.user-search-item:hover[b-iyayjsjd95] {
    background: var(--color-primary);
    color: #fff;
}

.user-search-item:hover .user-search-email[b-iyayjsjd95] {
    color: rgba(255, 255, 255, 0.8);
}

.user-search-name[b-iyayjsjd95] {
    font-size: 0.875rem;
    font-weight: 500;
}

.user-search-email[b-iyayjsjd95] {
    font-size: 0.75rem;
    color: var(--color-text-muted, #6b7280);
}

.user-search-empty[b-iyayjsjd95] {
    padding: 0.75rem;
    font-size: 0.8rem;
    color: var(--color-text-muted, #6b7280);
    text-align: center;
}
