/* /Components/Modal.razor.rz.scp.css */
.modal-backdrop[b-wnd38ik0ds] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-panel[b-wnd38ik0ds] {
    background: var(--color-surface);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header[b-wnd38ik0ds] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

    .modal-header h3[b-wnd38ik0ds] {
        margin: 0;
        font-size: 1.1rem;
    }

.modal-close[b-wnd38ik0ds] {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--color-text-muted);
    padding: 0;
}

    .modal-close:hover[b-wnd38ik0ds] {
        color: var(--color-text);
    }

.modal-body[b-wnd38ik0ds] {
    padding: 1.25rem;
}

.modal-actions[b-wnd38ik0ds] {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
    margin-top: 1rem;
}
/* /Components/NavMenu.razor.rz.scp.css */
.hamburger-btn[b-ppl7y9ov6k] {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1050;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius);
    transition: background-color 0.15s ease;
}

    .hamburger-btn:hover[b-ppl7y9ov6k] {
        background-color: var(--color-brand-tint);
    }

    .hamburger-btn.is-open[b-ppl7y9ov6k] {
        display: none;
    }

.sidebar[b-ppl7y9ov6k] {
    width: 250px;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--color-brand);
    color: white;
    padding: 1.25rem 0.75rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    overflow-y: auto;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease-in-out;
}

.nav-header[b-ppl7y9ov6k] {
    padding: 0.5rem 0.75rem 1.25rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #ffffff;
}

/* Nav links styled as buttons rather than plain text hyperlinks.
   NavLink is a built-in framework component (Microsoft.AspNetCore.Components.Web)
   from a different assembly than this project — Blazor's automatic scope
   propagation doesn't cross that boundary, so the scope attribute never
   lands on the <a> tag NavLink renders internally. ::deep is the documented
   mechanism specifically for this case: everything after it matches without
   requiring the scope attribute, reaching into the child's rendered output
   regardless of which assembly it came from. */
.sidebar[b-ppl7y9ov6k]  .nav-link {
    display: flex;
    align-items: center;
    padding: 0.65rem 1rem;
    border-radius: var(--radius);
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    background-color: transparent;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

    .sidebar[b-ppl7y9ov6k]  .nav-link:hover {
        background-color: var(--color-brand-tint-strong);
        color: #ffffff;
        transform: translateX(2px);
    }

    /* NavLink automatically applies "active" for the current route */
    .sidebar[b-ppl7y9ov6k]  .nav-link.active {
        background-color: var(--color-brand);
        color: #ffffff;
        font-weight: 600;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    }

        .sidebar[b-ppl7y9ov6k]  .nav-link.active:hover {
            background-color: var(--color-brand-hover);
            transform: none;
        }

.overlay[b-ppl7y9ov6k] {
    display: none;
}

.nav-links[b-ppl7y9ov6k] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.nav-footer[b-ppl7y9ov6k] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logout[b-ppl7y9ov6k] {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font: inherit;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hamburger-btn[b-ppl7y9ov6k] {
        display: block;
    }

    .sidebar[b-ppl7y9ov6k] {
        transform: translateX(-100%);
        z-index: 1040;
    }

        .sidebar.open[b-ppl7y9ov6k] {
            transform: translateX(0);
        }

    .overlay[b-ppl7y9ov6k] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1030;
    }
}
/* /Components/NotificationHost.razor.rz.scp.css */
.notification-host[b-ff8v0a16yz] {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column-reverse;
    gap: 0.5rem;
    z-index: 2000;
    max-width: 360px;
}

.notification[b-ff8v0a16yz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    color: #ffffff;
    font-size: 0.9rem;
    animation: notification-in-b-ff8v0a16yz 0.2s ease-out;
}

.notification-info[b-ff8v0a16yz] {
    background: var(--color-brand);
}

.notification-success[b-ff8v0a16yz] {
    background: #16a34a;
}

.notification-warning[b-ff8v0a16yz] {
    background: #d97706;
}

.notification-error[b-ff8v0a16yz] {
    background: var(--color-danger);
}

.notification-dismiss[b-ff8v0a16yz] {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
}

    .notification-dismiss:hover[b-ff8v0a16yz] {
        opacity: 1;
    }

@keyframes notification-in-b-ff8v0a16yz {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/SearchBar.razor.rz.scp.css */
.search-panel[b-i2ieo55kqu] {
    position: relative;
}

.search-bar[b-i2ieo55kqu] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    padding: 0.4rem 0.6rem;
}

.search-mode[b-i2ieo55kqu] {
    position: relative;
    flex-shrink: 0;
}

.search-mode-toggle[b-i2ieo55kqu] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    color: var(--color-brand);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.3rem 0.2rem;
}

