/* /Layout/MainLayout.razor.rz.scp.css */
/* MainLayout scoped styles — minimal since app.css handles layout */

/* Ensure body fills full height in Blazor WASM */
[b-s61ipzctdy] #app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* NavMenu scoped overrides — active link underline */
[b-l3ejkvmgz0] .nav-link-item a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-text);
}
/* /Pages/AIStylist.razor.rz.scp.css */
/*
 * AIStylist.razor.css — Scoped styles
 * These are overridden/enhanced by premium.css global rules.
 * This file keeps only the scoped video/canvas positioning rules
 * since global styles in premium.css handle layout.
 */

/* Video + canvas inside ar-viewport must fill absolutely */
.ar-viewport video[b-hppmv9r7se],
.ar-viewport canvas[b-hppmv9r7se] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
