/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Verify-app layout. Theme variables (--vfy-*) defined on :root +
   html.theme-light in App.razor — see #3516. */

.page[b-2cttslludr] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--vfy-surface-0);
    color: var(--vfy-text-1);
}

main[b-2cttslludr] {
    flex: 1;
}

/* ─── Header ────────────────────────────────────────────────── */
.logo-header[b-2cttslludr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--vfy-surface-0);
    border-bottom: 1px solid var(--vfy-border);
}

.logo-link[b-2cttslludr] {
    display: inline-flex;
    align-items: center;
    height: 72px;          /* pinned so the toggle button can't shift between themes */
    line-height: 0;
    text-decoration: none;
}

.logo-header img[b-2cttslludr] {
    width: auto;
    object-fit: contain;
}
/* Per-theme logo show/hide + sizing lives in global wwwroot/app.css.
   The scoped CSS preprocessor on this project doesn't transform
   :global(...) selectors (verified in J4.Verify.styles.css), so any
   "html.theme-light → swap" rules here silently fail. See #3516. */

/* ─── Theme toggle ──────────────────────────────────────────── */
.theme-toggle[b-2cttslludr] {
    background: transparent;
    border: 1px solid var(--vfy-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--vfy-text-1);
    padding: 0;
    transition: background 120ms ease, border-color 120ms ease;
}
.theme-toggle:hover[b-2cttslludr] {
    background: var(--vfy-surface-2);
    border-color: var(--vfy-text-2);
}

/* Per-theme icon show/hide also lives in global wwwroot/app.css for
   the same reason as the logo swap — :global(...) isn't transformed
   here. See #3516. */

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer[b-2cttslludr] {
    text-align: center;
    padding: 1.5rem 1rem;
    color: var(--vfy-text-2);
    font-size: 0.875rem;
    border-top: 1px solid var(--vfy-border);
}
.site-footer a[b-2cttslludr] {
    color: var(--vfy-primary);
    text-decoration: none;
}
.site-footer a:hover[b-2cttslludr] {
    color: var(--vfy-primary-hover);
    text-decoration: underline;
}
.site-footer .footer-sep[b-2cttslludr] {
    margin: 0 0.5rem;
    color: var(--vfy-text-2);
    opacity: 0.6;
}

/* ─── Blazor error UI ───────────────────────────────────────── */
#blazor-error-ui[b-2cttslludr] {
    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-2cttslludr] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Pages/Verify.razor.rz.scp.css */
.passport-photo[b-fo9ibj8ixi] {
    width: 150px;
    height: 200px;
    object-fit: cover;
}

.qa-certificate-section[b-fo9ibj8ixi] {
    margin-top: 1rem;
    padding-top: 1rem;
    /* --vfy-border is theme-aware: subtle white-on-dark in dark mode,
       subtle black-on-light in light mode. */
    border-top: 1px solid var(--vfy-border);
}