.chevron[b-i2ieo55kqu] {
    font-size: 0.7rem;
}

.search-bar-divider[b-i2ieo55kqu] {
    width: 1px;
    align-self: stretch;
    background: var(--color-border);
}

.search-bar-content[b-i2ieo55kqu] {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    min-height: 1.9rem;
}

.search-bar-input[b-i2ieo55kqu] {
    border: none;
    outline: none;
    font-size: 0.95rem;
    width: 100%;
    background: transparent;
    color: var(--color-text);
}

.search-bar-content-readonly[b-i2ieo55kqu] {
    cursor: pointer;
    background: var(--color-bg);
    border-radius: calc(var(--radius) - 2px);
    padding: 0.15rem 0.4rem;
}

.search-bar-placeholder[b-i2ieo55kqu] {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.search-pill[b-i2ieo55kqu] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--color-brand-tint);
    color: var(--color-brand-active);
    border-radius: 999px;
    padding: 0.2rem 0.5rem;
    font-size: 0.82rem;
    font-weight: 500;
}

.search-pill-remove[b-i2ieo55kqu] {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    padding: 0;
}

.search-bar-clear[b-i2ieo55kqu] {
    flex-shrink: 0;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
}

.click-catcher[b-i2ieo55kqu] {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: transparent;
}

.mode-menu[b-i2ieo55kqu] {
    position: absolute;
    top: calc(100% + 0.3rem);
    left: 0;
    z-index: 950;
    list-style: none;
    margin: 0;
    padding: 0.3rem;
    min-width: 160px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.mode-menu-item[b-i2ieo55kqu] {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0.45rem 0.6rem;
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--color-text);
}

    .mode-menu-item:hover[b-i2ieo55kqu] {
        background: var(--color-bg);
    }

    .mode-menu-item.active[b-i2ieo55kqu] {
        color: var(--color-brand);
        font-weight: 600;
        background: var(--color-brand-tint);
    }

.search-overlay[b-i2ieo55kqu] {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    right: 0;
    z-index: 950;
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.search-overlay-field[b-i2ieo55kqu] {
    flex: 0 0 160px;
}

.search-overlay-value[b-i2ieo55kqu] {
    flex: 1;
}

.search-overlay-add[b-i2ieo55kqu] {
    flex-shrink: 0;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.content[b-u9e7jd9y8k] {
    margin-left: 250px;
}

.content-no-nav[b-u9e7jd9y8k] {
    margin-left: 0;
}

@media (max-width: 768px) {
    .content[b-u9e7jd9y8k] {
        margin-left: 0;
        padding-top: 3.5rem;
    }

    .content-no-nav[b-u9e7jd9y8k] {
        padding-top: 0;
    }
}
/* /Pages/Account.razor.rz.scp.css */
.page-container[b-5ya4ogrtph] {
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
}

.page-header[b-5ya4ogrtph] {
    margin-bottom: 1.5rem;
}

    .page-header h1[b-5ya4ogrtph] {
        font-size: 1.5rem;
        margin: 0;
    }

.section-title[b-5ya4ogrtph] {
    font-size: 1.1rem;
    margin: 0 0 1rem;
}

.account-card[b-5ya4ogrtph] {
    margin-bottom: 1.5rem;
}
/* /Pages/AssetDetail.razor.rz.scp.css */
.page-container[b-mp6r6n8h3d] {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
}

.back-link[b-mp6r6n8h3d] {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: none;
}

    .back-link:hover[b-mp6r6n8h3d] {
        color: var(--color-primary);
    }

.page-header[b-mp6r6n8h3d] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
}

    .page-header h1[b-mp6r6n8h3d] {
        font-size: 1.5rem;
        margin: 0;
    }

.asset-plate[b-mp6r6n8h3d] {
    display: inline-block;
    width: fit-content;
    font-family: ui-monospace, 'SF Mono', Consolas, monospace;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
}

.section-title[b-mp6r6n8h3d] {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
}

.detection-map[b-mp6r6n8h3d] {
    width: 100%;
    height: 320px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.detection-list[b-mp6r6n8h3d] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detection-card[b-mp6r6n8h3d] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.detection-info[b-mp6r6n8h3d] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.detection-date[b-mp6r6n8h3d] {
    font-weight: 600;
}

.detection-location[b-mp6r6n8h3d] {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.detection-photo[b-mp6r6n8h3d] {
    width: 100%;
    border-radius: var(--radius);
}
/* /Pages/ForgotPassword.razor.rz.scp.css */
.page-container[b-yrzr4j7ygo] {
    max-width: 420px;
    margin: 3rem auto 0;
    padding: 1.5rem;
}

.login-title[b-yrzr4j7ygo] {
    font-size: 1.4rem;
    margin: 0 0 0.5rem;
    text-align: center;
}

.login-subtitle[b-yrzr4j7ygo] {
    text-align: center;
    margin: 0 0 1.25rem;
}

.login-submit[b-yrzr4j7ygo] {
    width: 100%;
    margin-top: 0.25rem;
}

.back-link[b-yrzr4j7ygo] {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: none;
    text-align: center;
}

    .back-link:hover[b-yrzr4j7ygo] {
        color: var(--color-primary);
    }
/* /Pages/Home.razor.rz.scp.css */
.page-container[b-kcmhrduz9i] {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
}

.page-header[b-kcmhrduz9i] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
}

    .page-header h1[b-kcmhrduz9i] {
        font-size: 1.5rem;
        margin: 0;
    }

.section-title[b-kcmhrduz9i] {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
}

.detection-map[b-kcmhrduz9i] {
    width: 100%;
    height: 320px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.detection-list[b-kcmhrduz9i] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detection-card[b-kcmhrduz9i] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.detection-info[b-kcmhrduz9i] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.detection-date[b-kcmhrduz9i] {
    font-weight: 600;
}

.detection-location[b-kcmhrduz9i] {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.detection-photo[b-kcmhrduz9i] {
    width: 100%;
    border-radius: var(--radius);
}

.detection-actions[b-kcmhrduz9i] {
    display: flex;
    gap: 0.5rem;
}

.detection-plate[b-kcmhrduz9i] {
    margin-left: auto;
    font-family: ui-monospace, 'SF Mono', Consolas, monospace;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
}

/* Mobile layout options */
@media (max-width: 768px) {
    .detection-card[b-kcmhrduz9i] {
        flex-wrap: wrap;
    }

    .detection-info[b-kcmhrduz9i],
    .detection-actions[b-kcmhrduz9i] {
        width: 100%;
    }

        .detection-actions .btn[b-kcmhrduz9i] {
            flex: 1;
        }
}
/* /Pages/JobDetail.razor.rz.scp.css */
.page-container[b-cit5558m2z] {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
}

.page-header[b-cit5558m2z] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

    .page-header h1[b-cit5558m2z] {
        font-size: 1.5rem;
        margin: 0.25rem 0;
    }

.back-link[b-cit5558m2z] {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: none;
}

    .back-link:hover[b-cit5558m2z] {
        color: var(--color-primary);
    }

.asset-grid[b-cit5558m2z] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.asset-card[b-cit5558m2z] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

    .asset-card:hover[b-cit5558m2z] {
        box-shadow: var(--shadow-md);
        transform: translateY(-1px);
    }

.asset-name[b-cit5558m2z] {
    font-weight: 600;
}

.asset-plate[b-cit5558m2z] {
    display: inline-block;
    width: fit-content;
    font-family: ui-monospace, 'SF Mono', Consolas, monospace;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
}
/* /Pages/JobList.razor.rz.scp.css */
.page-container[b-l0r0z6g1av] {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
}

.page-header[b-l0r0z6g1av] {
    margin-bottom: 1.5rem;
}

    .page-header h1[b-l0r0z6g1av] {
        font-size: 1.5rem;
        margin: 0;
    }

.create-job-card[b-l0r0z6g1av] {
    margin-bottom: 1.5rem;
}

.form-row[b-l0r0z6g1av] {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.flex-grow[b-l0r0z6g1av] {
    flex: 1;
    min-width: 0;
}

.job-grid[b-l0r0z6g1av] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.job-card[b-l0r0z6g1av] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.15s ease, transform 0.1s ease;
}

    .job-card:hover[b-l0r0z6g1av] {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }

.job-name[b-l0r0z6g1av] {
    font-weight: 600;
    font-size: 1rem;
}

.button-group[b-l0r0z6g1av] {
    flex-shrink: 0;
}
/* /Pages/Login.razor.rz.scp.css */
.page-container[b-6ixwcvydtb] {
    max-width: 420px;
    margin: 3rem auto 0;
    padding: 1.5rem;
}

.login-title[b-6ixwcvydtb] {
    font-size: 1.4rem;
    margin: 0 0 1.25rem;
    text-align: center;
}

.login-submit[b-6ixwcvydtb] {
    width: 100%;
    margin-top: 0.25rem;
}

.forgot-link[b-6ixwcvydtb] {
    display: block;
    margin-top: 0.85rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: none;
    text-align: center;
}

    .forgot-link:hover[b-6ixwcvydtb] {
        color: var(--color-primary);
    }
/* /Pages/OrganisationUserDetail.razor.rz.scp.css */
.page-container[b-f0hl4jpzuk] {
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
}

.back-link[b-f0hl4jpzuk] {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: none;
}

    .back-link:hover[b-f0hl4jpzuk] {
        color: var(--color-primary);
    }

.page-header[b-f0hl4jpzuk] {
    margin: 1rem 0 1.5rem;
}

    .page-header h1[b-f0hl4jpzuk] {
        font-size: 1.5rem;
        margin: 0;
    }

.page-body[b-f0hl4jpzuk] {
    display: flex;
    flex-flow: column;
    gap: 20px;
}
/* /Pages/OrganisationUsers.razor.rz.scp.css */
.page-container[b-k48ovpem96] {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.page-header[b-k48ovpem96] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

    .page-header h1[b-k48ovpem96] {
        font-size: 1.5rem;
        margin: 0.25rem 0;
    }

.user-grid[b-k48ovpem96] {
    display: flex;
    flex-flow: column;
    gap: 0.75rem;
}

.user-card[b-k48ovpem96] {
    display: flex;
    flex-direction: row;
    gap: 0.3rem;
    text-decoration: none;
    color: inherit;
    justify-content: space-between;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

    .user-card:hover[b-k48ovpem96] {
        box-shadow: var(--shadow-md);
        transform: translateY(-1px);
    }

.user-details[b-k48ovpem96] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.user-name[b-k48ovpem96] {
    font-weight: 600;
}

.user-email[b-k48ovpem96] {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.user-role[b-k48ovpem96] {
    align-content: center;
}

.role-text[b-k48ovpem96] {
    display: inline-block;
    width: fit-content;
    font-family: ui-monospace, 'SF Mono', Consolas, monospace;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
    color: white;
}

.super-role[b-k48ovpem96] {
    background: #4f9d09;
}

.admin-role[b-k48ovpem96] {
    background: var(--color-brand);
}
/* /Pages/PlateScanner.razor.rz.scp.css */
.scanner-page[b-q4u6v0r6nq] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem;
}

.camera-column[b-q4u6v0r6nq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.camera-container[b-q4u6v0r6nq] {
    position: relative;
    width: 100%;
    max-width: 800px;
}

.camera-video[b-q4u6v0r6nq] {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: var(--radius);
    background: #000;
}

.camera-overlay[b-q4u6v0r6nq] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.capture-canvas[b-q4u6v0r6nq] {
    display: none;
}

.scanner-controls[b-q4u6v0r6nq] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.scanner-stats[b-q4u6v0r6nq] {
    margin-top: 0.75rem;
    text-align: center;
}

.scanner-status[b-q4u6v0r6nq] {
    margin: 0 0 0.35rem;
    color: var(--color-text-muted);
}

.scanner-counts[b-q4u6v0r6nq] {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Mobile: immersive full-screen camera, controls/stats float on top of it */
@media (max-width: 768px) {
    .scanner-page[b-q4u6v0r6nq] {
        padding: 0;
        max-width: none;
    }

    .camera-column[b-q4u6v0r6nq] {
        gap: 0;
    }

    .camera-container[b-q4u6v0r6nq] {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        max-width: none;
        border-radius: 0;
        z-index: 1;
    }

    .camera-video[b-q4u6v0r6nq] {
        height: 100%;
        object-fit: contain;
        border-radius: 0;
    }

    .camera-overlay[b-q4u6v0r6nq] {
        object-fit: contain;
    }

    .scanner-controls[b-q4u6v0r6nq] {
        position: absolute;
        right: 1rem;
        bottom: 1.5rem;
        margin-top: 0;
        flex-direction: column;
        align-items: flex-end;
        z-index: 5;
    }

    .scanner-stats[b-q4u6v0r6nq] {
        position: absolute;
        top: 1rem;
        right: 1rem;
        margin-top: 0;
        text-align: right;
        background: rgba(0, 0, 0, 0.55);
        color: #fff;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius);
        z-index: 5;
        max-width: calc(100% - 2rem);
    }

    .scanner-status[b-q4u6v0r6nq],
    .scanner-counts[b-q4u6v0r6nq] {
        color: #fff;
    }
}
/* /Pages/ResetPassword.razor.rz.scp.css */
.page-container[b-51sso1ztcq] {
    max-width: 420px;
    margin: 3rem auto 0;
    padding: 1.5rem;
}

.login-title[b-51sso1ztcq] {
    font-size: 1.4rem;
    margin: 0 0 0.5rem;
    text-align: center;
}

.login-submit[b-51sso1ztcq] {
    width: 100%;
    margin-top: 0.25rem;
}

.back-link[b-51sso1ztcq] {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: none;
    text-align: center;
}

    .back-link:hover[b-51sso1ztcq] {
        color: var(--color-primary);
    }
