/* _content/Forkery.Web/Components/ForbiddenAccess.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.forbidden[b-tcj67z9bm7] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space);
    min-height: 60vh;
}

.forbidden__card[b-tcj67z9bm7] {
    max-width: 520px;
    width: 100%;
    background: #fff;
    border: 1px solid var(--neutral-200);
    border-radius: 0.75rem;
    padding: var(--space-xl);
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.forbidden__icon[b-tcj67z9bm7] {
    font-size: 2.5rem;
    color: var(--accent-500);
    margin-bottom: var(--space);
}

.forbidden__title[b-tcj67z9bm7] {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
}

.forbidden__body[b-tcj67z9bm7] {
    color: var(--neutral-600);
    margin: 0 0 var(--space-lg);
    line-height: 1.5;
}

.forbidden__actions[b-tcj67z9bm7] {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

}
/* _content/Forkery.Web/Components/Layout/MainLayout.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

#blazor-error-ui[b-plcbivj9mo] {
    color-scheme: light only;
    background: var(--accent-50);
    border-top: 1px solid var(--accent-100);
    color: var(--accent-600);
    bottom: 0;
    box-shadow: 0 -2px 6px rgb(0 0 0 / 0.1);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.75rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui a.reload[b-plcbivj9mo] {
    font-weight: 600;
    color: var(--accent-600);
}

#blazor-error-ui .dismiss[b-plcbivj9mo] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* ==========================================================================
   Top Navigation
   ========================================================================== */

.forkery-topnav[b-plcbivj9mo] {
    background: white;
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.forkery-topnav__inner[b-plcbivj9mo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    gap: var(--space);
}

.forkery-topnav__brand[b-plcbivj9mo] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--text-3xl-tight);
    color: var(--primary-600);
    transition: var(--transition);
    flex-shrink: 0;
}

.forkery-topnav__brand:hover[b-plcbivj9mo] {
    color: var(--primary-500);
}

.forkery-topnav__brand-icon[b-plcbivj9mo] {
    font-size: var(--text-2xl);
    line-height: 1;
}

/* Hamburger toggle — mobile only; hidden on desktop via the min-width query. */
.forkery-topnav__toggle[b-plcbivj9mo] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: none;
    background: transparent;
    color: var(--neutral-700);
    font-size: var(--text-xl);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.forkery-topnav__toggle:hover[b-plcbivj9mo] {
    background: var(--primary-50);
    color: var(--primary-600);
}

/* ---- Mobile drawer (default) ---------------------------------------------
   The menu is an off-canvas panel that slides in from the right when open.
   Promoted back to an inline bar at >= 900px below. */
.forkery-topnav__menu[b-plcbivj9mo] {
    position: fixed;
    top: 4rem;
    right: 0;
    bottom: 0;
    width: min(20rem, 85vw);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
    padding: var(--space);
    background: white;
    border-left: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    z-index: 200;
}

/* Closed drawer is removed from layout entirely on mobile. Leaving it in the
   DOM off-canvas (e.g. translateX) would extend the page past the right edge
   and create a phantom horizontal scrollbar. The desktop query below re-shows
   it as the inline bar. */
@media (max-width: 899.98px) {
    .forkery-topnav__menu[b-plcbivj9mo] {
        display: none;
    }

    .forkery-topnav__menu--open[b-plcbivj9mo] {
        display: flex;
    }
}

.forkery-topnav__backdrop[b-plcbivj9mo] {
    position: fixed;
    inset: 4rem 0 0 0;
    background: rgb(0 0 0 / 0.35);
    /* Below the sticky header's stacking context (z-index 100) so the drawer —
       which lives inside that context — paints on top of the backdrop rather
       than under it. The backdrop still dims the page content, which has no
       stacking context of its own. */
    z-index: 90;
}

.forkery-topnav__nav[b-plcbivj9mo] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

/* In the drawer, each nav group stacks vertically and fills the width. */
.forkery-topnav__menu .forkery-topnav__nav[b-plcbivj9mo] {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

.forkery-topnav__nav--right[b-plcbivj9mo] {
    margin-left: auto;
}

.forkery-topnav__menu .forkery-topnav__nav--right[b-plcbivj9mo] {
    margin-left: 0;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--neutral-200);
}

.forkery-topnav__menu[b-plcbivj9mo]  .forkery-topnav__link,
.forkery-topnav__menu[b-plcbivj9mo]  button.forkery-topnav__link {
    width: 100%;
    justify-content: flex-start;
}

.forkery-topnav__nav[b-plcbivj9mo]  .forkery-topnav__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    color: var(--neutral-600);
    font-weight: 500;
    font-size: var(--text-md);
    text-decoration: none;
    transition: var(--transition);
    min-height: 44px;
    white-space: nowrap;
}

.forkery-topnav__nav[b-plcbivj9mo]  .forkery-topnav__link:hover {
    color: var(--primary-600);
    background: var(--primary-50);
}

.forkery-topnav__nav[b-plcbivj9mo]  .forkery-topnav__link.active {
    color: var(--primary-600);
    background: var(--primary-50);
}

.forkery-topnav__nav[b-plcbivj9mo]  .forkery-topnav__logout-form {
    display: contents;
}

.forkery-topnav__nav[b-plcbivj9mo]  button.forkery-topnav__link {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    color: var(--neutral-600);
    font-weight: 500;
    font-size: var(--text-md);
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    min-height: 44px;
    white-space: nowrap;
}

.forkery-topnav__nav[b-plcbivj9mo]  button.forkery-topnav__link:hover {
    color: var(--primary-600);
    background: var(--primary-50);
}

/* ==========================================================================
   Page Layout
   ========================================================================== */

.forkery-main[b-plcbivj9mo] {
    padding: var(--space-lg) 0;
    min-height: calc(100vh - 4rem);
}

/* ---- Desktop: collapse the drawer back into an inline top bar ------------- */
@media (min-width: 900px) {
    .forkery-topnav__toggle[b-plcbivj9mo],
    .forkery-topnav__backdrop[b-plcbivj9mo] {
        display: none;
    }

    .forkery-topnav__menu[b-plcbivj9mo] {
        position: static;
        flex: 1;
        flex-direction: row;
        align-items: center;
        width: auto;
        gap: var(--space);
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        transform: none;
        overflow: visible;
    }

    .forkery-topnav__menu .forkery-topnav__nav[b-plcbivj9mo] {
        flex-direction: row;
        align-items: center;
        width: auto;
    }

    .forkery-topnav__menu .forkery-topnav__nav--right[b-plcbivj9mo] {
        margin-left: auto;
        padding-top: 0;
        border-top: none;
    }

    .forkery-topnav__menu[b-plcbivj9mo]  .forkery-topnav__link,
    .forkery-topnav__menu[b-plcbivj9mo]  button.forkery-topnav__link {
        width: auto;
        justify-content: center;
    }
}

}
/* _content/Forkery.Web/Components/Pages/Catalogue/Catalogue.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.catalogue[b-sjjz2uftc2] {
    padding: var(--space-lg);
}

.catalogue__header[b-sjjz2uftc2] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    gap: var(--space);
}

.catalogue__header-content[b-sjjz2uftc2] {
    min-width: 0;
    max-width: 720px;
}

.catalogue__title[b-sjjz2uftc2] {
    font-size: var(--text-3xl-tight);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.catalogue__title i[b-sjjz2uftc2] {
    color: var(--primary-500);
}

.catalogue__subtitle[b-sjjz2uftc2] {
    color: var(--neutral-500);
    margin: 0;
    font-size: var(--text-md);
}

.catalogue__actions[b-sjjz2uftc2] {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.catalogue__toast[b-sjjz2uftc2] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--secondary-300);
    background: var(--secondary-50);
    color: var(--secondary-700);
    border-radius: var(--radius);
    margin-bottom: var(--space);
    font-size: var(--text-sm);
}

.catalogue__toast-link[b-sjjz2uftc2] {
    margin-left: auto;
    color: var(--secondary-700);
    font-weight: 600;
    text-decoration: underline;
}

.catalogue__layout[b-sjjz2uftc2] {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.catalogue__sidebar[b-sjjz2uftc2] {
    position: sticky;
    top: calc(var(--topnav-height, 64px) + var(--space));
}

@media (max-width: 992px) {
    .catalogue__layout[b-sjjz2uftc2] {
        grid-template-columns: 1fr;
    }

    /* Single column: stop the filters pinning to the top and letting the
       result cards scroll up over them. */
    .catalogue__sidebar[b-sjjz2uftc2] {
        position: static;
    }
}

.catalogue__main[b-sjjz2uftc2] {
    min-width: 0;
}

/* Filters collapse toggle — desktop hides it (filters always visible). */
.catalogue__filters-toggle[b-sjjz2uftc2] {
    display: none;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-sm) var(--space);
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    color: var(--neutral-800);
    font-size: var(--text-md);
    font-weight: 600;
    cursor: pointer;
}

.catalogue__filters-count[b-sjjz2uftc2] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 var(--space-xs);
    border-radius: 999px;
    background: var(--primary-500);
    color: white;
    font-size: var(--text-sm);
    font-weight: 600;
}

.catalogue__filters-caret[b-sjjz2uftc2] {
    margin-left: auto;
    color: var(--neutral-500);
}

@media (max-width: 992px) {
    .catalogue__filters-toggle[b-sjjz2uftc2] {
        display: flex;
    }

    .catalogue__filters-panel[b-sjjz2uftc2] {
        display: none;
        margin-top: var(--space-sm);
    }

    .catalogue__filters-panel--open[b-sjjz2uftc2] {
        display: block;
    }
}

.catalogue__results-header[b-sjjz2uftc2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    gap: var(--space);
}

.catalogue__results-count[b-sjjz2uftc2] {
    font-size: var(--text-md);
    color: var(--neutral-600);
}

.catalogue__grid[b-sjjz2uftc2] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.catalogue__loading-grid[b-sjjz2uftc2] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

.catalogue__skeleton-card[b-sjjz2uftc2] {
    height: 380px;
    border-radius: var(--radius-lg);
}

.catalogue__empty-icon[b-sjjz2uftc2] {
    font-size: 4rem;
    color: var(--neutral-300);
    display: block;
}

.catalogue__error[b-sjjz2uftc2] {
    text-align: center;
    padding: var(--space-xl);
}

.catalogue__error-text[b-sjjz2uftc2] {
    color: var(--accent-600);
    margin-bottom: var(--space);
}

.catalogue__pagination[b-sjjz2uftc2] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--neutral-200);
}

.catalogue__page-btn[b-sjjz2uftc2],
.catalogue__page-num[b-sjjz2uftc2] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-sm);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    background: white;
    color: var(--neutral-600);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.catalogue__page-btn:hover:not(:disabled)[b-sjjz2uftc2],
.catalogue__page-num:hover[b-sjjz2uftc2] {
    color: var(--primary-600);
    background: var(--primary-50);
    border-color: var(--primary-300);
}

.catalogue__page-btn:disabled[b-sjjz2uftc2] {
    opacity: 0.4;
    cursor: not-allowed;
}

.catalogue__page-num--active[b-sjjz2uftc2] {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
}

.catalogue__page-ellipsis[b-sjjz2uftc2] {
    color: var(--neutral-400);
    padding: 0 var(--space-xs);
    line-height: 40px;
}

}
/* _content/Forkery.Web/Components/Pages/Catalogue/SharedRecipeDetail.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.shared-detail[b-wvfj8ybr38] {
    padding: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.shared-detail__loading[b-wvfj8ybr38],
.shared-detail__not-found[b-wvfj8ybr38] {
    padding: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.shared-detail__skeleton-hero[b-wvfj8ybr38] {
    height: 320px;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.shared-detail__skeleton-body[b-wvfj8ybr38] {
    height: 400px;
    border-radius: var(--radius-lg);
}

.shared-detail__not-found-icon[b-wvfj8ybr38] {
    font-size: 4rem;
    color: var(--neutral-300);
    margin-bottom: var(--space);
}

.shared-detail__not-found-title[b-wvfj8ybr38] {
    font-size: var(--text-2xl);
    margin: 0 0 var(--space-xs);
    color: var(--neutral-800);
}

.shared-detail__not-found-text[b-wvfj8ybr38] {
    color: var(--neutral-500);
    margin-bottom: var(--space);
}

.shared-detail__banner[b-wvfj8ybr38] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    margin-bottom: var(--space);
    font-size: var(--text-sm);
}

.shared-detail__banner--warning[b-wvfj8ybr38] {
    background: var(--warning-50);
    border: 1px solid var(--warning-200);
    color: var(--warning-700);
}

.shared-detail__banner a[b-wvfj8ybr38] {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
}

.shared-detail__hero[b-wvfj8ybr38] {
    position: relative;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-lg);
    background: var(--neutral-100);
}

.shared-detail__hero-image[b-wvfj8ybr38] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shared-detail__hero-placeholder[b-wvfj8ybr38] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shared-detail__hero-placeholder-icon[b-wvfj8ybr38] {
    font-size: 4rem;
    color: var(--neutral-300);
}

.shared-detail__hero-overlay[b-wvfj8ybr38] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: white;
}

.shared-detail__hero-badges[b-wvfj8ybr38] {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.shared-detail__hero-badge[b-wvfj8ybr38] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 2px var(--space-sm);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
    text-decoration: none;
    backdrop-filter: blur(4px);
}

.shared-detail__hero-badge:hover[b-wvfj8ybr38] {
    background: rgba(255, 255, 255, 0.3);
}

.shared-detail__hero-title[b-wvfj8ybr38] {
    margin: 0 0 var(--space-xs);
    font-size: var(--text-3xl-tight);
    font-weight: 700;
}

.shared-detail__hero-subtitle[b-wvfj8ybr38] {
    margin: 0 0 var(--space-xs);
    font-size: var(--text-md);
    opacity: 0.9;
}

.shared-detail__hero-meta[b-wvfj8ybr38] {
    margin: 0;
    font-size: var(--text-sm);
    opacity: 0.75;
}

.shared-detail__meta[b-wvfj8ybr38] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space);
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
}

.shared-detail__meta-item[b-wvfj8ybr38] {
    text-align: center;
}

.shared-detail__meta-icon[b-wvfj8ybr38] {
    font-size: 1.25rem;
    color: var(--primary-500);
    margin-bottom: var(--space-xs);
}

.shared-detail__meta-value[b-wvfj8ybr38] {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
}

.shared-detail__meta-label[b-wvfj8ybr38] {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shared-detail__tags[b-wvfj8ybr38] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.shared-detail__toast[b-wvfj8ybr38] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--secondary-300);
    background: var(--secondary-50);
    color: var(--secondary-700);
    border-radius: var(--radius);
    margin-bottom: var(--space);
    font-size: var(--text-sm);
}

.shared-detail__toast-link[b-wvfj8ybr38] {
    margin-left: auto;
    color: var(--secondary-700);
    font-weight: 600;
    text-decoration: underline;
}

.shared-detail__columns[b-wvfj8ybr38] {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-lg);
    align-items: start;
}

@media (max-width: 992px) {
    .shared-detail__columns[b-wvfj8ybr38] {
        grid-template-columns: 1fr;
    }

    .shared-detail__sidebar[b-wvfj8ybr38] {
        position: static;
    }
}

.shared-detail__main[b-wvfj8ybr38] {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    min-width: 0;
}

.shared-detail__ingredients-card[b-wvfj8ybr38],
.shared-detail__instructions-card[b-wvfj8ybr38],
.shared-detail__action-card[b-wvfj8ybr38],
.shared-detail__nutrition-card[b-wvfj8ybr38] {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}

.shared-detail__section-title[b-wvfj8ybr38] {
    margin: 0 0 var(--space);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.shared-detail__section-title i[b-wvfj8ybr38] {
    color: var(--primary-500);
}

.shared-detail__ingredient-list[b-wvfj8ybr38] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.shared-detail__ingredient-item[b-wvfj8ybr38] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: var(--space-xs) 0;
    border-bottom: 1px dashed var(--neutral-200);
    gap: var(--space-sm);
}

.shared-detail__ingredient-item:last-child[b-wvfj8ybr38] {
    border-bottom: none;
}

.shared-detail__ingredient-text[b-wvfj8ybr38] {
    color: var(--neutral-800);
    font-size: var(--text-sm);
}

.shared-detail__ingredient-name[b-wvfj8ybr38] {
    color: var(--neutral-900);
}

.shared-detail__ingredient-note[b-wvfj8ybr38] {
    display: block;
    color: var(--neutral-500);
    font-style: italic;
    font-size: var(--text-xs);
    margin-top: 0.125rem;
}

.shared-detail__ingredient-amount[b-wvfj8ybr38] {
    color: var(--neutral-600);
    font-size: var(--text-sm);
    font-weight: 500;
    white-space: nowrap;
}

.shared-detail__instruction-list[b-wvfj8ybr38] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space);
}

.shared-detail__instruction-step[b-wvfj8ybr38] {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.shared-detail__step-number[b-wvfj8ybr38] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--text-sm);
}

.shared-detail__step-text[b-wvfj8ybr38] {
    margin: 0;
    color: var(--neutral-700);
    line-height: 1.6;
}

.shared-detail__sidebar[b-wvfj8ybr38] {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: sticky;
    top: calc(var(--topnav-height, 64px) + var(--space));
}

.shared-detail__action-title[b-wvfj8ybr38] {
    margin: 0 0 var(--space-xs);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
}

.shared-detail__action-text[b-wvfj8ybr38] {
    margin: 0 0 var(--space);
    color: var(--neutral-600);
    font-size: var(--text-sm);
    line-height: 1.5;
}

.shared-detail__action-text--update[b-wvfj8ybr38] {
    color: var(--warning-700);
    background: var(--warning-50);
    border: 1px solid var(--warning-200);
    border-radius: var(--radius);
    padding: var(--space-xs) var(--space-sm);
}

.shared-detail__fork-btn[b-wvfj8ybr38] {
    width: 100%;
    justify-content: center;
}

.shared-detail__nutrition-grid[b-wvfj8ybr38] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.shared-detail__nutrition-item[b-wvfj8ybr38] {
    text-align: center;
    padding: var(--space-sm);
    background: var(--neutral-50);
    border-radius: var(--radius);
}

.shared-detail__nutrition-value[b-wvfj8ybr38] {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
}

.shared-detail__nutrition-label[b-wvfj8ybr38] {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    text-transform: uppercase;
}

.shared-detail__empty-section[b-wvfj8ybr38] {
    color: var(--neutral-500);
    font-size: var(--text-sm);
    margin: 0;
    font-style: italic;
}

}
/* _content/Forkery.Web/Components/Pages/CookMode.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {
/* Cook mode — full-screen kitchen view.
   Phase 2 layers the recipe viewer: tabs, ingredients, instructions, tombstones.
   Timer bar (Phase 3) will sit fixed-bottom; the .cook-mode__main reserves space
   for it so the last instruction is never occluded. */

.cook-mode[b-9bkmrzahek] {
    /* Dark-theme local tokens. Cook mode inverts the app's normal palette
       (white bg / dark text) to a kitchen-friendly dark surface. These are
       scoped to .cook-mode so they don't leak into the rest of the app. */
    --cook-bg: #121212;
    --cook-surface: #1a1a1a;
    --cook-surface-elevated: #1f1f1f;
    --cook-fg: #f5f5f5;
    --cook-fg-muted: rgba(245, 245, 245, 0.75);
    --cook-fg-faint: rgba(245, 245, 245, 0.55);
    --cook-fg-faintest: rgba(245, 245, 245, 0.45);
    --cook-overlay-lowest: rgba(255, 255, 255, 0.03);
    --cook-overlay-low: rgba(255, 255, 255, 0.04);
    --cook-overlay: rgba(255, 255, 255, 0.08);
    --cook-overlay-strong: rgba(255, 255, 255, 0.1);
    --cook-border: rgba(255, 255, 255, 0.15);
    --cook-border-strong: rgba(255, 255, 255, 0.2);
    --cook-border-stronger: rgba(255, 255, 255, 0.35);
    --cook-error: #ffb4b4;
    /* Primary-500 (#3b82f6) at low alpha — used for the detected-timer chips. */
    --cook-primary-tint: rgba(59, 130, 246, 0.15);
    --cook-primary-tint-strong: rgba(59, 130, 246, 0.25);
    --cook-primary-tint-border: rgba(59, 130, 246, 0.35);

    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    background: var(--cook-bg);
    color: var(--cook-fg);
    z-index: 1000;
    overflow: hidden;
}

.cook-mode__header[b-9bkmrzahek] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--cook-surface);
    border-bottom: 1px solid var(--cook-overlay);
    min-height: 3.5rem;
    flex: 0 0 auto;
}

.cook-mode__back[b-9bkmrzahek] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--cook-border);
    color: inherit;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    font: inherit;
    min-height: 44px;
}

.cook-mode__back:hover[b-9bkmrzahek],
.cook-mode__back:focus-visible[b-9bkmrzahek] {
    background: var(--cook-overlay);
    outline: none;
}

.cook-mode__label[b-9bkmrzahek] {
    flex: 1 1 auto;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: capitalize;
}

.cook-mode__header-spacer[b-9bkmrzahek] {
    width: 5rem;
    flex: 0 0 auto;
}

.cook-mode__main[b-9bkmrzahek] {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    /* Padding adjusted by timer-bar mode classes below — bottom for the bar,
       right for the sidebar, smaller bottom for the FAB. */
    padding-bottom: 96px;
}

.cook-mode--bar-bottom .cook-mode__main[b-9bkmrzahek] {
    padding-bottom: 96px;
    padding-right: 1.5rem;
}

.cook-mode--bar-sidebar .cook-mode__main[b-9bkmrzahek] {
    padding-right: calc(280px + 1.5rem);
    padding-bottom: 1.5rem;
}

.cook-mode--bar-collapsed .cook-mode__main[b-9bkmrzahek] {
    padding-bottom: calc(56px + 1.5rem);
    padding-right: 1.5rem;
}

@media (max-width: 768px) {
    /* On small screens the sidebar would steal too much horizontal real
       estate — collapse it down to bottom-bar padding so the recipe still
       reads. The sidebar itself stays visible (user opted in) but content
       wraps under it. */
    .cook-mode--bar-sidebar .cook-mode__main[b-9bkmrzahek] {
        padding-right: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

.cook-mode__main > *[b-9bkmrzahek] {
    width: 100%;
    max-width: 64rem;
}

.cook-mode__loading[b-9bkmrzahek],
.cook-mode__error[b-9bkmrzahek] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--cook-fg);
}

.cook-mode__spinner[b-9bkmrzahek] {
    font-size: 2rem;
    opacity: 0.75;
}

.cook-mode__error[b-9bkmrzahek] {
    color: var(--cook-error);
}

.cook-mode__error-back[b-9bkmrzahek] {
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--cook-overlay-strong);
    border: 1px solid var(--cook-border-strong);
    color: inherit;
    border-radius: 0.5rem;
    cursor: pointer;
    font: inherit;
    min-height: 44px;
}

/* ----- Wake-lock toast --------------------------------------------------- */

.cook-mode__toast[b-9bkmrzahek] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 1rem 0;
    padding: 0.65rem 0.9rem;
    background: var(--cook-overlay);
    border: 1px solid var(--cook-border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    color: var(--cook-fg);
    flex: 0 0 auto;
}

.cook-mode__toast i[b-9bkmrzahek] {
    opacity: 0.8;
}

.cook-mode__toast-dismiss[b-9bkmrzahek] {
    margin-left: auto;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-sm);
    min-height: 36px;
    min-width: 36px;
}

.cook-mode__toast-dismiss:hover[b-9bkmrzahek],
.cook-mode__toast-dismiss:focus-visible[b-9bkmrzahek] {
    background: var(--cook-overlay-strong);
    outline: none;
}

/* ----- Viewer + tabs ----------------------------------------------------- */

.cook-mode__viewer[b-9bkmrzahek] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cook-mode__tabs[b-9bkmrzahek] {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    border-bottom: 1px solid var(--cook-overlay-strong);
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 0 0 auto;
}

.cook-mode__tabs[b-9bkmrzahek]::-webkit-scrollbar {
    display: none;
}

.cook-mode__tab[b-9bkmrzahek] {
    background: transparent;
    border: none;
    color: var(--cook-fg-muted);
    padding: 0.75rem 1rem;
    font-size: var(--text-lg);
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    min-height: 44px;
    transition: var(--transition);
}

.cook-mode__tab:hover[b-9bkmrzahek],
.cook-mode__tab:focus-visible[b-9bkmrzahek] {
    color: white;
    outline: none;
}

.cook-mode__tab--active[b-9bkmrzahek] {
    color: white;
    font-weight: 700;
    border-bottom-color: var(--primary-500);
}

.cook-mode__panel[b-9bkmrzahek] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    /* Prevent horizontal scroll while still allowing swipe gestures to register. */
    touch-action: pan-y;
}

/* ----- Hero image + summary --------------------------------------------- */

.cook-mode__hero[b-9bkmrzahek] {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 240px;
    background-size: cover;
    background-position: center;
    background-color: var(--cook-surface-elevated);
    border-radius: var(--radius-md);
}

@media (min-width: 900px) {
    .cook-mode__hero[b-9bkmrzahek] {
        max-height: 320px;
    }
}

.cook-mode__summary[b-9bkmrzahek] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cook-mode__title[b-9bkmrzahek] {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: white;
}

.cook-mode__description[b-9bkmrzahek] {
    font-size: var(--text-lg);
    line-height: 1.5;
    color: var(--cook-fg-muted);
    margin: 0;
}

.cook-mode__meta[b-9bkmrzahek] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cook-mode__pill[b-9bkmrzahek] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--cook-overlay);
    color: var(--cook-fg);
    font-size: var(--text-base);
    font-weight: 500;
}

.cook-mode__pill i[b-9bkmrzahek] {
    opacity: 0.85;
}

.cook-mode__pill--strong[b-9bkmrzahek] {
    background: var(--primary-600);
    color: white;
}

/* ----- Two-column ingredient + instruction layout ---------------------- */

.cook-mode__columns[b-9bkmrzahek] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .cook-mode__columns[b-9bkmrzahek] {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }

    .cook-mode__ingredients[b-9bkmrzahek] {
        flex: 0 0 38%;
        position: sticky;
        top: 0;
        align-self: flex-start;
    }

    .cook-mode__instructions[b-9bkmrzahek] {
        flex: 1 1 auto;
    }
}

.cook-mode__ingredients[b-9bkmrzahek],
.cook-mode__instructions[b-9bkmrzahek] {
    background: var(--cook-overlay-lowest);
    border: 1px solid var(--cook-overlay);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.cook-mode__section-title[b-9bkmrzahek] {
    margin: 0 0 0.75rem 0;
    font-size: var(--text-xl);
    font-weight: 700;
    color: white;
}

.cook-mode__empty[b-9bkmrzahek] {
    color: var(--cook-fg-faint);
    font-size: var(--text-base);
    margin: 0;
}

.cook-mode__ingredient-list[b-9bkmrzahek],
.cook-mode__step-list[b-9bkmrzahek] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Section heading rendered as an <li> inside the list so the list semantics
   still make sense to assistive tech (the li is aria-hidden because the
   heading text is decorative context, not an actionable row). */
.cook-mode__section-heading[b-9bkmrzahek] {
    font-weight: 700;
    font-size: var(--text-lg);
    color: white;
    margin: 0.75rem 0 0.25rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--cook-overlay-strong);
    letter-spacing: 0.02em;
}

.cook-mode__section-heading:first-child[b-9bkmrzahek] {
    margin-top: 0;
}

/* ----- Shared checkbox pattern ----------------------------------------- */

.cook-mode__check[b-9bkmrzahek] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.6rem 0.5rem;
    border-radius: var(--radius-sm);
    min-height: 44px;
    font-size: var(--text-lg);
    /* Anchor the absolutely-positioned hidden input here rather than letting it
       walk up to the page-level .cook-mode (position: fixed). Without this
       anchor the browser's "scroll focused element into view" behaviour can
       jump the scroll container to expose the offset-less hidden input,
       leaving a large empty area at the bottom of the viewport. */
    position: relative;
}

.cook-mode__check:hover[b-9bkmrzahek],
.cook-mode__check:focus-within[b-9bkmrzahek] {
    background: var(--cook-overlay-low);
}

.cook-mode__check input[type="checkbox"][b-9bkmrzahek] {
    /* Bulletproof visually-hidden — keeps the input semantically present and
       focusable for assistive tech, but renders as nothing and contributes
       nothing to layout. Replaces the previous opacity:0 + 1px size pattern
       which left enough surface area for some browsers to render focus rings. */
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cook-mode__check-box[b-9bkmrzahek] {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--cook-border-stronger);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 0.85rem;
    transition: var(--transition);
    margin-top: 2px;
}

.cook-mode__check input[type="checkbox"]:checked + .cook-mode__check-box[b-9bkmrzahek] {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
}

.cook-mode__check input[type="checkbox"]:focus-visible + .cook-mode__check-box[b-9bkmrzahek] {
    outline: 2px solid var(--primary-400);
    outline-offset: 2px;
}

/* ----- Ingredient rows -------------------------------------------------- */

.cook-mode__ingredient-text[b-9bkmrzahek] {
    flex: 1 1 auto;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    line-height: 1.4;
}

.cook-mode__ingredient-qty[b-9bkmrzahek] {
    font-weight: 700;
    color: white;
}

.cook-mode__ingredient-name[b-9bkmrzahek] {
    color: var(--cook-fg);
}

.cook-mode__ingredient-note[b-9bkmrzahek] {
    color: var(--cook-fg-faint);
    font-size: var(--text-base);
}

.cook-mode__ingredient--checked .cook-mode__ingredient-text[b-9bkmrzahek] {
    text-decoration: line-through;
    color: var(--cook-fg-faintest);
}

.cook-mode__ingredient--checked .cook-mode__ingredient-qty[b-9bkmrzahek],
.cook-mode__ingredient--checked .cook-mode__ingredient-name[b-9bkmrzahek] {
    color: var(--cook-fg-faintest);
}

/* ----- Instruction steps ----------------------------------------------- */

.cook-mode__check--step[b-9bkmrzahek] {
    font-size: var(--text-xl);
    line-height: 1.5;
    gap: 1rem;
    align-items: flex-start;
}

.cook-mode__step-number[b-9bkmrzahek] {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cook-overlay);
    color: white;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-base);
}

.cook-mode__step-text[b-9bkmrzahek] {
    flex: 1 1 auto;
    color: var(--cook-fg);
    font-size: var(--text-xl);
    line-height: 1.5;
}

.cook-mode__step--checked .cook-mode__step-text[b-9bkmrzahek] {
    text-decoration: line-through;
    color: var(--cook-fg-faintest);
}

.cook-mode__step--checked .cook-mode__step-number[b-9bkmrzahek] {
    background: var(--cook-overlay-low);
    color: var(--cook-fg-faintest);
}

/* Detected-timer chips — one per duration phrase found in the step text.
   Sit just below the step body, indented past the step number so they line
   up with the start of the instruction text. Tap to add+start a timer. */

.cook-mode__step-timers[b-9bkmrzahek] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0 0 calc(36px + 1rem + 0.5rem);
}

.cook-mode__step-timer-chip[b-9bkmrzahek] {
    all: unset;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
    background: var(--cook-primary-tint);
    color: var(--primary-300);
    border: 1px solid var(--cook-primary-tint-border);
    font-size: var(--text-sm);
    font-weight: 500;
    min-height: 36px;
    transition: var(--transition);
}

.cook-mode__step-timer-chip:hover[b-9bkmrzahek],
.cook-mode__step-timer-chip:focus-visible[b-9bkmrzahek] {
    background: var(--cook-primary-tint-strong);
    color: white;
    border-color: var(--primary-400);
    outline: none;
}

.cook-mode__step-timer-chip i[b-9bkmrzahek] {
    font-size: 0.85rem;
}

.cook-mode__step--checked .cook-mode__step-timers[b-9bkmrzahek] {
    opacity: 0.5;
}

/* ----- Tombstone state ------------------------------------------------- */

.cook-mode__tombstone[b-9bkmrzahek] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    padding: 3rem 1.5rem;
    background: var(--cook-overlay-lowest);
    border: 1px solid var(--cook-overlay);
    border-radius: var(--radius-lg);
    color: var(--cook-fg-muted);
}

.cook-mode__tombstone-icon[b-9bkmrzahek] {
    font-size: 2.25rem;
    color: var(--cook-fg-faint);
}

.cook-mode__tombstone-title[b-9bkmrzahek] {
    margin: 0;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--cook-fg);
}

.cook-mode__tombstone-hint[b-9bkmrzahek] {
    margin: 0;
    font-size: var(--text-base);
    color: var(--cook-fg-faint);
}
}
/* _content/Forkery.Web/Components/Pages/Home.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

/* ==========================================================================
   Home Page
   ========================================================================== */

.home-hero[b-f8es93wujy] {
    text-align: center;
    padding: var(--space-xl) var(--space);
    margin-bottom: var(--space-xl);
}

.home-hero__icon[b-f8es93wujy] {
    font-size: 3.5rem;
    display: block;
    margin-bottom: var(--space);
    line-height: 1;
}

.home-hero__title[b-f8es93wujy] {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space);
    line-height: 1.2;
    /* Household names can be long and space-free — break them mid-word rather
       than letting one token blow out the page width on narrow screens. */
    overflow-wrap: break-word;
}

@media (min-width: 576px) {
    .home-hero__title[b-f8es93wujy] { font-size: 2.75rem; }
}

.home-hero__subtitle[b-f8es93wujy] {
    font-size: var(--text-lg);
    color: var(--neutral-600);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.home-section-title[b-f8es93wujy] {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--neutral-800);
    margin: 0 0 var(--space-md);
}

.home-actions[b-f8es93wujy] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

@media (min-width: 576px) {
    .home-actions[b-f8es93wujy] { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .home-actions[b-f8es93wujy] { grid-template-columns: repeat(3, 1fr); }
}

.home-action-card[b-f8es93wujy] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-lg);
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.home-action-card:hover[b-f8es93wujy] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-100);
}

.home-action-card__icon[b-f8es93wujy] {
    font-size: 2rem;
    margin-bottom: var(--space);
    line-height: 1;
}

.home-action-card__title[b-f8es93wujy] {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
}

.home-action-card__desc[b-f8es93wujy] {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Onboarding Checklist
   ========================================================================== */

.onboarding-checklist[b-f8es93wujy] {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--space-lg);
    margin: 0 0 var(--space-xl);
}

.onboarding-checklist__header[b-f8es93wujy] {
    margin-bottom: var(--space-lg);
}

.onboarding-checklist__title[b-f8es93wujy] {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0 0 var(--space-xs);
}

.onboarding-checklist__subtitle[b-f8es93wujy] {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    margin: 0 0 var(--space-md);
}

.onboarding-checklist__progress[b-f8es93wujy] {
    height: 6px;
    background: var(--neutral-100);
    border-radius: 999px;
    overflow: hidden;
}

.onboarding-checklist__progress-fill[b-f8es93wujy] {
    height: 100%;
    background: var(--primary-500);
    /* Progress-bar fill — slower than --transition so the growth is legible. */
    transition: width 0.4s ease;
}

.onboarding-checklist__steps[b-f8es93wujy] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.onboarding-step[b-f8es93wujy] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--neutral-50);
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius);
    transition: var(--transition);
}

.onboarding-step--done[b-f8es93wujy] {
    background: var(--secondary-50);
    border-color: var(--secondary-100);
}

.onboarding-step__marker[b-f8es93wujy] {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: white;
    border: 2px solid var(--neutral-300);
    color: var(--neutral-600);
    font-weight: 600;
    font-size: var(--text-md);
}

.onboarding-step--done .onboarding-step__marker[b-f8es93wujy] {
    background: var(--secondary-500);
    border-color: var(--secondary-500);
    color: white;
}

.onboarding-step__body[b-f8es93wujy] {
    flex: 1 1 auto;
    min-width: 0;
}

.onboarding-step__title[b-f8es93wujy] {
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0 0 2px;
}

.onboarding-step--done .onboarding-step__title[b-f8es93wujy] {
    color: var(--neutral-700);
}

.onboarding-step__desc[b-f8es93wujy] {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.5;
}

.onboarding-step__action[b-f8es93wujy] {
    flex: 0 0 auto;
}

@media (max-width: 640px) {
    .onboarding-step[b-f8es93wujy] {
        flex-wrap: wrap;
    }
    .onboarding-step__action[b-f8es93wujy] {
        width: 100%;
        margin-left: calc(36px + var(--space-md));
    }
}

/* ==========================================================================
   Onboarding Complete (all-done state)
   ========================================================================== */

.home-onboarding-complete[b-f8es93wujy] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    margin: 0 0 var(--space-xl);
    background: var(--secondary-50);
    border: 1px solid var(--secondary-100);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.home-onboarding-complete__icon[b-f8es93wujy] {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: white;
    color: var(--secondary-600);
    font-size: var(--text-xl);
}

.home-onboarding-complete__content[b-f8es93wujy] {
    flex: 1 1 auto;
    min-width: 0;
}

.home-onboarding-complete__title[b-f8es93wujy] {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0 0 var(--space-xs);
}

.home-onboarding-complete__text[b-f8es93wujy] {
    font-size: var(--text-sm);
    color: var(--neutral-700);
    margin: 0;
    line-height: 1.5;
}

.home-onboarding-complete__actions[b-f8es93wujy] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex: 0 0 auto;
}

@media (max-width: 640px) {
    .home-onboarding-complete[b-f8es93wujy] {
        flex-direction: column;
        align-items: flex-start;
    }
    .home-onboarding-complete__actions[b-f8es93wujy] {
        width: 100%;
    }
}

/* ==========================================================================
   Hero — slim variant shown post-onboarding so the dashboard gets prime space.
   Elements inside Home.razor are in this scoped CSS file's scope.
   Dashboard sections render via child components; their styles live globally
   in app.css instead (Blazor's per-component CSS scoping doesn't pierce
   child components).
   ========================================================================== */

.home-hero--slim[b-f8es93wujy] {
    padding: var(--space-md) var(--space) var(--space-lg);
    margin-bottom: var(--space-lg);
}

.home-hero--slim .home-hero__title[b-f8es93wujy] {
    font-size: var(--text-2xl);
}

@media (min-width: 576px) {
    .home-hero--slim .home-hero__title[b-f8es93wujy] { font-size: var(--text-2xl); }
}

.home-dashboard[b-f8es93wujy] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

}
/* _content/Forkery.Web/Components/Pages/MealPlan/MealPlanPage.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.meal-plan[b-6j5ep91vyq] {
    padding: var(--space-lg);
}

.meal-plan__header[b-6j5ep91vyq] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space);
    margin-bottom: var(--space-lg);
}

.meal-plan__title[b-6j5ep91vyq] {
    margin: 0 0 var(--space-xs);
    font-size: var(--text-3xl-tight);
    font-weight: 700;
    color: var(--neutral-900);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.meal-plan__title i[b-6j5ep91vyq] {
    color: var(--primary-500);
}

.meal-plan__subtitle[b-6j5ep91vyq] {
    margin: 0;
    color: var(--neutral-500);
    font-size: var(--text-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.meal-plan__readonly-badge[b-6j5ep91vyq] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px var(--space-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--neutral-700);
    background: var(--neutral-100);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.meal-plan__banner[b-6j5ep91vyq] {
    display: flex;
    align-items: center;
    gap: var(--space);
    padding: var(--space) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
}

.meal-plan__banner-icon[b-6j5ep91vyq] {
    font-size: var(--text-xl);
    color: var(--primary-500);
}

.meal-plan__banner-body[b-6j5ep91vyq] {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: var(--neutral-800);
}

.meal-plan__banner-body strong[b-6j5ep91vyq] {
    font-weight: 600;
}

.meal-plan__banner-actions[b-6j5ep91vyq] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.meal-plan__banner-dismiss[b-6j5ep91vyq] {
    all: unset;
    cursor: pointer;
    padding: var(--space-xs) var(--space-sm);
    color: var(--neutral-500);
    border-radius: var(--radius-sm);
}

.meal-plan__banner-dismiss:hover[b-6j5ep91vyq] {
    background: var(--neutral-100);
    color: var(--neutral-900);
}

/* On phones the body text + wide action button can't share a row without each
   wrapping one word per line — stack the banner and align the icon with the
   text. */
@media (max-width: 640px) {
    .meal-plan__banner[b-6j5ep91vyq] {
        flex-wrap: wrap;
        align-items: flex-start;
        padding: var(--space);
    }

    .meal-plan__banner-body[b-6j5ep91vyq] {
        flex: 1 1 100%;
    }

    .meal-plan__banner-actions[b-6j5ep91vyq] {
        flex: 1 1 100%;
        justify-content: space-between;
    }
}

.meal-plan__week-nav[b-6j5ep91vyq] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space);
    flex-wrap: wrap;
}

.meal-plan__week-label[b-6j5ep91vyq] {
    margin-left: var(--space);
    font-weight: 600;
    color: var(--neutral-800);
}

.meal-plan__calendar-filters[b-6j5ep91vyq] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space);
    flex-wrap: wrap;
    padding: var(--space-xs) 0;
}

.meal-plan__calendar-filters-label[b-6j5ep91vyq] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-xs);
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.meal-plan__calendar-chip[b-6j5ep91vyq] {
    all: unset;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: var(--text-xs);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--neutral-200);
}

.meal-plan__calendar-chip--on[b-6j5ep91vyq] {
    background: var(--primary-50);
    color: var(--primary-700);
    border-color: var(--primary-100);
}

.meal-plan__calendar-chip--off[b-6j5ep91vyq] {
    background: var(--neutral-100);
    color: var(--neutral-500);
    text-decoration: line-through;
    opacity: 0.7;
}

.meal-plan__calendar-chip:hover[b-6j5ep91vyq] {
    filter: brightness(0.97);
}

.meal-plan__calendar-chip:focus-visible[b-6j5ep91vyq] {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

.meal-plan__calendar-chip-state[b-6j5ep91vyq] {
    font-size: 0.7em;
    opacity: 0.8;
}

.meal-plan__calendar-sync-btn[b-6j5ep91vyq] {
    margin-left: auto;
}

.meal-plan__error[b-6j5ep91vyq] {
    margin-bottom: var(--space);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space);
}

.meal-plan__loading[b-6j5ep91vyq] {
    margin-top: var(--space);
}

.meal-plan__loading-grid[b-6j5ep91vyq] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-sm);
}

.meal-plan__skeleton[b-6j5ep91vyq] {
    height: 120px;
    border-radius: var(--radius-md);
}

@media (max-width: 767.98px) {
    .meal-plan__loading-grid[b-6j5ep91vyq] {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Weekly grid — desktop
   ========================================================= */

.meal-plan__grid[b-6j5ep91vyq] {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: var(--space-sm);
    align-items: start;
    position: relative;
}

.meal-plan__slot-legend[b-6j5ep91vyq] {
    display: none;
}

.meal-plan__day-column[b-6j5ep91vyq] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    min-width: 0;
    /* Overflow stays visible so kebab menus on the cards (which extend leftward
       beyond the card's bounds) aren't clipped by the column. A previous
       version capped column height with overflow-y: auto for alignment on
       very busy weeks, but that forced overflow-x to clip and chewed off
       the left edge of every meal-card menu. */
}

.meal-plan__day-header[b-6j5ep91vyq] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: var(--space-xs) var(--space-sm);
    background: var(--neutral-100);
    border-radius: var(--radius-sm);
    text-align: center;
}

.meal-plan__day-name[b-6j5ep91vyq] {
    font-weight: 700;
    color: var(--neutral-900);
    font-size: var(--text-sm);
}

.meal-plan__day-date[b-6j5ep91vyq] {
    font-size: var(--text-xs);
    color: var(--neutral-500);
}

.meal-plan__cell[b-6j5ep91vyq] {
    min-width: 0;
}

/* =========================================================
   Responsive breakpoint: FR-012
   Single-day mobile view < 768px; desktop grid ≥ 768px.
   ========================================================= */

.meal-plan__mobile[b-6j5ep91vyq] {
    display: none;
}

@media (max-width: 767.98px) {
    .meal-plan__grid[b-6j5ep91vyq] {
        display: none;
    }
    .meal-plan__mobile[b-6j5ep91vyq] {
        display: flex;
        flex-direction: column;
        gap: var(--space);
    }
}

.meal-plan__day-picker[b-6j5ep91vyq] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-xs);
}

.meal-plan__day-picker-btn[b-6j5ep91vyq] {
    all: unset;
    cursor: pointer;
    text-align: center;
    padding: var(--space-sm) var(--space-xs);
    border-radius: var(--radius-sm);
    background: var(--neutral-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-height: 44px;
}

.meal-plan__day-picker-btn:hover[b-6j5ep91vyq] {
    background: var(--neutral-200);
}

.meal-plan__day-picker-btn--active[b-6j5ep91vyq] {
    background: var(--primary-500);
    color: #fff;
}

.meal-plan__day-picker-btn--active:hover[b-6j5ep91vyq] {
    background: var(--primary-600);
}

.meal-plan__day-picker-name[b-6j5ep91vyq] {
    font-size: var(--text-xs);
    font-weight: 600;
}

.meal-plan__day-picker-date[b-6j5ep91vyq] {
    font-size: var(--text-sm);
    font-weight: 700;
}

.meal-plan__mobile-stack[b-6j5ep91vyq] {
    display: flex;
    flex-direction: column;
    gap: var(--space);
}

/* =========================================================
   Move-picker dialog
   ========================================================= */

.meal-plan__move-backdrop[b-6j5ep91vyq] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.meal-plan__move-picker[b-6j5ep91vyq] {
    background: white;
    border-radius: var(--radius-lg);
    width: min(900px, 100%);
    max-height: min(720px, calc(100vh - 48px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.meal-plan__plan-meal-picker[b-6j5ep91vyq] {
    width: min(420px, 100%);
}

.meal-plan__plan-meal-options[b-6j5ep91vyq] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-lg);
}

.meal-plan__plan-meal-option[b-6j5ep91vyq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: white;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    color: var(--neutral-900);
    font-size: var(--text-base);
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.meal-plan__plan-meal-option:hover[b-6j5ep91vyq] {
    background: var(--primary-50);
    border-color: var(--primary-300);
    color: var(--primary-700);
}

.meal-plan__plan-meal-option--hidden .meal-plan__plan-meal-option-name[b-6j5ep91vyq] {
    color: var(--neutral-600);
}

.meal-plan__plan-meal-option-tag[b-6j5ep91vyq] {
    font-size: var(--text-xs);
    font-weight: 500;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    background: var(--neutral-200);
    color: var(--neutral-700);
}

.meal-plan__move-header[b-6j5ep91vyq] {
    position: relative;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--neutral-200);
}

.meal-plan__move-header h2[b-6j5ep91vyq] {
    margin: 0 0 var(--space-xs);
    font-size: var(--text-xl);
    color: var(--neutral-900);
}

.meal-plan__move-header p[b-6j5ep91vyq] {
    margin: 0;
    color: var(--neutral-500);
    font-size: var(--text-sm);
}

.meal-plan__move-close[b-6j5ep91vyq] {
    all: unset;
    position: absolute;
    top: var(--space);
    right: var(--space);
    cursor: pointer;
    padding: var(--space-xs) var(--space-sm);
    color: var(--neutral-500);
    border-radius: var(--radius-sm);
}

.meal-plan__move-close:hover[b-6j5ep91vyq] {
    background: var(--neutral-100);
}

.meal-plan__move-grid[b-6j5ep91vyq] {
    flex: 1;
    overflow: auto;
    padding: var(--space-lg);
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: var(--space-sm);
}

@media (max-width: 767.98px) {
    .meal-plan__move-grid[b-6j5ep91vyq] {
        grid-template-columns: 1fr;
    }
}

.meal-plan__move-col[b-6j5ep91vyq] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.meal-plan__move-col-header[b-6j5ep91vyq] {
    font-weight: 700;
    font-size: var(--text-xs);
    text-align: center;
    padding: var(--space-xs);
    background: var(--neutral-100);
    border-radius: var(--radius-sm);
}

.meal-plan__move-cell[b-6j5ep91vyq] {
    all: unset;
    cursor: pointer;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    padding: var(--space-xs) var(--space-sm);
    min-height: 56px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: white;
    transition: var(--transition);
}

.meal-plan__move-cell:hover:not(:disabled)[b-6j5ep91vyq] {
    border-color: var(--primary-400);
    box-shadow: 0 2px 8px rgba(47, 128, 237, 0.15);
}

.meal-plan__move-cell--source[b-6j5ep91vyq] {
    opacity: 0.5;
    cursor: not-allowed;
    border-style: dashed;
}

.meal-plan__move-cell--empty[b-6j5ep91vyq] {
    background: var(--neutral-50);
    border-style: dashed;
}

.meal-plan__move-cell-slot[b-6j5ep91vyq] {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    text-transform: uppercase;
    font-weight: 600;
}

.meal-plan__move-cell-title[b-6j5ep91vyq] {
    font-size: var(--text-xs);
    color: var(--neutral-800);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.meal-plan__day-header-actions[b-6j5ep91vyq] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 2px;
}

.meal-plan__day-add-event[b-6j5ep91vyq] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0.5rem;
    background: transparent;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    color: var(--neutral-700);
    font-size: var(--text-xs);
    font-weight: 500;
    cursor: pointer;
}

.meal-plan__day-add-event:hover[b-6j5ep91vyq] {
    background: var(--primary-50);
    border-color: var(--primary-300);
    color: var(--primary-700);
}

.meal-plan__mobile-events[b-6j5ep91vyq] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

}
/* _content/Forkery.Web/Components/Pages/RecipeCatalogue.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

/* =====================================================
   RECIPE CATALOGUE PAGE
   ===================================================== */

.recipe-catalogue[b-uzoo1zmqek] {
    padding: var(--space-lg);
}

.recipe-catalogue__header[b-uzoo1zmqek] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    gap: var(--space);
}

.recipe-catalogue__header-content[b-uzoo1zmqek] {
    min-width: 0;
}

.recipe-catalogue__title[b-uzoo1zmqek] {
    font-size: var(--text-3xl-tight);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.recipe-catalogue__title i[b-uzoo1zmqek] {
    color: var(--primary-500);
}

.recipe-catalogue__subtitle[b-uzoo1zmqek] {
    color: var(--neutral-500);
    margin: 0;
    font-size: var(--text-md);
}

.recipe-catalogue__actions[b-uzoo1zmqek] {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

/* On phones the title + action buttons can't share a row without crushing the
   title to one word per line — stack them and let the buttons share the width. */
@media (max-width: 640px) {
    .recipe-catalogue__header[b-uzoo1zmqek] {
        flex-direction: column;
        align-items: stretch;
    }

    .recipe-catalogue__actions[b-uzoo1zmqek] {
        flex-wrap: wrap;
    }

    .recipe-catalogue__actions > *[b-uzoo1zmqek] {
        flex: 1 1 auto;
    }
}

.recipe-catalogue__layout[b-uzoo1zmqek] {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.recipe-catalogue__sidebar[b-uzoo1zmqek] {
    position: sticky;
    top: calc(var(--topnav-height, 64px) + var(--space));
}

@media (max-width: 992px) {
    .recipe-catalogue__layout[b-uzoo1zmqek] {
        grid-template-columns: 1fr;
    }

    /* Single column: the filters stack above the grid, so sticky would pin
       them to the top and let the recipe cards scroll up over them. Make the
       sidebar a normal block that scrolls away with the page. */
    .recipe-catalogue__sidebar[b-uzoo1zmqek] {
        position: static;
    }
}

.recipe-catalogue__main[b-uzoo1zmqek] {
    min-width: 0;
}

/* Filters collapse toggle — desktop hides it (filters always visible). */
.recipe-catalogue__filters-toggle[b-uzoo1zmqek] {
    display: none;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-sm) var(--space);
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    color: var(--neutral-800);
    font-size: var(--text-md);
    font-weight: 600;
    cursor: pointer;
}

.recipe-catalogue__filters-count[b-uzoo1zmqek] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 var(--space-xs);
    border-radius: 999px;
    background: var(--primary-500);
    color: white;
    font-size: var(--text-sm);
    font-weight: 600;
}

.recipe-catalogue__filters-caret[b-uzoo1zmqek] {
    margin-left: auto;
    color: var(--neutral-500);
}

@media (max-width: 992px) {
    .recipe-catalogue__filters-toggle[b-uzoo1zmqek] {
        display: flex;
    }

    /* Collapsed by default on mobile; the --open modifier reveals the panel. */
    .recipe-catalogue__filters-panel[b-uzoo1zmqek] {
        display: none;
        margin-top: var(--space-sm);
    }

    .recipe-catalogue__filters-panel--open[b-uzoo1zmqek] {
        display: block;
    }
}

.recipe-catalogue__results-header[b-uzoo1zmqek] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    gap: var(--space);
}

.recipe-catalogue__results-count[b-uzoo1zmqek] {
    font-size: var(--text-md);
    color: var(--neutral-600);
}

.recipe-catalogue__sort[b-uzoo1zmqek] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.recipe-catalogue__sort-label[b-uzoo1zmqek] {
    font-size: var(--text-md);
    color: var(--neutral-600);
    white-space: nowrap;
}

.recipe-catalogue__sort-select[b-uzoo1zmqek] {
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-sm);
    background: white;
    color: var(--neutral-700);
    transition: var(--transition);
    min-height: 36px;
}

.recipe-catalogue__sort-select:focus[b-uzoo1zmqek] {
    outline: none;
    border-color: var(--primary-400);
    box-shadow: var(--focus-ring);
}

.recipe-catalogue__grid[b-uzoo1zmqek] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.recipe-catalogue__loading-grid[b-uzoo1zmqek] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

.recipe-catalogue__skeleton-card[b-uzoo1zmqek] {
    height: 380px;
    border-radius: var(--radius-lg);
}

/* Catalogue-specific icon override — bigger and lighter than the default empty-state icon */
.recipe-catalogue__empty-icon[b-uzoo1zmqek] {
    font-size: 4rem;
    color: var(--neutral-300);
    display: block;
}

.recipe-catalogue__error[b-uzoo1zmqek] {
    text-align: center;
    padding: var(--space-xl);
}

.recipe-catalogue__error-text[b-uzoo1zmqek] {
    color: var(--accent-600);
    margin-bottom: var(--space);
}

.recipe-catalogue__pagination[b-uzoo1zmqek] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--neutral-200);
}

.recipe-catalogue__page-btn[b-uzoo1zmqek],
.recipe-catalogue__page-num[b-uzoo1zmqek] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-sm);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    background: white;
    color: var(--neutral-600);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.recipe-catalogue__page-btn:hover:not(:disabled)[b-uzoo1zmqek],
.recipe-catalogue__page-num:hover[b-uzoo1zmqek] {
    color: var(--primary-600);
    background: var(--primary-50);
    border-color: var(--primary-300);
}

.recipe-catalogue__page-btn:disabled[b-uzoo1zmqek] {
    opacity: 0.4;
    cursor: not-allowed;
}

.recipe-catalogue__page-num--active[b-uzoo1zmqek] {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
}

.recipe-catalogue__page-ellipsis[b-uzoo1zmqek] {
    color: var(--neutral-400);
    padding: 0 var(--space-xs);
    line-height: 40px;
}

}
/* _content/Forkery.Web/Components/Pages/RecipeDetail.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

/* --- Recipe Detail --- */
.recipe-detail[b-c03gt48rlo] {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero with image overlay */
.recipe-detail__hero[b-c03gt48rlo] {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.recipe-detail__hero-image[b-c03gt48rlo] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-detail__hero-placeholder[b-c03gt48rlo] {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-400);
}

.recipe-detail__hero-overlay[b-c03gt48rlo] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: var(--space-xl) var(--space-md) var(--space-md);
    color: white;
}

.recipe-detail__hero-title[b-c03gt48rlo] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 var(--space-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.recipe-detail__hero-subtitle[b-c03gt48rlo] {
    font-size: var(--text-lg);
    margin: 0;
    opacity: 0.9;
}

.recipe-detail__hero-actions[b-c03gt48rlo] {
    position: absolute;
    top: var(--space);
    right: var(--space);
    display: flex;
    gap: var(--space-sm);
}

.recipe-detail__action-btn[b-c03gt48rlo] {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: var(--neutral-700);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-decoration: none;
    font-size: var(--text-lg);
    cursor: pointer;
}

.recipe-detail__action-btn:hover[b-c03gt48rlo] {
    background: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-600);
}

/* Cook now — primary action sitting next to the icon action chips in the hero.
   Kept pill-shaped and prominent so it stands out as the "enter cook mode" CTA. */
.recipe-detail__cook-now-btn[b-c03gt48rlo] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 var(--space);
    height: 48px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

} /* end @layer components */

/* Favourite button inside hero action area (child component).
   Lives in @layer overrides so it always wins over FavouriteButton's
   own scoped styles regardless of selector specificity. */
@layer overrides {
    .recipe-detail__hero-actions[b-c03gt48rlo]  .favourite-button {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        box-shadow: var(--shadow);
        font-size: var(--text-xl);
        color: var(--neutral-700);
        padding: 0;
        min-width: 48px;
        min-height: 48px;
        overflow: hidden;
    }

    .recipe-detail__hero-actions[b-c03gt48rlo]  .favourite-button:hover {
        background: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
        color: var(--primary-600);
    }

    .recipe-detail__hero-actions[b-c03gt48rlo]  .favourite-button--active {
        background: var(--accent-500);
        color: white;
    }

    .recipe-detail__hero-actions[b-c03gt48rlo]  .favourite-button--active:hover {
        background: var(--accent-600);
        color: white;
    }
}

@layer components {

/* Recipe Meta Bar */
.recipe-detail__meta[b-c03gt48rlo] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--space);
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow);
    margin-bottom: var(--space-lg);
}

.recipe-detail__meta-item[b-c03gt48rlo] {
    text-align: center;
    padding: var(--space-sm);
}

.recipe-detail__meta-icon[b-c03gt48rlo] {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    font-size: var(--text-lg);
    color: white;
}

.recipe-detail__meta-icon--time[b-c03gt48rlo] {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-400) 100%);
}

.recipe-detail__meta-icon--servings[b-c03gt48rlo] {
    background: linear-gradient(135deg, var(--secondary-500) 0%, var(--secondary-400) 100%);
}

.recipe-detail__meta-icon--difficulty[b-c03gt48rlo] {
    background: linear-gradient(135deg, var(--warning-500) 0%, var(--warning-400) 100%);
}

.recipe-detail__meta-icon--calories[b-c03gt48rlo] {
    background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-400) 100%);
}

.recipe-detail__meta-value[b-c03gt48rlo] {
    font-weight: 600;
    color: var(--neutral-800);
    font-size: var(--text-lg);
    margin: 0;
}

.recipe-detail__meta-label[b-c03gt48rlo] {
    color: var(--neutral-500);
    font-size: var(--text-sm);
    margin: var(--space-xs) 0 0;
}

/* Tags - uses shared .badge system */
.recipe-detail__tags[b-c03gt48rlo] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

/* Rating section (sidebar) */
.recipe-detail__rating-section[b-c03gt48rlo] {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
    text-align: center;
}

/* Two-column layout */
.recipe-detail__columns[b-c03gt48rlo] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 992px) {
    .recipe-detail__columns[b-c03gt48rlo] {
        grid-template-columns: 2fr 1fr;
    }
}

/* Ingredients Card */
.recipe-detail__ingredients-card[b-c03gt48rlo] {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: var(--space-lg);
    overflow: hidden;
}

.recipe-detail__ingredients-header[b-c03gt48rlo] {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    border-bottom: 1px solid var(--primary-200);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space);
}

.recipe-detail__ingredients-title[b-c03gt48rlo] {
    font-weight: 600;
    color: var(--primary-800);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-xl);
}

.recipe-detail__serving-adjuster[b-c03gt48rlo] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: white;
    border-radius: var(--radius);
    padding: var(--space-sm);
    box-shadow: var(--shadow-sm);
}

.recipe-detail__serving-btn[b-c03gt48rlo] {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: var(--primary-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: var(--text-base);
    font-weight: 600;
    line-height: 1;
}

.recipe-detail__serving-btn:hover:not(:disabled)[b-c03gt48rlo] {
    background: var(--primary-600);
    transform: scale(1.1);
}

.recipe-detail__serving-btn:disabled[b-c03gt48rlo] {
    opacity: 0.4;
    cursor: not-allowed;
}

.recipe-detail__serving-count[b-c03gt48rlo] {
    font-weight: 600;
    color: var(--primary-700);
    min-width: 40px;
    text-align: center;
}

.recipe-detail__ingredients-list[b-c03gt48rlo] {
    padding: var(--space-md);
}

.recipe-detail__ingredient-item[b-c03gt48rlo] {
    display: flex;
    align-items: center;
    gap: var(--space);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--neutral-100);
    transition: var(--transition);
}

.recipe-detail__ingredient-item:last-child[b-c03gt48rlo] {
    border-bottom: none;
}

.recipe-detail__ingredient-item:hover[b-c03gt48rlo] {
    background: var(--neutral-50);
    border-radius: var(--radius);
    margin: 0 calc(-1 * var(--space-sm));
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
}

.recipe-detail__ingredient-checkbox[b-c03gt48rlo] {
    width: 18px;
    height: 18px;
    accent-color: var(--secondary-500);
    cursor: pointer;
    flex-shrink: 0;
}

.recipe-detail__ingredient-text[b-c03gt48rlo] {
    flex: 1;
    color: var(--neutral-800);
    font-size: var(--text-sm);
    margin: 0;
}

.recipe-detail__ingredient-name[b-c03gt48rlo] {
    color: var(--neutral-900);
}

.recipe-detail__ingredient-note[b-c03gt48rlo] {
    display: block;
    color: var(--neutral-500);
    font-style: italic;
    font-size: var(--text-xs);
    margin-top: 0.125rem;
}

.recipe-detail__ingredient-amount[b-c03gt48rlo] {
    font-weight: 600;
    color: var(--primary-600);
    font-size: var(--text-sm);
    white-space: nowrap;
}

.recipe-detail__ingredient-item--checked .recipe-detail__ingredient-text[b-c03gt48rlo] {
    text-decoration: line-through;
    color: var(--neutral-400);
}

.recipe-detail__ingredient-item--checked .recipe-detail__ingredient-amount[b-c03gt48rlo] {
    text-decoration: line-through;
    color: var(--neutral-400);
}

/* Instructions Card */
.recipe-detail__instructions-card[b-c03gt48rlo] {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: var(--space-lg);
    overflow: hidden;
}

.recipe-detail__instructions-header[b-c03gt48rlo] {
    background: linear-gradient(135deg, var(--warning-50) 0%, var(--warning-100) 100%);
    border-bottom: 1px solid var(--warning-200);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: var(--space-md);
}

.recipe-detail__instructions-title[b-c03gt48rlo] {
    font-weight: 600;
    color: var(--warning-800);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-xl);
}

.recipe-detail__instructions-list[b-c03gt48rlo] {
    padding: var(--space-md);
}

.recipe-detail__instruction-step[b-c03gt48rlo] {
    display: flex;
    gap: var(--space);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--neutral-100);
}

.recipe-detail__instruction-step:last-child[b-c03gt48rlo] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recipe-detail__step-number[b-c03gt48rlo] {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--warning-500) 0%, var(--warning-400) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--text-sm);
    flex-shrink: 0;
}

.recipe-detail__step-content[b-c03gt48rlo] {
    flex: 1;
}

.recipe-detail__step-text[b-c03gt48rlo] {
    color: var(--neutral-800);
    line-height: 1.6;
    margin: 0;
}

/* Nutrition Card (sidebar) */
.recipe-detail__nutrition-card[b-c03gt48rlo] {
    background: linear-gradient(135deg, var(--secondary-50) 0%, var(--secondary-100) 100%);
    border: 1px solid var(--secondary-200);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}

.recipe-detail__nutrition-title[b-c03gt48rlo] {
    font-weight: 600;
    color: var(--secondary-800);
    margin: 0 0 var(--space);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-lg);
}

.recipe-detail__nutrition-grid[b-c03gt48rlo] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--space);
}

.recipe-detail__nutrition-item[b-c03gt48rlo] {
    text-align: center;
    background: white;
    border-radius: var(--radius);
    padding: var(--space);
    box-shadow: var(--shadow-sm);
}

.recipe-detail__nutrition-value[b-c03gt48rlo] {
    font-weight: 600;
    color: var(--secondary-700);
    font-size: var(--text-xl);
    margin: 0;
}

.recipe-detail__nutrition-label[b-c03gt48rlo] {
    color: var(--neutral-600);
    font-size: var(--text-xs);
    margin: var(--space-xs) 0 0;
}

/* Sidebar actions */
.recipe-detail__sidebar-actions[b-c03gt48rlo] {
    display: grid;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.recipe-detail__sidebar-btn[b-c03gt48rlo] {
    width: 100%;
}

/* Source URL */
.recipe-detail__source[b-c03gt48rlo] {
    background: var(--neutral-50);
    border-radius: var(--radius);
    padding: var(--space);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
}

.recipe-detail__source-label[b-c03gt48rlo] {
    font-weight: 600;
    color: var(--neutral-700);
    margin-right: var(--space-xs);
}

.recipe-detail__source-link[b-c03gt48rlo] {
    color: var(--primary-600);
    text-decoration: none;
    word-break: break-all;
}

.recipe-detail__source-link:hover[b-c03gt48rlo] {
    color: var(--primary-500);
    text-decoration: underline;
}

/* Notes Card */
.recipe-detail__notes-card[b-c03gt48rlo] {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: var(--space-lg);
    overflow: hidden;
}

.recipe-detail__notes-header[b-c03gt48rlo] {
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
    border-bottom: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recipe-detail__notes-title[b-c03gt48rlo] {
    font-weight: 600;
    color: var(--neutral-800);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-xl);
}

.recipe-detail__notes-body[b-c03gt48rlo] {
    padding: var(--space-md);
}

.recipe-detail__note-form[b-c03gt48rlo] {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    padding: var(--space);
    margin-bottom: var(--space);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.recipe-detail__note-form .form__group[b-c03gt48rlo] {
    margin-bottom: 0;
}

.recipe-detail__note-form-footer[b-c03gt48rlo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.recipe-detail__note-form-actions[b-c03gt48rlo] {
    display: flex;
    gap: var(--space-sm);
}

.recipe-detail__note-public-toggle[b-c03gt48rlo] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--neutral-600);
    cursor: pointer;
    user-select: none;
}

.recipe-detail__note-item[b-c03gt48rlo] {
    padding: var(--space) 0;
    border-bottom: 1px solid var(--neutral-100);
}

.recipe-detail__note-item:last-child[b-c03gt48rlo] {
    border-bottom: none;
}

.recipe-detail__note-item-title[b-c03gt48rlo] {
    font-weight: 600;
    color: var(--neutral-800);
    font-size: var(--text-md);
    margin: 0 0 var(--space-xs);
}

.recipe-detail__note-item-content[b-c03gt48rlo] {
    color: var(--neutral-700);
    font-size: var(--text-md);
    line-height: 1.6;
    margin: 0 0 var(--space-sm);
    white-space: pre-wrap;
}

.recipe-detail__note-item-footer[b-c03gt48rlo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.recipe-detail__note-item-meta[b-c03gt48rlo] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.recipe-detail__note-item-date[b-c03gt48rlo] {
    font-size: var(--text-xs);
    color: var(--neutral-400);
}

.recipe-detail__note-public-badge[b-c03gt48rlo] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--secondary-700);
    background: var(--secondary-50);
    border: 1px solid var(--secondary-200);
    border-radius: 9999px;
    padding: 0.1rem 0.5rem;
}

.recipe-detail__note-item-actions[b-c03gt48rlo] {
    display: flex;
    gap: var(--space-xs);
}

.recipe-detail__note-delete-btn[b-c03gt48rlo] {
    color: var(--accent-500);
}

.recipe-detail__note-delete-btn:hover[b-c03gt48rlo] {
    background: var(--accent-50);
    color: var(--accent-600);
}

/* Empty section */
.recipe-detail__empty-section[b-c03gt48rlo] {
    color: var(--neutral-500);
    font-size: var(--text-md);
    padding: var(--space);
    text-align: center;
}

/* Ingredient / instruction section heading — groups content like
   "For the sauce" or "Before cooking" above the list items. First heading
   sits flush with the list top; subsequent ones get some breathing room so
   the grouping reads as separate blocks. */
.recipe-detail__section-heading[b-c03gt48rlo] {
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--neutral-700);
    margin: var(--space) 0 var(--space-sm) 0;
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--neutral-100);
}

.recipe-detail__section-heading:first-child[b-c03gt48rlo] {
    margin-top: 0;
}

/* Loading & Not Found */
.recipe-detail__loading[b-c03gt48rlo] {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-lg) 0;
}

.recipe-detail__skeleton-hero[b-c03gt48rlo] {
    height: 400px;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.recipe-detail__skeleton-content[b-c03gt48rlo] {
    padding: var(--space);
}

.recipe-detail__skeleton-title[b-c03gt48rlo] {
    height: 2rem;
    width: 60%;
    margin-bottom: var(--space);
}

.recipe-detail__skeleton-text[b-c03gt48rlo] {
    height: 1rem;
    width: 100%;
    margin-bottom: var(--space-sm);
}

.recipe-detail__not-found[b-c03gt48rlo] {
    text-align: center;
    padding: var(--space-xl) var(--space);
}

.recipe-detail__not-found-icon[b-c03gt48rlo] {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space);
}

.recipe-detail__not-found-title[b-c03gt48rlo] {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--neutral-800);
    margin: 0 0 var(--space-sm);
}

.recipe-detail__not-found-text[b-c03gt48rlo] {
    color: var(--neutral-500);
    margin: 0 0 var(--space-lg);
}

/* Delete Modal */
/* Responsive: hero height */
@media (max-width: 768px) {
    .recipe-detail__hero[b-c03gt48rlo] {
        height: 300px;
    }

    .recipe-detail__hero-title[b-c03gt48rlo] {
        font-size: 2rem;
    }

    .recipe-detail__meta[b-c03gt48rlo] {
        grid-template-columns: repeat(2, 1fr);
    }

    .recipe-detail__nutrition-grid[b-c03gt48rlo] {
        grid-template-columns: repeat(2, 1fr);
    }

    .recipe-detail__ingredients-header[b-c03gt48rlo] {
        flex-direction: column;
        text-align: center;
    }
}

/* ---- Publish / fork attribution additions ---- */

.recipe-detail__forked-badge[b-c03gt48rlo] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 2px var(--space-sm);
    margin-bottom: var(--space-xs);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
    text-decoration: none;
    backdrop-filter: blur(4px);
    width: max-content;
}

.recipe-detail__forked-badge:hover[b-c03gt48rlo] {
    background: rgba(255, 255, 255, 0.3);
}

.recipe-detail__upstream-badge[b-c03gt48rlo] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 2px var(--space-sm);
    margin-bottom: var(--space-xs);
    background: rgba(251, 191, 36, 0.25);
    color: white;
    border: 1px solid rgba(251, 191, 36, 0.6);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
    width: max-content;
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.recipe-detail__upstream-badge:hover[b-c03gt48rlo] {
    background: rgba(251, 191, 36, 0.4);
}

.recipe-detail__publish-toast[b-c03gt48rlo] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--secondary-200);
    background: var(--secondary-50);
    color: var(--secondary-700);
    border-radius: var(--radius);
    font-size: var(--text-xs);
}

.recipe-detail__publish-up-to-date[b-c03gt48rlo] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);
    background: var(--neutral-50);
    color: var(--secondary-700);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    font-weight: 500;
}

.recipe-detail__published-link[b-c03gt48rlo] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-xs);
    color: var(--neutral-500);
    text-decoration: none;
    padding: var(--space-xs) 0;
}

.recipe-detail__published-link:hover[b-c03gt48rlo] {
    color: var(--primary-600);
}

/* Polish-mode chooser — two card-buttons inside the chooser modal. Two-up
   on desktop, stacked on narrow viewports. Mirrors the look of the recipe
   action buttons (subtle border, primary tint on hover) so the chooser
   feels like an extension of the page rather than an alien dialog. */
.polish-mode-chooser[b-c03gt48rlo] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space);
}

@media (min-width: 576px) {
    .polish-mode-chooser[b-c03gt48rlo] {
        grid-template-columns: 1fr 1fr;
    }
}

.polish-mode-chooser__card[b-c03gt48rlo] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
    padding: var(--space);
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    cursor: pointer;
    text-align: left;
    color: var(--neutral-800);
    transition: var(--transition);
}

.polish-mode-chooser__card:hover[b-c03gt48rlo],
.polish-mode-chooser__card:focus-visible[b-c03gt48rlo] {
    border-color: var(--primary-400);
    background: var(--primary-50);
    color: var(--primary-800);
}

.polish-mode-chooser__icon[b-c03gt48rlo] {
    font-size: 1.5rem;
    color: var(--primary-500);
}

.polish-mode-chooser__title[b-c03gt48rlo] {
    font-weight: 600;
    font-size: var(--text-md);
    color: var(--neutral-900);
}

.polish-mode-chooser__hint[b-c03gt48rlo] {
    font-size: var(--text-sm);
    color: var(--neutral-500);
    line-height: 1.4;
}

} /* end @layer components */
/* _content/Forkery.Web/Components/Pages/RecipeEditor.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

    /* Constrain the form to a comfortable reading width — long single-column
       forms feel stretched at the full container width. */
    .recipe-editor[b-bwttgwr29p] {
        max-width: 880px;
        margin: 0 auto;
    }

    .recipe-editor__title[b-bwttgwr29p] {
        font-size: var(--text-3xl);
        font-weight: 700;
        color: var(--neutral-900);
        margin: 0 0 var(--space-lg);
        line-height: 1.2;
    }

    /* Fieldset rendered as a clean card. The float trick on the legend pulls
       it out of the default browser "in the border" placement so it reads as
       a normal block-level heading. */
    .recipe-editor__fieldset[b-bwttgwr29p] {
        position: relative;
        background: white;
        border: 1px solid var(--neutral-200);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        padding: var(--space-lg);
        margin: 0 0 var(--space-lg) 0;
        min-width: 0;
    }

    .recipe-editor__fieldset > legend[b-bwttgwr29p] {
        float: left;
        width: 100%;
        padding: 0 0 var(--space-sm) 0;
        margin: 0 0 var(--space-md) 0;
        border-bottom: 1px solid var(--neutral-200);
        font-size: var(--text-lg);
        font-weight: 600;
        color: var(--neutral-900);
    }

    /* Clear the float so the first real child wraps below the legend rather
       than next to it. */
    .recipe-editor__fieldset > legend + *[b-bwttgwr29p] {
        clear: left;
    }

    /* The form section's last form group shouldn't add bottom margin since the
       fieldset itself owns the bottom spacing. */
    .recipe-editor__fieldset > :last-child[b-bwttgwr29p] {
        margin-bottom: 0;
    }

    /* Description text inside a fieldset (e.g. "When can I serve this?"). */
    .recipe-editor__fieldset > .text--muted[b-bwttgwr29p] {
        margin: 0 0 var(--space) 0;
        font-size: var(--text-sm);
    }

    /* Ingredient and instruction rows: flex with fields + remove button */
    .recipe-editor__ingredient-row[b-bwttgwr29p],
    .recipe-editor__instruction-row[b-bwttgwr29p] {
        display: flex;
        align-items: flex-start;
        gap: var(--space-sm);
        margin-bottom: var(--space);
    }

    /* Ingredient fields: name, quantity, unit, notes */
    .recipe-editor__ingredient-fields[b-bwttgwr29p] {
        flex: 1;
        display: grid;
        gap: var(--space-sm);
        grid-template-columns: 1fr;
    }

    @media (min-width: 576px) {
        .recipe-editor__ingredient-fields[b-bwttgwr29p] {
            grid-template-columns: 2fr 1fr 1fr 2fr;
        }
    }

    .recipe-editor__instruction-field[b-bwttgwr29p] {
        flex: 1;
    }

    .recipe-editor__instruction-number[b-bwttgwr29p] {
        font-weight: 600;
        color: var(--primary-600);
        min-width: 2rem;
        padding-top: var(--space-sm);
    }

    /* Meal-slot toggles: pill-shaped chips that flip to primary fill when on. */
    .recipe-editor__slots-grid[b-bwttgwr29p] {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

    .recipe-editor__slot-checkbox[b-bwttgwr29p],
    .recipe-editor__tag-checkbox[b-bwttgwr29p] {
        display: inline-flex;
        align-items: center;
        gap: var(--space-xs);
        padding: var(--space-xs) var(--space);
        border: 1px solid var(--neutral-300);
        border-radius: 999px;
        background: white;
        color: var(--neutral-700);
        font-size: var(--text-sm);
        cursor: pointer;
        user-select: none;
        transition: var(--transition);
        min-height: 36px;
    }

    .recipe-editor__slot-checkbox:hover[b-bwttgwr29p],
    .recipe-editor__tag-checkbox:hover[b-bwttgwr29p] {
        border-color: var(--primary-400);
        color: var(--primary-700);
        background: var(--primary-50);
    }

    .recipe-editor__slot-checkbox:has(input:checked)[b-bwttgwr29p],
    .recipe-editor__tag-checkbox:has(input:checked)[b-bwttgwr29p] {
        background: var(--primary-500);
        border-color: var(--primary-500);
        color: white;
    }

    .recipe-editor__slot-checkbox:has(input:checked):hover[b-bwttgwr29p],
    .recipe-editor__tag-checkbox:has(input:checked):hover[b-bwttgwr29p] {
        background: var(--primary-600);
        border-color: var(--primary-600);
    }

    .recipe-editor__slot-checkbox:focus-within[b-bwttgwr29p],
    .recipe-editor__tag-checkbox:focus-within[b-bwttgwr29p] {
        outline: none;
        box-shadow: var(--focus-ring);
    }

    .recipe-editor__slot-checkbox input[type="checkbox"][b-bwttgwr29p],
    .recipe-editor__tag-checkbox input[type="checkbox"][b-bwttgwr29p] {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    /* Dietary tags grid */
    .recipe-editor__tags-grid[b-bwttgwr29p] {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

    /* Required asterisk marker */
    .recipe-editor__required[b-bwttgwr29p] {
        color: var(--accent-500);
        margin-left: 2px;
    }

    /* Optional field indicator */
    .recipe-editor__optional[b-bwttgwr29p] {
        color: var(--neutral-500);
        font-weight: 400;
        font-size: var(--text-sm);
    }

    /* Spacing between dynamic list and the add button */
    .recipe-editor__add-btn[b-bwttgwr29p] {
        margin-top: var(--space);
    }

    .recipe-editor__add-section-btn[b-bwttgwr29p] {
        margin-top: var(--space);
    }

    /* Sub-section nested inside the ingredients / instructions fieldset.
       Subtle inset background separates each section without an extra
       chrome-heavy card. */
    .recipe-editor__section[b-bwttgwr29p] {
        margin-bottom: var(--space);
        padding: var(--space);
        background: var(--neutral-50);
        border: 1px solid var(--neutral-200);
        border-radius: var(--radius);
    }

    .recipe-editor__section:last-of-type[b-bwttgwr29p] {
        margin-bottom: var(--space);
    }

    /* Header row: heading input fills the row; remove-section button sits on
       the right. */
    .recipe-editor__section-header[b-bwttgwr29p] {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        margin-bottom: var(--space);
        flex-wrap: wrap;
    }

    .recipe-editor__section-heading[b-bwttgwr29p] {
        flex: 1 1 240px;
        margin-bottom: 0;
    }

    /* Notes — each note is a softly inset card inside the Notes fieldset.
       Title input sits beside a remove-button in the header; content fills
       the row below. */
    .recipe-editor__note[b-bwttgwr29p] {
        margin-bottom: var(--space);
        padding: var(--space);
        background: var(--neutral-50);
        border: 1px solid var(--neutral-200);
        border-radius: var(--radius);
    }

    .recipe-editor__note:last-of-type[b-bwttgwr29p] {
        margin-bottom: var(--space);
    }

    .recipe-editor__note-header[b-bwttgwr29p] {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        margin-bottom: var(--space-sm);
        flex-wrap: wrap;
    }

    .recipe-editor__note-title[b-bwttgwr29p] {
        flex: 1 1 240px;
        margin-bottom: 0;
    }

    .recipe-editor__notes-empty[b-bwttgwr29p] {
        margin: 0 0 var(--space) 0;
    }

    /* Image upload area — preview on top, controls below. */
    .recipe-editor__image-upload[b-bwttgwr29p] {
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
    }

    .recipe-editor__image-preview[b-bwttgwr29p] {
        width: 100%;
        max-width: 320px;
        aspect-ratio: 4 / 3;
        border: 1px solid var(--neutral-200);
        border-radius: var(--radius);
        overflow: hidden;
        background: var(--neutral-50);
    }

    .recipe-editor__image-preview img[b-bwttgwr29p] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .recipe-editor__image-placeholder[b-bwttgwr29p] {
        width: 100%;
        max-width: 320px;
        aspect-ratio: 4 / 3;
        border: 2px dashed var(--neutral-300);
        border-radius: var(--radius);
        background: var(--neutral-50);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-xs);
        color: var(--neutral-400);
        font-size: var(--text-sm);
    }

    .recipe-editor__image-placeholder i[b-bwttgwr29p] {
        font-size: 2rem;
        color: var(--neutral-300);
    }

    .recipe-editor__image-controls[b-bwttgwr29p] {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-sm);
        align-items: center;
    }

    .recipe-editor__image-picker[b-bwttgwr29p] {
        display: inline-flex;
        align-items: center;
        gap: var(--space-sm);
        padding: var(--space-xs) var(--space);
        background: white;
        color: var(--neutral-700);
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius);
        font-size: var(--text-md);
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition);
        min-height: 36px;
    }

    .recipe-editor__image-picker:hover[b-bwttgwr29p] {
        background: var(--primary-50);
        border-color: var(--primary-400);
        color: var(--primary-700);
    }

    .recipe-editor__image-picker:focus-within[b-bwttgwr29p] {
        outline: none;
        box-shadow: var(--focus-ring);
    }

    /* Hide the native file input — it's triggered by clicking the styled
       <label for="imageUpload"> above. Keep it focusable / accessible.
       ::deep is required: <InputFile> is a child component, so Blazor's CSS
       isolation scope attribute isn't stamped on its rendered <input> and a
       plain scoped selector wouldn't match. */
    [b-bwttgwr29p] .recipe-editor__image-input {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    /* Form actions: subtle elevated bar that anchors the page bottom. */
    .recipe-editor__actions[b-bwttgwr29p] {
        background: white;
        border: 1px solid var(--neutral-200);
        border-top: 1px solid var(--neutral-200);
        border-radius: var(--radius-lg);
        padding: var(--space);
        box-shadow: var(--shadow-sm);
        margin-top: var(--space-lg);
    }

    /* Loading skeleton placeholder shape while the recipe loads */
    .recipe-editor__skeleton[b-bwttgwr29p] {
        height: 400px;
    }

    /* Combobox wrapper — relative so the suggestions dropdown can absolute-position
       below the input. */
    .recipe-editor__ingredient-combobox[b-bwttgwr29p] {
        position: relative;
    }

    .recipe-editor__ingredient-linked-badge[b-bwttgwr29p] {
        display: inline-block;
        margin-top: var(--space-xs);
        padding: 0 var(--space-sm);
        border: 1px solid var(--primary-300);
        border-radius: 999px;
        background-color: var(--primary-50);
        color: var(--primary-700);
        font-size: var(--text-xs);
        line-height: 1.6;
    }

    .recipe-editor__ingredient-suggestions[b-bwttgwr29p] {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 20;
        margin: var(--space-xs) 0 0;
        padding: 0;
        list-style: none;
        max-height: 240px;
        overflow-y: auto;
        background-color: white;
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .recipe-editor__ingredient-suggestion[b-bwttgwr29p] {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: var(--space-sm);
        padding: var(--space-sm);
        cursor: pointer;
        color: var(--neutral-800);
    }

    .recipe-editor__ingredient-suggestion:hover[b-bwttgwr29p],
    .recipe-editor__ingredient-suggestion--highlighted[b-bwttgwr29p] {
        background-color: var(--primary-50);
        color: var(--primary-800);
    }

    .recipe-editor__ingredient-suggestion-name[b-bwttgwr29p] {
        flex: 1;
    }

    .recipe-editor__suggestion-category[b-bwttgwr29p] {
        color: var(--neutral-500);
        font-size: var(--text-xs);
        white-space: nowrap;
    }

    .recipe-editor__ingredient-suggestion--highlighted .recipe-editor__suggestion-category[b-bwttgwr29p] {
        color: var(--primary-600);
    }

}

/* Child-component buttons live outside this component's CSS-isolation scope,
   so they need ::deep selectors to reach the rendered <button>. */
@layer overrides {

    /* "Remove section" button — subtle outline-danger so it doesn't dominate
       the section header. */
    .recipe-editor[b-bwttgwr29p]  .recipe-editor__remove-section-btn.btn {
        background: white;
        color: var(--accent-600);
        border: 1px solid var(--accent-100);
        box-shadow: none;
    }

    .recipe-editor[b-bwttgwr29p]  .recipe-editor__remove-section-btn.btn:hover:not(:disabled) {
        background: var(--accent-50);
        border-color: var(--accent-400);
        color: var(--accent-600);
        transform: none;
    }

    .recipe-editor[b-bwttgwr29p]  .recipe-editor__remove-section-btn.btn:disabled {
        color: var(--neutral-400);
        border-color: var(--neutral-200);
    }

    /* Per-row remove button — icon-only, becomes red on hover. */
    .recipe-editor[b-bwttgwr29p]  .recipe-editor__row-remove-btn.btn--icon {
        color: var(--neutral-400);
        min-width: 36px;
        min-height: 36px;
        padding: var(--space-xs);
        align-self: center;
    }

    .recipe-editor[b-bwttgwr29p]  .recipe-editor__row-remove-btn.btn--icon:hover {
        color: var(--accent-600);
        background: var(--accent-50);
    }

    /* Scanned originals — small thumbnails that expand into a lightbox. */
    .recipe-editor__source-images-grid[b-bwttgwr29p] {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-sm);
        margin-bottom: var(--space-sm);
    }

    .recipe-editor__source-image-thumb[b-bwttgwr29p] {
        width: 96px;
        height: 96px;
        padding: 0;
        border: 1px solid var(--neutral-200);
        border-radius: var(--radius-md);
        overflow: hidden;
        cursor: pointer;
        background: var(--neutral-50);
        transition: border-color 0.15s ease, transform 0.15s ease;
    }

    .recipe-editor__source-image-thumb:hover[b-bwttgwr29p] {
        border-color: var(--accent-400);
        transform: scale(1.03);
    }

    .recipe-editor__source-image-thumb img[b-bwttgwr29p] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .recipe-editor__lightbox[b-bwttgwr29p] {
        position: fixed;
        inset: 0;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-md);
        padding: var(--space-lg);
        background: rgba(0, 0, 0, 0.8);
    }

    .recipe-editor__lightbox-toolbar[b-bwttgwr29p] {
        display: flex;
        gap: var(--space-sm);
    }

    .recipe-editor__lightbox-btn[b-bwttgwr29p] {
        width: 44px;
        height: 44px;
        border: none;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.15s ease;
    }

    .recipe-editor__lightbox-btn:hover[b-bwttgwr29p] {
        background: rgba(255, 255, 255, 0.3);
    }

    .recipe-editor__lightbox-stage[b-bwttgwr29p] {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 90vw;
        max-height: 80vh;
        overflow: auto;
    }

    .recipe-editor__lightbox-image[b-bwttgwr29p] {
        max-width: 90vw;
        max-height: 80vh;
        object-fit: contain;
        transition: transform 0.2s ease;
    }
}
/* _content/Forkery.Web/Components/Pages/RecipeImport.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

/* --- Recipe Import Page --- */
.recipe-import[b-fpycxftcim] {
    max-width: 900px;
    margin: 0 auto;
}

.recipe-import__title[b-fpycxftcim] {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
}

.recipe-import__subtitle[b-fpycxftcim] {
    font-size: var(--text-md);
    color: var(--neutral-500);
    margin: 0 0 var(--space-lg);
    line-height: 1.6;
}

.recipe-import__choose-prompt[b-fpycxftcim] {
    color: var(--neutral-700);
    font-weight: 500;
}

/* Source switch — a segmented control. Two tabs that share a pill-shaped
   track; the active tab lifts onto a white surface. Starts with neither tab
   active so the user picks a source before any form appears. */
.recipe-import__mode-switch[b-fpycxftcim] {
    display: inline-flex;
    gap: var(--space-xs);
    padding: var(--space-xs);
    margin-bottom: var(--space-lg);
    background: var(--neutral-100);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
}

.recipe-import__mode[b-fpycxftcim] {
    appearance: none;
    border: none;
    background: transparent;
    color: var(--neutral-600);
    font-size: var(--text-md);
    font-weight: 500;
    padding: var(--space-sm) var(--space);
    min-height: 40px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.recipe-import__mode:hover:not(:disabled):not(.recipe-import__mode--active)[b-fpycxftcim] {
    color: var(--neutral-900);
    background: var(--neutral-200);
}

.recipe-import__mode:focus-visible[b-fpycxftcim] {
    outline: none;
    box-shadow: var(--focus-ring);
}

.recipe-import__mode--active[b-fpycxftcim] {
    color: var(--primary-700);
    background: white;
    box-shadow: var(--shadow-sm);
}

.recipe-import__mode:disabled[b-fpycxftcim] {
    cursor: not-allowed;
    opacity: 0.6;
}

.recipe-import__form[b-fpycxftcim] {
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.recipe-import__label[b-fpycxftcim] {
    display: block;
    font-weight: 500;
    color: var(--neutral-700);
    margin-bottom: var(--space-sm);
    font-size: var(--text-md);
}

.recipe-import__input-row[b-fpycxftcim] {
    display: flex;
    gap: var(--space);
    flex-direction: column;
}

@media (min-width: 576px) {
    .recipe-import__input-row[b-fpycxftcim] {
        flex-direction: row;
    }
}

.recipe-import__input[b-fpycxftcim] {
    flex: 1;
    padding: var(--space-sm) var(--space);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    font-size: var(--text-base);
    min-height: 44px;
    transition: var(--transition);
    background: white;
}

.recipe-import__input:focus[b-fpycxftcim] {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: var(--focus-ring);
}

.recipe-import__input:disabled[b-fpycxftcim] {
    background: var(--neutral-100);
    color: var(--neutral-500);
}

.recipe-import__btn[b-fpycxftcim] {
    flex-shrink: 0;
    min-width: 120px;
}

.recipe-import__spinner[b-fpycxftcim] {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.recipe-import__help[b-fpycxftcim] {
    font-size: 0.8125rem;
    color: var(--neutral-500);
    margin: var(--space-sm) 0 0;
}

/* AI-assisted import toggle — mirrors the pattern used by
   AutoFillSettingsPage / AiSettingsPage for their feature toggles. */
.recipe-import__ai-toggle[b-fpycxftcim] {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: var(--text-md);
    color: var(--neutral-800);
    line-height: 1.4;
    margin-top: var(--space);
    padding: var(--space);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    background: var(--neutral-50);
}

.recipe-import__ai-toggle input[type="checkbox"][b-fpycxftcim] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--primary-500);
}

.recipe-import__ai-toggle input[type="checkbox"]:disabled + span[b-fpycxftcim] {
    color: var(--neutral-500);
}

.recipe-import__ai-toggle strong[b-fpycxftcim] {
    display: block;
    color: var(--neutral-900);
    margin-bottom: var(--space-xs);
}

.recipe-import__ai-hint[b-fpycxftcim] {
    display: block;
    font-size: var(--text-sm);
    color: var(--neutral-500);
    line-height: 1.4;
}

.recipe-import__ai-latency-note[b-fpycxftcim] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin: var(--space-sm) 0 0;
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-sm);
    color: var(--primary-700);
    background: var(--primary-50);
    border-left: 3px solid var(--primary-500);
    border-radius: 4px;
}

.recipe-import__ai-latency-note i[b-fpycxftcim] {
    color: var(--primary-500);
    flex-shrink: 0;
}

.recipe-import__error-hint[b-fpycxftcim] {
    margin: 0 0 var(--space-sm);
    font-size: var(--text-sm);
    color: var(--neutral-700);
}

/* Import Error — extends .alert alert--error with composite layout */
.recipe-import__error[b-fpycxftcim] {
    display: flex;
    align-items: flex-start;
    gap: var(--space);
    margin-bottom: var(--space-lg); /* override default .alert margin */
}

.recipe-import__error p[b-fpycxftcim] {
    margin: 0 0 var(--space-sm);
}

.recipe-import__error-icon[b-fpycxftcim] {
    font-size: var(--text-xl);
    flex-shrink: 0;
    line-height: 1;
    padding-top: 2px;
}

.recipe-import__manual-link[b-fpycxftcim] {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
}

.recipe-import__manual-link:hover[b-fpycxftcim] {
    color: var(--primary-500);
    text-decoration: underline;
}

/* Import Result */
.recipe-import__result[b-fpycxftcim] {
    padding: 0;
    margin-bottom: var(--space-lg);
}

.recipe-import__result-header[b-fpycxftcim] {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--neutral-200);
    background: var(--secondary-50);
}

.recipe-import__result-title[b-fpycxftcim] {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--secondary-600);
    margin: 0 0 var(--space-xs);
}

.recipe-import__result-subtitle[b-fpycxftcim] {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    margin: 0;
}

.recipe-import__result-content[b-fpycxftcim] {
    padding: var(--space-lg);
}

.recipe-import__result-image-container[b-fpycxftcim] {
    margin-bottom: var(--space);
    border-radius: var(--radius);
    overflow: hidden;
}

.recipe-import__result-image[b-fpycxftcim] {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    display: block;
}

.recipe-import__result-details[b-fpycxftcim] {
    /* container */
}

.recipe-import__result-recipe-title[b-fpycxftcim] {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
}

.recipe-import__result-description[b-fpycxftcim] {
    color: var(--neutral-600);
    margin: 0 0 var(--space);
    line-height: 1.6;
}

.recipe-import__result-meta[b-fpycxftcim] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding: var(--space);
    background: var(--neutral-50);
    border-radius: var(--radius);
    margin-bottom: var(--space-lg);
}

.recipe-import__result-meta-item[b-fpycxftcim] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    min-width: 80px;
}

.recipe-import__result-meta-label[b-fpycxftcim] {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.recipe-import__result-meta-value[b-fpycxftcim] {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
}

.recipe-import__result-section[b-fpycxftcim] {
    margin-bottom: var(--space-lg);
}

.recipe-import__result-section-title[b-fpycxftcim] {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0 0 var(--space);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--neutral-200);
}

/* Subheading above each sub-list — matches recipe-detail__section-heading
   scale but uses the import card's neutral palette. */
.recipe-import__result-section-subheading[b-fpycxftcim] {
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--neutral-700);
    margin: var(--space) 0 var(--space-sm);
}

.recipe-import__result-ingredients[b-fpycxftcim] {
    list-style: disc;
    padding-left: var(--space-lg);
    margin: 0 0 var(--space);
}

.recipe-import__result-ingredients li[b-fpycxftcim] {
    padding: var(--space-xs) 0;
    color: var(--neutral-800);
}

.recipe-import__result-instructions[b-fpycxftcim] {
    padding-left: var(--space-lg);
    margin: 0;
}

.recipe-import__result-instructions li[b-fpycxftcim] {
    padding: var(--space-sm) 0;
    color: var(--neutral-800);
    line-height: 1.6;
}

.recipe-import__result-actions[b-fpycxftcim] {
    display: flex;
    gap: var(--space);
    padding: var(--space-lg);
    border-top: 1px solid var(--neutral-200);
    justify-content: flex-end;
}

}
/* _content/Forkery.Web/Components/Pages/Settings/AiSettingsPage.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.ai-settings[b-743y7bgm0g] {
    max-width: 760px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.ai-settings__breadcrumb[b-743y7bgm0g] {
    margin-bottom: var(--space);
}

.ai-settings__header[b-743y7bgm0g] {
    margin-bottom: var(--space-md);
}

.ai-settings__title[b-743y7bgm0g] {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.ai-settings__subtitle[b-743y7bgm0g] {
    font-size: var(--text-md);
    color: var(--neutral-600);
    margin: 0;
}

.ai-settings__error[b-743y7bgm0g] {
    margin-bottom: var(--space-md);
}

.ai-settings__loading[b-743y7bgm0g] {
    margin-top: var(--space-md);
}

.ai-settings__skeleton[b-743y7bgm0g] {
    height: 320px;
    border-radius: var(--radius);
}

.ai-settings__card[b-743y7bgm0g] {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.ai-settings__card--intro[b-743y7bgm0g] {
    background: var(--primary-50);
    border-color: var(--primary-100);
}

.ai-settings__card-header[b-743y7bgm0g] {
    margin-bottom: var(--space-md);
}

.ai-settings__card-title[b-743y7bgm0g] {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.ai-settings__card-desc[b-743y7bgm0g] {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.5;
}

.ai-settings__intro-body p[b-743y7bgm0g] {
    font-size: var(--text-md);
    color: var(--neutral-700);
    line-height: 1.6;
    margin: 0 0 var(--space-sm);
}

.ai-settings__intro-body p:last-child[b-743y7bgm0g] {
    margin-bottom: 0;
}

.ai-settings__intro-body strong[b-743y7bgm0g] {
    color: var(--neutral-900);
}

.ai-settings__field[b-743y7bgm0g] {
    margin-bottom: var(--space-md);
}

.ai-settings__field:last-child[b-743y7bgm0g] {
    margin-bottom: 0;
}

.ai-settings__label[b-743y7bgm0g] {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: var(--space-xs);
}

.ai-settings__input[b-743y7bgm0g] {
    width: 100%;
    max-width: 420px;
    padding: var(--space-sm) var(--space);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    font-size: var(--text-md);
    background: white;
    font-family: inherit;
}

.ai-settings__input:focus[b-743y7bgm0g] {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: var(--focus-ring);
}

.ai-settings__input:disabled[b-743y7bgm0g] {
    background: var(--neutral-100);
    color: var(--neutral-500);
    cursor: not-allowed;
}

.ai-settings__input--key[b-743y7bgm0g] {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    letter-spacing: 0.02em;
}

.ai-settings__hint[b-743y7bgm0g] {
    font-size: var(--text-sm);
    color: var(--neutral-500);
    margin: var(--space-xs) 0 0;
}

.ai-settings__hint--warn[b-743y7bgm0g] {
    color: var(--warning-700);
}

.ai-settings__field-error[b-743y7bgm0g] {
    font-size: var(--text-sm);
    color: var(--accent-700);
    margin: var(--space-xs) 0 0;
    font-weight: 500;
}

.ai-settings__toggle[b-743y7bgm0g] {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: var(--text-md);
    color: var(--neutral-800);
    line-height: 1.4;
}

.ai-settings__toggle input[type="checkbox"][b-743y7bgm0g] {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.ai-settings__toggle input[type="checkbox"]:disabled + span[b-743y7bgm0g] {
    color: var(--neutral-500);
}

.ai-settings__key-status[b-743y7bgm0g] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space);
    background: var(--neutral-50);
    border-radius: var(--radius);
    margin-bottom: var(--space-md);
}

.ai-settings__key-mask[b-743y7bgm0g] {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: var(--text-md);
    color: var(--neutral-800);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.ai-settings__key-mask i[b-743y7bgm0g] {
    color: var(--secondary-600);
}

.ai-settings__key-row[b-743y7bgm0g] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
}

.ai-settings__key-row .ai-settings__input--key[b-743y7bgm0g] {
    flex: 1;
    min-width: 220px;
}

.ai-settings__button-row[b-743y7bgm0g] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
}

.ai-settings__test-status[b-743y7bgm0g] {
    font-size: var(--text-sm);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.ai-settings__test-status--ok[b-743y7bgm0g] {
    color: var(--secondary-600);
}

.ai-settings__test-status--fail[b-743y7bgm0g] {
    color: var(--accent-700);
}

.ai-settings__actions[b-743y7bgm0g] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--neutral-200);
}

.ai-settings__save-message[b-743y7bgm0g] {
    font-size: var(--text-sm);
    color: var(--secondary-600);
    font-weight: 500;
}

}
/* _content/Forkery.Web/Components/Pages/Settings/AutoFillSettingsPage.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.auto-fill-settings[b-vp846e0t2t] {
    max-width: 760px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.auto-fill-settings__breadcrumb[b-vp846e0t2t] {
    margin-bottom: var(--space);
}

.auto-fill-settings__header[b-vp846e0t2t] {
    margin-bottom: var(--space-md);
}

.auto-fill-settings__title[b-vp846e0t2t] {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.auto-fill-settings__subtitle[b-vp846e0t2t] {
    font-size: var(--text-md);
    color: var(--neutral-600);
    margin: 0;
}

.auto-fill-settings__error[b-vp846e0t2t] {
    margin-bottom: var(--space-md);
}

.auto-fill-settings__loading[b-vp846e0t2t] {
    margin-top: var(--space-md);
}

.auto-fill-settings__skeleton[b-vp846e0t2t] {
    height: 320px;
    border-radius: var(--radius);
}

.auto-fill-settings__card[b-vp846e0t2t] {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.auto-fill-settings__card-header[b-vp846e0t2t] {
    margin-bottom: var(--space-md);
}

.auto-fill-settings__card-title[b-vp846e0t2t] {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.auto-fill-settings__card-desc[b-vp846e0t2t] {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.5;
}

.auto-fill-settings__field[b-vp846e0t2t] {
    margin-bottom: var(--space-md);
}

.auto-fill-settings__field:last-child[b-vp846e0t2t] {
    margin-bottom: 0;
}

.auto-fill-settings__toggle[b-vp846e0t2t] {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: var(--text-md);
    color: var(--neutral-800);
    line-height: 1.4;
}

.auto-fill-settings__toggle input[type="checkbox"][b-vp846e0t2t] {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.auto-fill-settings__toggle--inline[b-vp846e0t2t] {
    display: inline-flex;
    align-items: center;
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    background: var(--neutral-50);
}

.auto-fill-settings__toggle-row[b-vp846e0t2t] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xs);
}

.auto-fill-settings__label[b-vp846e0t2t] {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: var(--space-xs);
}

.auto-fill-settings__input[b-vp846e0t2t] {
    width: 100%;
    max-width: 420px;
    padding: var(--space-sm) var(--space);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    font-size: var(--text-md);
    background: white;
    font-family: inherit;
}

.auto-fill-settings__input:focus[b-vp846e0t2t] {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: var(--focus-ring);
}

.auto-fill-settings__input:disabled[b-vp846e0t2t],
.auto-fill-settings__slider:disabled[b-vp846e0t2t] {
    background: var(--neutral-100);
    color: var(--neutral-500);
    cursor: not-allowed;
}

.auto-fill-settings__textarea[b-vp846e0t2t] {
    resize: vertical;
    min-height: 2.5rem;
    max-width: 100%;
}

.auto-fill-settings__hint[b-vp846e0t2t] {
    font-size: var(--text-sm);
    color: var(--neutral-500);
    margin: var(--space-xs) 0 0;
}

.auto-fill-settings__slider-row[b-vp846e0t2t] {
    display: flex;
    align-items: center;
    gap: var(--space);
    max-width: 420px;
}

.auto-fill-settings__slider[b-vp846e0t2t] {
    flex: 1;
    accent-color: var(--primary-500);
}

.auto-fill-settings__slider-value[b-vp846e0t2t] {
    min-width: 2.5rem;
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: var(--neutral-800);
}

.auto-fill-settings__tag-row[b-vp846e0t2t] {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    margin-bottom: var(--space-sm);
}

.auto-fill-settings__tag-row .auto-fill-settings__input[b-vp846e0t2t] {
    max-width: 320px;
}

.auto-fill-settings__chips[b-vp846e0t2t] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.auto-fill-chip[b-vp846e0t2t] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.25rem 0.625rem;
    background: var(--primary-50);
    color: var(--primary-700);
    border-radius: 999px;
    font-size: var(--text-sm);
    font-weight: 500;
    border: 1px solid var(--primary-100);
}

.auto-fill-chip--avoid[b-vp846e0t2t] {
    background: var(--accent-50);
    color: var(--accent-700);
    border-color: var(--accent-100);
}

.auto-fill-chip--cuisine[b-vp846e0t2t] {
    background: var(--secondary-50);
    color: var(--secondary-700);
    border-color: var(--secondary-100);
}

.auto-fill-chip__remove[b-vp846e0t2t] {
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    opacity: 0.7;
}

.auto-fill-chip__remove:hover:not(:disabled)[b-vp846e0t2t] {
    opacity: 1;
}

.auto-fill-chip__remove:disabled[b-vp846e0t2t] {
    cursor: not-allowed;
    opacity: 0.4;
}

.auto-fill-settings__current[b-vp846e0t2t] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space);
    background: var(--neutral-50);
    border-radius: var(--radius);
}

.auto-fill-settings__current-label[b-vp846e0t2t] {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.auto-fill-settings__current-value[b-vp846e0t2t] {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1;
}

.auto-fill-settings__current-explainer[b-vp846e0t2t] {
    font-size: var(--text-sm);
    color: var(--neutral-600);
}

.auto-fill-settings__actions[b-vp846e0t2t] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--neutral-200);
}

.auto-fill-settings__save-message[b-vp846e0t2t] {
    font-size: var(--text-sm);
    color: var(--secondary-600);
    font-weight: 500;
}

}
/* _content/Forkery.Web/Components/Pages/Settings/CalendarSettingsPage.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.calendar-settings[b-b6zp2v0irw] {
    max-width: 880px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.calendar-settings__breadcrumb[b-b6zp2v0irw] {
    margin-bottom: var(--space);
}

.calendar-settings__header[b-b6zp2v0irw] {
    margin-bottom: var(--space-md);
}

.calendar-settings__title[b-b6zp2v0irw] {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.calendar-settings__subtitle[b-b6zp2v0irw] {
    font-size: var(--text-md);
    color: var(--neutral-600);
    margin: 0;
}

.calendar-settings__error[b-b6zp2v0irw],
.calendar-settings__message[b-b6zp2v0irw] {
    margin-bottom: var(--space-md);
}

.calendar-settings__loading[b-b6zp2v0irw] {
    margin: var(--space-md) 0;
}

.calendar-settings__skeleton[b-b6zp2v0irw] {
    height: 160px;
    border-radius: var(--radius);
}

.calendar-settings__card[b-b6zp2v0irw] {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.calendar-settings__card-header[b-b6zp2v0irw] {
    margin-bottom: var(--space-md);
}

.calendar-settings__card-title[b-b6zp2v0irw] {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.calendar-settings__card-desc[b-b6zp2v0irw] {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.5;
}

.calendar-settings__add-actions[b-b6zp2v0irw] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.calendar-settings__empty[b-b6zp2v0irw] {
    color: var(--neutral-600);
    margin: 0;
}

.calendar-settings__connection-list[b-b6zp2v0irw] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.calendar-settings__groups[b-b6zp2v0irw] {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.calendar-settings__group[b-b6zp2v0irw] {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    background: white;
    overflow: hidden;
}

.calendar-settings__group-header[b-b6zp2v0irw] {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "icon meta"
        "actions actions";
    column-gap: var(--space-md);
    row-gap: var(--space-sm);
    align-items: center;
    padding: var(--space-md);
    background: var(--neutral-50);
    border-bottom: 1px solid var(--neutral-200);
}

.calendar-settings__group-icon[b-b6zp2v0irw] {
    grid-area: icon;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-100);
    border-radius: var(--radius);
    font-size: var(--text-lg);
    color: var(--neutral-700);
}

.calendar-settings__group-meta[b-b6zp2v0irw] {
    grid-area: meta;
    min-width: 0;
}

.calendar-settings__group-title[b-b6zp2v0irw] {
    font-weight: 600;
    color: var(--neutral-900);
    font-size: var(--text-md);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.calendar-settings__group-title-fallback[b-b6zp2v0irw] {
    font-style: italic;
    color: var(--neutral-500);
    font-weight: 500;
}

.calendar-settings__group-summary[b-b6zp2v0irw] {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-xs);
}

.calendar-settings__group-provider-pill[b-b6zp2v0irw] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    background: var(--neutral-100);
    color: var(--neutral-700);
    font-weight: 500;
}

.calendar-settings__group-actions[b-b6zp2v0irw] {
    grid-area: actions;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    padding-top: var(--space-xs);
    border-top: 1px solid var(--neutral-100);
}

.calendar-settings__group-children[b-b6zp2v0irw] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.calendar-settings__child[b-b6zp2v0irw] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "color body actions";
    column-gap: var(--space-md);
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--neutral-100);
}

.calendar-settings__child:last-child[b-b6zp2v0irw] {
    border-bottom: none;
}

.calendar-settings__child-color[b-b6zp2v0irw] {
    grid-area: color;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--neutral-300);
    border: 1px solid rgb(0 0 0 / 0.1);
}

.calendar-settings__child-body[b-b6zp2v0irw] {
    grid-area: body;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.calendar-settings__child-name[b-b6zp2v0irw] {
    font-weight: 500;
    color: var(--neutral-900);
    font-size: var(--text-sm);
}

.calendar-settings__child-meta[b-b6zp2v0irw] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: center;
    font-size: var(--text-xs);
    color: var(--neutral-500);
}

.calendar-settings__child-actions[b-b6zp2v0irw] {
    grid-area: actions;
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.calendar-settings__connection[b-b6zp2v0irw] {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "icon body"
        "actions actions";
    column-gap: var(--space-md);
    row-gap: var(--space-sm);
    align-items: center;
    padding: var(--space-md);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    background: var(--neutral-50);
}

.calendar-settings__connection-icon[b-b6zp2v0irw] {
    grid-area: icon;
}

.calendar-settings__connection-body[b-b6zp2v0irw] {
    grid-area: body;
}

.calendar-settings__connection-actions[b-b6zp2v0irw] {
    grid-area: actions;
}

.calendar-settings__connection-icon[b-b6zp2v0irw] {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-100);
    border-radius: var(--radius);
    font-size: var(--text-lg);
    color: var(--neutral-700);
}

.calendar-settings__connection-body[b-b6zp2v0irw] {
    min-width: 0;
}

.calendar-settings__connection-name[b-b6zp2v0irw] {
    font-weight: 600;
    color: var(--neutral-900);
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.calendar-settings__connection-provider[b-b6zp2v0irw] {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.calendar-settings__connection-meta[b-b6zp2v0irw] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xs);
}

.calendar-settings__connection-error[b-b6zp2v0irw] {
    margin: var(--space-xs) 0 0;
    font-size: var(--text-sm);
    color: var(--accent-700);
}

.calendar-settings__connection-actions[b-b6zp2v0irw] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: flex-start;
    padding-top: var(--space-xs);
    border-top: 1px solid var(--neutral-100);
}

.calendar-settings__status[b-b6zp2v0irw] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: var(--text-xs);
    font-weight: 500;
    background: var(--neutral-100);
    color: var(--neutral-700);
}

.calendar-settings__status--ok[b-b6zp2v0irw] {
    background: #d1fae5;
    color: #065f46;
}

.calendar-settings__status--warn[b-b6zp2v0irw] {
    background: #fef3c7;
    color: #92400e;
}

.calendar-settings__status--error[b-b6zp2v0irw] {
    background: #fee2e2;
    color: #991b1b;
}

.calendar-settings__status--muted[b-b6zp2v0irw] {
    background: var(--neutral-100);
    color: var(--neutral-600);
}

.calendar-settings__readonly-pill[b-b6zp2v0irw] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: var(--neutral-100);
    color: var(--neutral-600);
    font-size: var(--text-xs);
    font-weight: 500;
}

.calendar-settings__account-pill[b-b6zp2v0irw] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: var(--primary-50);
    color: var(--primary-700);
    font-size: var(--text-xs);
    font-weight: 500;
}

.calendar-settings__rename-row[b-b6zp2v0irw] {
    display: flex;
    gap: var(--space-xs);
    align-items: center;
    flex-wrap: wrap;
}

.calendar-settings__rename-input[b-b6zp2v0irw],
.calendar-settings__input[b-b6zp2v0irw] {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    font: inherit;
    background: white;
    color: var(--neutral-900);
}

.calendar-settings__rename-input:focus[b-b6zp2v0irw],
.calendar-settings__input:focus[b-b6zp2v0irw] {
    outline: 2px solid var(--primary-500);
    outline-offset: 1px;
}

.calendar-settings__field[b-b6zp2v0irw] {
    margin-bottom: var(--space-md);
}

.calendar-settings__label[b-b6zp2v0irw] {
    display: block;
    font-weight: 500;
    color: var(--neutral-800);
    margin-bottom: var(--space-xs);
}

.calendar-settings__hint[b-b6zp2v0irw] {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    margin: var(--space-xs) 0 0;
}

.calendar-settings__field-error[b-b6zp2v0irw] {
    color: var(--accent-700);
    font-size: var(--text-sm);
    margin: var(--space-xs) 0 0;
}

.calendar-settings__modal-backdrop[b-b6zp2v0irw] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: var(--space);
}

.calendar-settings__modal[b-b6zp2v0irw] {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
}

.calendar-settings__modal-header[b-b6zp2v0irw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--neutral-200);
}

.calendar-settings__modal-title[b-b6zp2v0irw] {
    margin: 0;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.calendar-settings__modal-close[b-b6zp2v0irw] {
    background: transparent;
    border: none;
    font-size: var(--text-lg);
    color: var(--neutral-500);
    cursor: pointer;
    padding: var(--space-xs);
}

.calendar-settings__modal-close:hover[b-b6zp2v0irw] {
    color: var(--neutral-900);
}

.calendar-settings__modal-body[b-b6zp2v0irw] {
    padding: var(--space-lg);
}

.calendar-settings__modal-footer[b-b6zp2v0irw] {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--neutral-200);
}

/* =========================================================
   Mobile (<768px): collapse the grouped account card to a
   single column so the icon, meta block, and group actions
   stack vertically. The default 2-column / 3-column grids
   used by .__group-header and .__child overflow on phones
   and crowd the action buttons against the right edge.
   ========================================================= */
@media (max-width: 767.98px) {
    .calendar-settings[b-b6zp2v0irw] {
        padding: var(--space) var(--space-sm);
    }

    .calendar-settings__card[b-b6zp2v0irw] {
        padding: var(--space-md);
    }

    .calendar-settings__group-header[b-b6zp2v0irw] {
        grid-template-columns: 1fr;
        grid-template-areas:
            "icon"
            "meta"
            "actions";
        row-gap: var(--space-sm);
    }

    .calendar-settings__group-icon[b-b6zp2v0irw] {
        justify-self: start;
    }

    .calendar-settings__group-actions[b-b6zp2v0irw] {
        width: 100%;
        flex-wrap: wrap;
    }

    .calendar-settings__group-actions > *[b-b6zp2v0irw] {
        flex: 1 1 calc(50% - var(--space-xs));
    }

    .calendar-settings__child[b-b6zp2v0irw] {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "color body"
            "actions actions";
        row-gap: var(--space-xs);
    }

    .calendar-settings__child-actions[b-b6zp2v0irw] {
        justify-self: end;
        flex-wrap: wrap;
    }

    .calendar-settings__connection[b-b6zp2v0irw] {
        grid-template-columns: 1fr;
        grid-template-areas:
            "icon"
            "body"
            "actions";
    }

    .calendar-settings__connection-actions[b-b6zp2v0irw] {
        flex-wrap: wrap;
    }

    .calendar-settings__add-actions[b-b6zp2v0irw] {
        flex-direction: column;
    }

    .calendar-settings__add-actions > *[b-b6zp2v0irw] {
        width: 100%;
    }
}

}
/* _content/Forkery.Web/Components/Pages/Settings/FinalizeOAuthPage.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.calendar-settings[b-ks8ycldb7p] {
    max-width: 880px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.calendar-settings__breadcrumb[b-ks8ycldb7p] {
    margin-bottom: var(--space);
}

.calendar-settings__title[b-ks8ycldb7p] {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.calendar-settings__subtitle[b-ks8ycldb7p] {
    font-size: var(--text-md);
    color: var(--neutral-600);
    margin: 0;
}

.calendar-settings__card[b-ks8ycldb7p] {
    padding: var(--space-md);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    background: white;
}

.calendar-settings__loading[b-ks8ycldb7p] {
    padding: var(--space-md);
}

.calendar-settings__skeleton[b-ks8ycldb7p] {
    height: 4rem;
}

.calendar-settings__empty[b-ks8ycldb7p] {
    color: var(--neutral-500);
    margin: 0;
}

.calendar-settings__connection-list[b-ks8ycldb7p] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.calendar-settings__connection[b-ks8ycldb7p] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "icon body actions";
    column-gap: var(--space-md);
    align-items: center;
    padding: var(--space-md);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    background: var(--neutral-50);
}

.calendar-settings__connection-icon[b-ks8ycldb7p] {
    grid-area: icon;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-100);
    border-radius: var(--radius);
    font-size: var(--text-lg);
    color: var(--neutral-700);
}

.calendar-settings__connection-body[b-ks8ycldb7p] {
    grid-area: body;
    min-width: 0;
}

.calendar-settings__connection-name[b-ks8ycldb7p] {
    font-weight: 600;
    color: var(--neutral-900);
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.calendar-settings__connection-provider[b-ks8ycldb7p] {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.calendar-settings__connection-meta[b-ks8ycldb7p] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xs);
    align-items: center;
}

.calendar-settings__connection-actions[b-ks8ycldb7p] {
    grid-area: actions;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: center;
}

.calendar-settings__status[b-ks8ycldb7p] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: var(--text-xs);
    font-weight: 500;
    background: var(--neutral-100);
    color: var(--neutral-700);
}

.calendar-settings__status--ok[b-ks8ycldb7p] {
    background: var(--secondary-50);
    color: var(--secondary-700);
}

.calendar-settings__status--muted[b-ks8ycldb7p] {
    background: var(--neutral-100);
    color: var(--neutral-500);
}

.calendar-settings__readonly-pill[b-ks8ycldb7p] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: var(--neutral-100);
    color: var(--neutral-600);
    font-size: var(--text-xs);
    font-weight: 500;
}

.calendar-settings__field[b-ks8ycldb7p] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--neutral-700);
    cursor: pointer;
}

.calendar-settings__field input[type="checkbox"][b-ks8ycldb7p] {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

.calendar-settings__add-actions[b-ks8ycldb7p] {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

}
/* _content/Forkery.Web/Components/Pages/Settings/HouseholdMembersPage.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.settings-household[b-z4xr8sel9f] {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space);
}

.settings-household__breadcrumb[b-z4xr8sel9f] {
    margin-bottom: var(--space);
}

.settings-household__header[b-z4xr8sel9f] {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.settings-household__header-content[b-z4xr8sel9f] {
    flex: 1 1 auto;
    min-width: 0;
}

.settings-household__title[b-z4xr8sel9f] {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.settings-household__subtitle[b-z4xr8sel9f] {
    font-size: var(--text-md);
    color: var(--neutral-600);
    margin: 0;
    max-width: 640px;
}

.settings-household__actions[b-z4xr8sel9f] {
    flex: 0 0 auto;
}

.settings-household__error[b-z4xr8sel9f] {
    margin-bottom: var(--space-md);
}

.settings-household__loading[b-z4xr8sel9f] {
    display: flex;
    flex-direction: column;
    gap: var(--space);
}

.settings-household__skeleton[b-z4xr8sel9f] {
    height: 120px;
    border-radius: var(--radius);
}

.settings-household__section[b-z4xr8sel9f] {
    margin-top: var(--space-lg);
}

.settings-household__section-title[b-z4xr8sel9f] {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-800);
    margin: 0 0 var(--space);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.settings-household__count[b-z4xr8sel9f] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    padding: 0 var(--space-xs);
    border-radius: 999px;
    background: var(--neutral-100);
    color: var(--neutral-700);
    font-size: var(--text-sm);
    font-weight: 500;
}

.settings-household__collapsible[b-z4xr8sel9f] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-sm) 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--neutral-200);
    color: var(--neutral-800);
    font-size: var(--text-lg);
    font-weight: 600;
    cursor: pointer;
    margin-bottom: var(--space);
}

.settings-household__collapsible:hover[b-z4xr8sel9f] {
    color: var(--neutral-900);
}

.settings-household__grid[b-z4xr8sel9f] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .settings-household__grid[b-z4xr8sel9f] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.settings-household__empty[b-z4xr8sel9f] {
    margin-top: var(--space-lg);
}

}
/* _content/Forkery.Web/Components/Pages/Settings/HouseholdPreferencesPage.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.settings-preferences[b-jqesvgl4jb] {
    max-width: 760px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space);
}

.settings-preferences__breadcrumb[b-jqesvgl4jb] {
    margin-bottom: var(--space);
}

.settings-preferences__header[b-jqesvgl4jb] {
    margin-bottom: var(--space-lg);
}

.settings-preferences__title[b-jqesvgl4jb] {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.settings-preferences__subtitle[b-jqesvgl4jb] {
    font-size: var(--text-md);
    color: var(--neutral-600);
    margin: 0;
}

.settings-preferences__error[b-jqesvgl4jb] {
    margin-bottom: var(--space-md);
}

.settings-preferences__loading[b-jqesvgl4jb] {
    margin-top: var(--space-md);
}

.settings-preferences__skeleton[b-jqesvgl4jb] {
    height: 220px;
    border-radius: var(--radius);
}

.settings-preferences__card[b-jqesvgl4jb] {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.settings-preferences__card-header[b-jqesvgl4jb] {
    margin-bottom: var(--space-md);
}

.settings-preferences__card-title[b-jqesvgl4jb] {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.settings-preferences__card-desc[b-jqesvgl4jb] {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.5;
}

.settings-preferences__current[b-jqesvgl4jb] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space);
    background: var(--neutral-50);
    border-radius: var(--radius);
    margin-bottom: var(--space-md);
}

.settings-preferences__current-label[b-jqesvgl4jb] {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.settings-preferences__current-value[b-jqesvgl4jb] {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1;
}

.settings-preferences__current-explainer[b-jqesvgl4jb] {
    font-size: var(--text-sm);
    color: var(--neutral-600);
}

.settings-preferences__field[b-jqesvgl4jb] {
    margin-bottom: var(--space-md);
}

.settings-preferences__toggle[b-jqesvgl4jb] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: var(--text-md);
    color: var(--neutral-800);
}

.settings-preferences__label[b-jqesvgl4jb] {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: var(--space-xs);
}

.settings-preferences__input[b-jqesvgl4jb] {
    width: 100%;
    max-width: 200px;
    padding: var(--space-sm) var(--space);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    font-size: var(--text-md);
    background: white;
}

.settings-preferences__input:focus[b-jqesvgl4jb] {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: var(--focus-ring);
}

.settings-preferences__hint[b-jqesvgl4jb] {
    font-size: var(--text-sm);
    color: var(--neutral-500);
    margin: var(--space-xs) 0 0;
}

.settings-preferences__card-footer[b-jqesvgl4jb] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    padding-top: var(--space);
    border-top: 1px solid var(--neutral-100);
}

.settings-preferences__save-message[b-jqesvgl4jb] {
    font-size: var(--text-sm);
    color: var(--secondary-600);
}

.settings-preferences__time-grid[b-jqesvgl4jb] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space);
}

@media (max-width: 640px) {
    .settings-preferences__time-grid[b-jqesvgl4jb] {
        grid-template-columns: 1fr;
    }
}

}
/* _content/Forkery.Web/Components/Pages/Settings/HouseholdsPage.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.settings-households[b-3xac5mlewu] {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space);
}

.settings-households__breadcrumb[b-3xac5mlewu] {
    margin-bottom: var(--space);
}

.settings-households__header[b-3xac5mlewu] {
    margin-bottom: var(--space-lg);
}

.settings-households__header-content[b-3xac5mlewu] {
    flex: 1 1 auto;
    min-width: 0;
}

.settings-households__title[b-3xac5mlewu] {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.settings-households__subtitle[b-3xac5mlewu] {
    font-size: var(--text-md);
    color: var(--neutral-600);
    margin: 0;
    max-width: 640px;
}

.settings-households__alert[b-3xac5mlewu] {
    margin-bottom: var(--space-md);
}

.settings-households__section[b-3xac5mlewu] {
    margin-top: var(--space-lg);
}

.settings-households__loading[b-3xac5mlewu] {
    display: flex;
    flex-direction: column;
    gap: var(--space);
}

.settings-households__skeleton[b-3xac5mlewu] {
    height: 120px;
    border-radius: var(--radius);
}

.settings-households__create[b-3xac5mlewu] {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 0;
    overflow: hidden;
}

.settings-households__create-summary[b-3xac5mlewu] {
    list-style: none;
    cursor: pointer;
    padding: var(--space) var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary-700);
    font-weight: 600;
    font-size: var(--text-md);
}

.settings-households__create-summary[b-3xac5mlewu]::-webkit-details-marker {
    display: none;
}

.settings-households__create-summary:hover[b-3xac5mlewu] {
    background: var(--neutral-50);
}

/* EditForm renders the <form> as a child component, so scope-attribute
   selectors here only match via ::deep. Same for InputText below. */
.settings-households__create[b-3xac5mlewu]  .settings-households__create-form {
    padding: var(--space) var(--space-md) var(--space-md);
    border-top: 1px solid var(--neutral-200);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.settings-households__field[b-3xac5mlewu] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.settings-households__field-label[b-3xac5mlewu] {
    font-weight: 600;
    color: var(--neutral-800);
    font-size: var(--text-sm);
}

.settings-households__create[b-3xac5mlewu]  .settings-households__field-error,
.settings-households__card[b-3xac5mlewu]  .settings-households__field-error {
    color: var(--accent-600);
    font-size: var(--text-sm);
}

.settings-households__create[b-3xac5mlewu]  .settings-households__input,
.settings-households__card[b-3xac5mlewu]  .settings-households__input {
    padding: var(--space-sm);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    font-size: var(--text-md);
    width: 100%;
    box-sizing: border-box;
    min-height: 44px;
    transition: var(--transition);
}

.settings-households__create[b-3xac5mlewu]  .settings-households__input:focus,
.settings-households__card[b-3xac5mlewu]  .settings-households__input:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: var(--focus-ring);
}

.settings-households__create-actions[b-3xac5mlewu] {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-sm);
}

.settings-households__list[b-3xac5mlewu] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .settings-households__list[b-3xac5mlewu] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.settings-households__card[b-3xac5mlewu] {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.settings-households__card--current[b-3xac5mlewu] {
    border-color: var(--primary-300);
    box-shadow: 0 0 0 1px var(--primary-200), var(--shadow-sm);
}

.settings-households__card-header[b-3xac5mlewu] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

.settings-households__card-title[b-3xac5mlewu] {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0;
    word-break: break-word;
}

.settings-households__badges[b-3xac5mlewu] {
    display: inline-flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.settings-households__badge[b-3xac5mlewu] {
    display: inline-block;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--neutral-200);
    color: var(--neutral-700);
}

.settings-households__badge--current[b-3xac5mlewu] {
    background: var(--primary-100);
    color: var(--primary-700);
}

.settings-households__badge--owner[b-3xac5mlewu] {
    background: var(--neutral-800);
    color: white;
}

.settings-households__badge--suspended[b-3xac5mlewu] {
    background: var(--accent-100);
    color: var(--accent-700);
}

.settings-households__meta[b-3xac5mlewu] {
    color: var(--neutral-600);
    font-size: var(--text-sm);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.settings-households__actions[b-3xac5mlewu] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xs);
}

.settings-households__action-form[b-3xac5mlewu] {
    margin: 0;
}

.settings-households__card[b-3xac5mlewu]  .settings-households__rename-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    flex: 1 1 100%;
}

.settings-households__rename-actions[b-3xac5mlewu] {
    display: flex;
    gap: var(--space-sm);
}

}
/* _content/Forkery.Web/Components/Pages/Settings/ManageAccountCalendarsPage.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.calendar-settings[b-t36b2b7hmd] {
    max-width: 880px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.calendar-settings__breadcrumb[b-t36b2b7hmd] {
    margin-bottom: var(--space);
}

.calendar-settings__title[b-t36b2b7hmd] {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.calendar-settings__subtitle[b-t36b2b7hmd] {
    font-size: var(--text-md);
    color: var(--neutral-600);
    margin: 0;
}

.calendar-settings__card[b-t36b2b7hmd] {
    padding: var(--space-md);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    background: white;
}

.calendar-settings__loading[b-t36b2b7hmd] {
    padding: var(--space-md);
}

.calendar-settings__skeleton[b-t36b2b7hmd] {
    height: 4rem;
}

.calendar-settings__empty[b-t36b2b7hmd] {
    color: var(--neutral-500);
    margin: 0;
}

.calendar-settings__connection-list[b-t36b2b7hmd] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.calendar-settings__connection[b-t36b2b7hmd] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "icon body actions";
    column-gap: var(--space-md);
    align-items: center;
    padding: var(--space-md);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    background: var(--neutral-50);
}

.calendar-settings__connection-icon[b-t36b2b7hmd] {
    grid-area: icon;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-100);
    border-radius: var(--radius);
    font-size: var(--text-lg);
    color: var(--neutral-700);
}

.calendar-settings__connection-body[b-t36b2b7hmd] {
    grid-area: body;
    min-width: 0;
}

.calendar-settings__connection-name[b-t36b2b7hmd] {
    font-weight: 600;
    color: var(--neutral-900);
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.calendar-settings__connection-provider[b-t36b2b7hmd] {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.calendar-settings__connection-meta[b-t36b2b7hmd] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xs);
    align-items: center;
}

.calendar-settings__connection-actions[b-t36b2b7hmd] {
    grid-area: actions;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: center;
}

.calendar-settings__status[b-t36b2b7hmd] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: var(--text-xs);
    font-weight: 500;
    background: var(--neutral-100);
    color: var(--neutral-700);
}

.calendar-settings__status--ok[b-t36b2b7hmd] {
    background: var(--secondary-50);
    color: var(--secondary-700);
}

.calendar-settings__status--muted[b-t36b2b7hmd] {
    background: var(--neutral-100);
    color: var(--neutral-500);
}

.calendar-settings__readonly-pill[b-t36b2b7hmd] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: var(--neutral-100);
    color: var(--neutral-600);
    font-size: var(--text-xs);
    font-weight: 500;
}

.calendar-settings__field[b-t36b2b7hmd] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--neutral-700);
    cursor: pointer;
}

.calendar-settings__field input[type="checkbox"][b-t36b2b7hmd] {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

.calendar-settings__add-actions[b-t36b2b7hmd] {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

}
/* _content/Forkery.Web/Components/Pages/Settings/ManageUsersPage.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.manage-users[b-1t4djjmrk6] {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space);
}

.manage-users__header[b-1t4djjmrk6] {
    margin: var(--space) 0 var(--space-lg);
}

.manage-users__title[b-1t4djjmrk6] {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.manage-users__subtitle[b-1t4djjmrk6] {
    font-size: var(--text-md);
    color: var(--neutral-600);
    margin: 0;
    max-width: 720px;
}

/* Sections — each major area gets a card */

.manage-users__section[b-1t4djjmrk6] {
    background: #fff;
    border: 1px solid var(--neutral-200);
    border-radius: 0.75rem;
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.manage-users__section h2[b-1t4djjmrk6] {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0 0 var(--space) 0;
}

.manage-users__empty[b-1t4djjmrk6] {
    color: var(--neutral-500);
    font-style: italic;
    margin: 0;
}

/* Invite form */

.manage-users__form[b-1t4djjmrk6] {
    display: flex;
    flex-direction: column;
    gap: var(--space);
}

.manage-users__label[b-1t4djjmrk6] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-700);
}

.manage-users__input[b-1t4djjmrk6] {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--neutral-300);
    border-radius: 0.375rem;
    font-size: var(--text-base);
    color: var(--neutral-900);
    background: #fff;
    width: 100%;
    max-width: 420px;
}

.manage-users__input:focus[b-1t4djjmrk6] {
    outline: 2px solid var(--primary-500);
    outline-offset: 1px;
    border-color: transparent;
}

.manage-users__fieldset[b-1t4djjmrk6] {
    border: 1px solid var(--neutral-200);
    border-radius: 0.5rem;
    padding: var(--space);
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    background: var(--neutral-50);
}

.manage-users__fieldset legend[b-1t4djjmrk6] {
    padding: 0 var(--space-xs);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-700);
}

.manage-users__fieldset > label[b-1t4djjmrk6] {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: 0.25rem 0;
    font-size: var(--text-sm);
    color: var(--neutral-800);
    cursor: pointer;
}

.manage-users__fieldset > label input[type="radio"][b-1t4djjmrk6],
.manage-users__fieldset > label input[type="checkbox"][b-1t4djjmrk6] {
    margin-top: 0.2rem;
    flex: 0 0 auto;
}

/* Permissions — grouped by area */

.manage-users__perm-area[b-1t4djjmrk6] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding: var(--space-sm) 0;
    border-top: 1px solid var(--neutral-200);
}

.manage-users__perm-area:first-child[b-1t4djjmrk6] {
    border-top: none;
    padding-top: 0;
}

.manage-users__perm-area > strong[b-1t4djjmrk6] {
    display: block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--neutral-500);
    margin-bottom: var(--space-xs);
}

.manage-users__perm-row[b-1t4djjmrk6] {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: 0.25rem 0;
    font-size: var(--text-sm);
    color: var(--neutral-800);
    cursor: pointer;
    line-height: 1.4;
}

.manage-users__perm-row input[type="checkbox"][b-1t4djjmrk6] {
    margin-top: 0.2rem;
    flex: 0 0 auto;
}

/* "Also add as a household member" toggle — sits between the permission
   fieldset and the submit button. Slightly more visual weight than a regular
   permission row since it controls a separate concept (household linkage). */
.manage-users__household-toggle[b-1t4djjmrk6] {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: 0.5rem;
    padding: var(--space) ;
    margin-top: var(--space-sm);
    align-items: flex-start;
    line-height: 1.5;
}

.manage-users__household-toggle .manage-users__hint[b-1t4djjmrk6] {
    color: var(--neutral-600);
    font-size: var(--text-sm);
    font-weight: 400;
}

.manage-users__household-toggle .manage-users__hint a[b-1t4djjmrk6] {
    color: var(--primary-600);
    text-decoration: underline;
}

/* Submit / action buttons */

.manage-users__submit[b-1t4djjmrk6],
.manage-users__member-actions button[b-1t4djjmrk6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    border: 1px solid var(--neutral-300);
    border-radius: 0.375rem;
    background: var(--neutral-50);
    color: var(--neutral-800);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.manage-users__submit[b-1t4djjmrk6] {
    align-self: flex-start;
    background: var(--primary-500);
    color: #fff;
    border-color: var(--primary-500);
}

.manage-users__submit:hover:not(:disabled)[b-1t4djjmrk6] {
    background: var(--primary-600);
    border-color: var(--primary-600);
}

.manage-users__submit:disabled[b-1t4djjmrk6] {
    opacity: 0.6;
    cursor: not-allowed;
}

.manage-users__member-actions button:hover:not(:disabled)[b-1t4djjmrk6] {
    background: #fff;
    border-color: var(--neutral-400);
}

.manage-users__danger[b-1t4djjmrk6] {
    color: var(--accent-600) !important;
    border-color: var(--accent-100) !important;
}

.manage-users__danger:hover:not(:disabled)[b-1t4djjmrk6] {
    background: var(--accent-50) !important;
    border-color: var(--accent-500) !important;
}

/* Pending invitations list */

.manage-users__invite-list[b-1t4djjmrk6],
.manage-users__member-list[b-1t4djjmrk6] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.manage-users__invite[b-1t4djjmrk6] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space) ;
    border: 1px solid var(--neutral-200);
    border-radius: 0.5rem;
    background: var(--neutral-50);
}

.manage-users__meta[b-1t4djjmrk6] {
    color: var(--neutral-500);
    font-size: var(--text-xs);
    margin-left: var(--space-xs);
}

.manage-users__status[b-1t4djjmrk6] {
    display: inline-block;
    margin-left: var(--space-xs);
    padding: 0.1rem 0.5rem;
    background: var(--neutral-200);
    border-radius: 999px;
    font-size: var(--text-xs);
    color: var(--neutral-700);
}

.manage-users__invite-actions[b-1t4djjmrk6] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
}

.manage-users__link[b-1t4djjmrk6] {
    flex: 1 1 320px;
    min-width: 0;
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--neutral-300);
    border-radius: 0.375rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: var(--text-xs);
    color: var(--neutral-700);
    background: #fff;
}

.manage-users__invite-actions button[b-1t4djjmrk6] {
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--neutral-300);
    border-radius: 0.375rem;
    background: #fff;
    color: var(--neutral-800);
    font-size: var(--text-sm);
    cursor: pointer;
}

.manage-users__invite-actions button:hover:not(:disabled)[b-1t4djjmrk6] {
    background: var(--neutral-100);
}

/* Members list */

.manage-users__member[b-1t4djjmrk6] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space);
    border: 1px solid var(--neutral-200);
    border-radius: 0.5rem;
    background: #fff;
}

.manage-users__member-head[b-1t4djjmrk6] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
}

.manage-users__badge[b-1t4djjmrk6] {
    display: inline-block;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.manage-users__badge--owner[b-1t4djjmrk6] {
    background: var(--primary-100);
    color: var(--primary-700);
}

.manage-users__badge--suspended[b-1t4djjmrk6] {
    background: var(--neutral-200);
    color: var(--neutral-700);
}

.manage-users__owner-note[b-1t4djjmrk6] {
    margin: 0;
    color: var(--neutral-500);
    font-size: var(--text-sm);
    font-style: italic;
}

.manage-users__member details > summary[b-1t4djjmrk6] {
    cursor: pointer;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-700);
    padding: var(--space-xs) 0;
}

.manage-users__member-actions[b-1t4djjmrk6] {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-top: var(--space-sm);
}

}
/* _content/Forkery.Web/Components/Pages/SettingsLanding.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.settings-landing[b-s5rc6wcbrn] {
    max-width: 960px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space);
}

.settings-landing__header[b-s5rc6wcbrn] {
    margin-bottom: var(--space-xl);
}

.settings-landing__title[b-s5rc6wcbrn] {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.settings-landing__subtitle[b-s5rc6wcbrn] {
    font-size: var(--text-md);
    color: var(--neutral-600);
    margin: 0;
}

.settings-landing__grid[b-s5rc6wcbrn] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .settings-landing__grid[b-s5rc6wcbrn] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.settings-landing__card[b-s5rc6wcbrn] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-lg);
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.settings-landing__card:hover[b-s5rc6wcbrn] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-100);
}

.settings-landing__card-icon[b-s5rc6wcbrn] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--primary-50);
    color: var(--primary-600);
    font-size: var(--text-xl);
    margin-bottom: var(--space);
}

.settings-landing__card-title[b-s5rc6wcbrn] {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0 0 var(--space-sm);
}

.settings-landing__card-desc[b-s5rc6wcbrn] {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.5;
}

.settings-landing__card-skeleton[b-s5rc6wcbrn] {
    height: 180px;
    border-radius: var(--radius-lg);
}

.settings-landing__empty[b-s5rc6wcbrn] {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.settings-landing__empty-icon[b-s5rc6wcbrn] {
    font-size: 2rem;
    color: var(--neutral-400);
    margin-bottom: var(--space);
}

.settings-landing__empty-title[b-s5rc6wcbrn] {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--neutral-800);
    margin: 0 0 var(--space-sm);
}

.settings-landing__empty-text[b-s5rc6wcbrn] {
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.5;
}

}
/* _content/Forkery.Web/Components/Pages/Shares/MyShares.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.my-shares[b-0gjmqsapow] {
    padding: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.my-shares__header[b-0gjmqsapow] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    gap: var(--space);
}

.my-shares__header-content[b-0gjmqsapow] {
    min-width: 0;
}

.my-shares__title[b-0gjmqsapow] {
    font-size: var(--text-3xl-tight);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.my-shares__title i[b-0gjmqsapow] {
    color: var(--primary-500);
}

.my-shares__subtitle[b-0gjmqsapow] {
    color: var(--neutral-500);
    margin: 0;
    font-size: var(--text-md);
}

.my-shares__toast[b-0gjmqsapow] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--secondary-300);
    background: var(--secondary-50);
    color: var(--secondary-700);
    border-radius: var(--radius);
    margin-bottom: var(--space);
    font-size: var(--text-sm);
}

.my-shares__error[b-0gjmqsapow] {
    padding: var(--space-sm) var(--space-md);
    background: var(--accent-50);
    border: 1px solid var(--accent-200);
    color: var(--accent-700);
    border-radius: var(--radius);
    margin-bottom: var(--space);
    font-size: var(--text-sm);
}

.my-shares__loading[b-0gjmqsapow] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.my-shares__skeleton-row[b-0gjmqsapow] {
    height: 80px;
    border-radius: var(--radius);
}

.my-shares__empty-icon[b-0gjmqsapow] {
    font-size: 4rem;
    color: var(--neutral-300);
    display: block;
}

.my-shares__group[b-0gjmqsapow] {
    margin-bottom: var(--space-lg);
}

.my-shares__group-header[b-0gjmqsapow] {
    margin-bottom: var(--space);
}

.my-shares__group-title[b-0gjmqsapow] {
    margin: 0 0 var(--space-xxs);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
}

.my-shares__group-description[b-0gjmqsapow] {
    margin: 0;
    color: var(--neutral-500);
    font-size: var(--text-sm);
}

.my-shares__list[b-0gjmqsapow] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.my-shares__row[b-0gjmqsapow] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space);
    padding: var(--space-md);
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
}

.my-shares__row-content[b-0gjmqsapow] {
    min-width: 0;
    flex: 1 1 auto;
}

.my-shares__row-title[b-0gjmqsapow] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-xxs);
}

.my-shares__row-title a[b-0gjmqsapow] {
    color: inherit;
    text-decoration: none;
}

.my-shares__row-title a:hover[b-0gjmqsapow] {
    color: var(--primary-600);
}

.my-shares__row-meta[b-0gjmqsapow] {
    color: var(--neutral-500);
    font-size: var(--text-sm);
}

.my-shares__row-actions[b-0gjmqsapow] {
    display: flex;
    gap: var(--space-xs);
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.my-shares__status[b-0gjmqsapow] {
    display: inline-flex;
    align-items: center;
    padding: 2px var(--space-sm);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.my-shares__status--head[b-0gjmqsapow] {
    background: var(--secondary-100);
    color: var(--secondary-700);
}

.my-shares__status--superseded[b-0gjmqsapow] {
    background: var(--neutral-100);
    color: var(--neutral-600);
}

.my-shares__status--unpublished[b-0gjmqsapow] {
    background: var(--warning-100);
    color: var(--warning-700);
}

}
/* _content/Forkery.Web/Components/Pages/ShoppingLists/ShoppingListDetailPage.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.shopping-list-detail[b-kcod04qne9] {
    padding: var(--space-lg);
    max-width: 1024px;
    margin: 0 auto;
}

.shopping-list-detail__header[b-kcod04qne9] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space);
    margin-bottom: var(--space-md);
}

.shopping-list-detail__title-group[b-kcod04qne9] {
    flex: 1;
    min-width: 0;
}

.shopping-list-detail__title[b-kcod04qne9] {
    margin: 0;
    font-size: var(--text-3xl-tight);
    font-weight: 700;
    color: var(--neutral-900);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    word-break: break-word;
    border-radius: var(--radius);
    padding: var(--space-xs) var(--space-sm);
    margin-left: calc(-1 * var(--space-sm));
}

.shopping-list-detail__title:hover[b-kcod04qne9],
.shopping-list-detail__title:focus-visible[b-kcod04qne9] {
    background: var(--neutral-100);
    outline: none;
}

.shopping-list-detail__rename-icon[b-kcod04qne9] {
    color: var(--neutral-400);
    font-size: var(--text-sm);
    opacity: 0;
    transition: var(--transition);
}

.shopping-list-detail__title:hover .shopping-list-detail__rename-icon[b-kcod04qne9],
.shopping-list-detail__title:focus-visible .shopping-list-detail__rename-icon[b-kcod04qne9] {
    opacity: 1;
}

.shopping-list-detail__rename-form[b-kcod04qne9] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
}

.shopping-list-detail__rename-input[b-kcod04qne9] {
    flex: 1;
    min-width: 200px;
}

.shopping-list-detail__week-meta[b-kcod04qne9] {
    margin: var(--space-xs) 0 0;
    color: var(--neutral-500);
    font-size: var(--text-sm);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.shopping-list-detail__header-actions[b-kcod04qne9] {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.shopping-list-detail__progress-section[b-kcod04qne9] {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--space) var(--space-md);
    margin-bottom: var(--space);
    box-shadow: var(--shadow-sm);
}

.shopping-list-detail__error[b-kcod04qne9] {
    margin-bottom: var(--space);
}

.shopping-list-detail__add-card[b-kcod04qne9] {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow);
}

.shopping-list-detail__add-title[b-kcod04qne9] {
    margin: 0 0 var(--space);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-800);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.shopping-list-detail__add-title i[b-kcod04qne9] {
    color: var(--primary-500);
}

.shopping-list-detail__add-form[b-kcod04qne9] {
    display: flex;
    flex-direction: column;
    gap: var(--space);
}

.shopping-list-detail__add-grid[b-kcod04qne9] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: var(--space-sm);
}

.shopping-list-detail__add-field[b-kcod04qne9] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    font-size: var(--text-xs);
    color: var(--neutral-700);
    font-weight: 500;
}

.shopping-list-detail__add-field--name[b-kcod04qne9] {
    grid-column: 1 / 2;
}

.shopping-list-detail__add-field--notes[b-kcod04qne9] {
    grid-column: 1 / -1;
}

.shopping-list-detail__add-actions[b-kcod04qne9] {
    display: flex;
    justify-content: flex-end;
}

.shopping-list-detail__category[b-kcod04qne9] {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--space) var(--space-md);
    margin-bottom: var(--space);
    box-shadow: var(--shadow-sm);
}

.shopping-list-detail__category-header[b-kcod04qne9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.shopping-list-detail__category-count[b-kcod04qne9] {
    color: var(--neutral-500);
    font-size: var(--text-xs);
    font-weight: 500;
}

.shopping-list-detail__items[b-kcod04qne9] {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Category pills */
.item-category[b-kcod04qne9] {
    display: inline-block;
    background: var(--neutral-100);
    color: var(--neutral-700);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-xl);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.item-category--produce[b-kcod04qne9] {
    background: var(--secondary-100);
    color: var(--secondary-700);
}

.item-category--dairy[b-kcod04qne9] {
    background: var(--warning-100);
    color: var(--warning-700);
}

.item-category--meat[b-kcod04qne9] {
    background: var(--accent-100);
    color: var(--accent-600);
}

.item-category--pantry[b-kcod04qne9] {
    background: var(--primary-100);
    color: var(--primary-700);
}

/* Empty & not-found states */

.shopping-list-detail__empty[b-kcod04qne9],
.shopping-list-detail__not-found[b-kcod04qne9] {
    background: white;
    border: 1px dashed var(--neutral-300);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    max-width: 560px;
    margin: var(--space-lg) auto;
}

.shopping-list-detail__empty-icon[b-kcod04qne9],
.shopping-list-detail__not-found-icon[b-kcod04qne9] {
    font-size: 3rem;
    color: var(--neutral-400);
    margin-bottom: var(--space);
}

.shopping-list-detail__empty-title[b-kcod04qne9],
.shopping-list-detail__not-found-title[b-kcod04qne9] {
    margin: 0 0 var(--space-sm);
    color: var(--neutral-800);
    font-size: var(--text-xl);
    font-weight: 600;
}

.shopping-list-detail__empty-text[b-kcod04qne9],
.shopping-list-detail__not-found-text[b-kcod04qne9] {
    color: var(--neutral-500);
    margin: 0 0 var(--space-lg);
}

/* Loading skeletons */

.shopping-list-detail__loading[b-kcod04qne9] {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space);
}

.shopping-list-detail__skeleton-header[b-kcod04qne9] {
    height: 64px;
    border-radius: var(--radius-lg);
}

.shopping-list-detail__skeleton-body[b-kcod04qne9] {
    height: 320px;
    border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
    .shopping-list-detail[b-kcod04qne9] {
        padding: var(--space);
    }

    .shopping-list-detail__header[b-kcod04qne9] {
        flex-direction: column;
        align-items: stretch;
    }

    .shopping-list-detail__add-grid[b-kcod04qne9] {
        grid-template-columns: 1fr 1fr;
    }

    .shopping-list-detail__add-field--name[b-kcod04qne9] {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .shopping-list-detail__add-grid[b-kcod04qne9] {
        grid-template-columns: 1fr;
    }
}

}
/* _content/Forkery.Web/Components/Pages/ShoppingLists/ShoppingListsPage.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.shopping-lists[b-yhdbcdmp1w] {
    padding: var(--space-lg);
}

.shopping-lists__header[b-yhdbcdmp1w] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space);
    margin-bottom: var(--space-lg);
}

.shopping-lists__header-content[b-yhdbcdmp1w] {
    flex: 1;
    min-width: 0;
}

.shopping-lists__title[b-yhdbcdmp1w] {
    margin: 0 0 var(--space-xs);
    font-size: var(--text-3xl-tight);
    font-weight: 700;
    color: var(--neutral-900);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.shopping-lists__title i[b-yhdbcdmp1w] {
    color: var(--primary-500);
}

.shopping-lists__subtitle[b-yhdbcdmp1w] {
    margin: 0;
    color: var(--neutral-500);
    font-size: var(--text-md);
}

.shopping-lists__header-actions[b-yhdbcdmp1w] {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.shopping-lists__error[b-yhdbcdmp1w] {
    display: flex;
    align-items: center;
    gap: var(--space);
    margin-bottom: var(--space);
}

.shopping-lists__grid[b-yhdbcdmp1w] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space);
}

.shopping-lists__loading[b-yhdbcdmp1w] {
    margin-top: var(--space);
}

.shopping-lists__skeleton-grid[b-yhdbcdmp1w] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space);
}

.shopping-lists__skeleton[b-yhdbcdmp1w] {
    height: 200px;
    border-radius: var(--radius-lg);
}

.shopping-lists__empty[b-yhdbcdmp1w] {
    background: white;
    border: 1px dashed var(--neutral-300);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    max-width: 560px;
    margin: var(--space-lg) auto;
}

.shopping-lists__empty-icon[b-yhdbcdmp1w] {
    font-size: 3rem;
    color: var(--neutral-400);
    margin-bottom: var(--space);
}

.shopping-lists__empty-title[b-yhdbcdmp1w] {
    margin: 0 0 var(--space-sm);
    color: var(--neutral-800);
    font-size: var(--text-xl);
    font-weight: 600;
}

.shopping-lists__empty-text[b-yhdbcdmp1w] {
    color: var(--neutral-500);
    margin: 0 0 var(--space-lg);
}

.shopping-lists__empty-actions[b-yhdbcdmp1w] {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
}

@media (max-width: 640px) {
    .shopping-lists[b-yhdbcdmp1w] {
        padding: var(--space);
    }

    .shopping-lists__header[b-yhdbcdmp1w] {
        flex-direction: column;
        align-items: stretch;
    }

    .shopping-lists__header-actions[b-yhdbcdmp1w] {
        justify-content: stretch;
    }

    .shopping-lists__grid[b-yhdbcdmp1w],
    .shopping-lists__skeleton-grid[b-yhdbcdmp1w] {
        grid-template-columns: 1fr;
    }
}

}
/* _content/Forkery.Web/Components/Shared/Calendar/EventDetailsModal.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.event-modal__backdrop[b-4hu8swd045] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: var(--space);
}

.event-modal[b-4hu8swd045] {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.event-modal__header[b-4hu8swd045] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--neutral-200);
}

.event-modal__title[b-4hu8swd045] {
    margin: 0;
    flex: 1;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.event-modal__synced-badge[b-4hu8swd045] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: var(--neutral-100);
    color: var(--neutral-700);
    font-size: var(--text-xs);
    font-weight: 500;
}

.event-modal__close[b-4hu8swd045] {
    background: transparent;
    border: none;
    font-size: var(--text-lg);
    color: var(--neutral-500);
    cursor: pointer;
    padding: var(--space-xs);
}

.event-modal__close:hover[b-4hu8swd045] {
    color: var(--neutral-900);
}

.event-modal__body[b-4hu8swd045] {
    padding: var(--space-lg);
    overflow-y: auto;
}

.event-modal__error[b-4hu8swd045] {
    margin-bottom: var(--space-md);
}

.event-modal__loading[b-4hu8swd045] {
    padding: var(--space-lg);
}

.event-modal__skeleton[b-4hu8swd045] {
    height: 280px;
    border-radius: var(--radius);
}

.event-modal__field[b-4hu8swd045] {
    margin-bottom: var(--space-md);
}

.event-modal__fieldset[b-4hu8swd045] {
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-md);
}

.event-modal__row[b-4hu8swd045] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 480px) {
    .event-modal__row[b-4hu8swd045] {
        grid-template-columns: 1fr;
    }
}

.event-modal__label[b-4hu8swd045] {
    display: block;
    font-weight: 500;
    color: var(--neutral-800);
    margin-bottom: var(--space-xs);
}

.event-modal__input[b-4hu8swd045] {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    font: inherit;
    background: white;
    color: var(--neutral-900);
}

.event-modal__input:focus[b-4hu8swd045] {
    outline: 2px solid var(--primary-500);
    outline-offset: 1px;
}

.event-modal__input:disabled[b-4hu8swd045] {
    background: var(--neutral-100);
    color: var(--neutral-700);
    cursor: not-allowed;
}

.event-modal__textarea[b-4hu8swd045] {
    resize: vertical;
    min-height: 4rem;
    line-height: 1.4;
    font-family: inherit;
}

.event-modal__toggle[b-4hu8swd045] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    cursor: pointer;
    color: var(--neutral-800);
}

.event-modal__toggle-row[b-4hu8swd045] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin: var(--space-xs) 0;
}

.event-modal__toggle--inline[b-4hu8swd045] {
    margin: 0;
}

.event-modal__hint[b-4hu8swd045] {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    margin: var(--space-xs) 0 0;
}

.event-modal__footer[b-4hu8swd045] {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--neutral-200);
    flex-wrap: wrap;
}

}
/* _content/Forkery.Web/Components/Shared/Calendar/InlineEventCard.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.inline-event-card[b-4f9jcur5gi] {
    all: unset;
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--warning-500);
    background: linear-gradient(135deg, var(--warning-50) 0%, var(--warning-100) 100%);
    color: var(--warning-800);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    min-width: 0;
}

.inline-event-card:hover[b-4f9jcur5gi] {
    filter: brightness(0.97);
}

.inline-event-card:focus-visible[b-4f9jcur5gi] {
    outline: 2px solid var(--warning-500);
    outline-offset: 2px;
}

.inline-event-card__icon[b-4f9jcur5gi] {
    flex: 0 0 auto;
    color: var(--warning-600);
    margin-top: 2px;
    font-size: var(--text-sm);
}

.inline-event-card__body[b-4f9jcur5gi] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.inline-event-card__title[b-4f9jcur5gi] {
    font-weight: 500;
    font-size: var(--text-sm);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.inline-event-card__time[b-4f9jcur5gi] {
    color: var(--warning-600);
    font-size: var(--text-xs);
    font-variant-numeric: tabular-nums;
}

/* When a calendar colour is supplied via inline style, the time/icon should
   inherit so they don't clash with the tinted background. */
.inline-event-card--colored .inline-event-card__icon[b-4f9jcur5gi],
.inline-event-card--colored .inline-event-card__time[b-4f9jcur5gi] {
    color: inherit;
    opacity: 0.9;
}

.inline-event-card--skip .inline-event-card__title[b-4f9jcur5gi] {
    text-decoration: line-through;
    opacity: 0.8;
}

.inline-event-card--skip .inline-event-card__icon[b-4f9jcur5gi] {
    color: var(--neutral-500);
}

}
/* _content/Forkery.Web/Components/Shared/Catalogue/CatalogueFilters.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.catalogue-filters[b-uj0624zlta] {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.catalogue-filters__search-wrap[b-uj0624zlta] {
    position: relative;
}

.catalogue-filters__search-icon[b-uj0624zlta] {
    position: absolute;
    left: var(--space-sm);
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-400);
    pointer-events: none;
}

.catalogue-filters__search-input[b-uj0624zlta] {
    width: 100%;
    padding: var(--space-sm) var(--space-sm) var(--space-sm) calc(var(--space-sm) + 1.25rem);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    background: white;
    color: var(--neutral-800);
    font-size: var(--text-sm);
    transition: var(--transition);
}

.catalogue-filters__search-input:focus[b-uj0624zlta] {
    outline: none;
    border-color: var(--primary-400);
    box-shadow: var(--focus-ring);
}

.catalogue-filters__select[b-uj0624zlta] {
    width: 100%;
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    background: white;
    color: var(--neutral-700);
    font-size: var(--text-sm);
    min-height: 36px;
    transition: var(--transition);
}

.catalogue-filters__select:focus[b-uj0624zlta] {
    outline: none;
    border-color: var(--primary-400);
    box-shadow: var(--focus-ring);
}

.catalogue-filters__tag-list[b-uj0624zlta] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.catalogue-filters__tag[b-uj0624zlta] {
    display: inline-flex;
    align-items: center;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    border: 1px solid var(--neutral-300);
    background: white;
    color: var(--neutral-600);
    font-size: var(--text-xs);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.catalogue-filters__tag:hover[b-uj0624zlta] {
    border-color: var(--primary-300);
    color: var(--primary-600);
}

.catalogue-filters__tag--active[b-uj0624zlta] {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
}

}
/* _content/Forkery.Web/Components/Shared/Catalogue/SharedRecipeCard.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.shared-recipe-card[b-7f8bnflbuo] {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.shared-recipe-card:hover[b-7f8bnflbuo] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.shared-recipe-card__link[b-7f8bnflbuo] {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    flex: 1 1 auto;
}

.shared-recipe-card__image-container[b-7f8bnflbuo] {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: var(--neutral-100);
    overflow: hidden;
    position: relative;
}

.shared-recipe-card__image[b-7f8bnflbuo] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shared-recipe-card__image-placeholder[b-7f8bnflbuo] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-100);
}

.shared-recipe-card__placeholder-icon[b-7f8bnflbuo] {
    font-size: 2.5rem;
    color: var(--neutral-300);
}

.shared-recipe-card__content[b-7f8bnflbuo] {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex: 1 1 auto;
}

.shared-recipe-card__title[b-7f8bnflbuo] {
    margin: 0;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
}

.shared-recipe-card__description[b-7f8bnflbuo] {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--neutral-600);
    line-height: 1.4;
}

.shared-recipe-card__meta[b-7f8bnflbuo] {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: auto;
}

.shared-recipe-card__meta-item[b-7f8bnflbuo] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-xs);
    color: var(--neutral-600);
}

.shared-recipe-card__meta-item i[b-7f8bnflbuo] {
    color: var(--neutral-400);
}

.shared-recipe-card__badges[b-7f8bnflbuo] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.shared-recipe-card__footer[b-7f8bnflbuo] {
    padding: 0 var(--space-md) var(--space-md);
    display: flex;
    justify-content: flex-end;
}

.shared-recipe-card__fork-btn[b-7f8bnflbuo] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.shared-recipe-card__own-label[b-7f8bnflbuo] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--neutral-500);
    font-weight: 500;
}

}
/* _content/Forkery.Web/Components/Shared/CookMode/TimerBar.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.timer-bar[b-dcpq1znh9y] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: stretch;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space);
    background: white;
    border-top: 1px solid var(--neutral-200);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    min-height: 88px;
}

.timer-bar__scroll[b-dcpq1znh9y] {
    flex: 1;
    display: flex;
    align-items: stretch;
    gap: var(--space-sm);
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
}

.timer-bar__empty[b-dcpq1znh9y] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-500);
    font-size: var(--text-sm);
    font-style: italic;
}

.timer-bar__add[b-dcpq1znh9y] {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.timer-bar__add-btn[b-dcpq1znh9y] {
    all: unset;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space);
    border-radius: var(--radius-md);
    background: var(--primary-600);
    color: white;
    font-weight: 600;
    font-size: var(--text-sm);
    white-space: nowrap;
}

.timer-bar__add-btn:hover[b-dcpq1znh9y] {
    background: var(--primary-700);
}

.timer-bar__add-btn:focus-visible[b-dcpq1znh9y] {
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Timer chip --------------------------------------------------- */

.timer-chip[b-dcpq1znh9y] {
    flex: 0 0 220px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-sm);
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
                box-shadow 150ms ease, transform 150ms ease;
}

.timer-chip--running[b-dcpq1znh9y] {
    border-color: var(--primary-400);
    background: var(--primary-50);
}

.timer-chip--paused[b-dcpq1znh9y] {
    border-color: var(--neutral-300);
    background: var(--neutral-100);
}

.timer-chip--complete[b-dcpq1znh9y] {
    border-color: var(--primary-500);
    background: var(--primary-100);
    animation: timer-chip-pulse-b-dcpq1znh9y 1.4s ease-in-out infinite;
}

@keyframes timer-chip-pulse-b-dcpq1znh9y {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.45);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
    }
}

.timer-chip__header[b-dcpq1znh9y] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    min-width: 0;
}

.timer-chip__label[b-dcpq1znh9y] {
    all: unset;
    cursor: pointer;
    flex: 1;
    min-width: 0;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-800);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 2px var(--space-xs);
    border-radius: var(--radius-sm);
}

.timer-chip__label:hover[b-dcpq1znh9y] {
    background: rgba(0, 0, 0, 0.04);
}

.timer-chip__label-input[b-dcpq1znh9y] {
    flex: 1;
    min-width: 0;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-900);
    padding: 2px var(--space-xs);
    border: 1px solid var(--primary-400);
    border-radius: var(--radius-sm);
    background: white;
}

.timer-chip__remove[b-dcpq1znh9y] {
    all: unset;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: var(--radius-sm);
    color: var(--neutral-500);
    font-size: var(--text-xs);
}

.timer-chip__remove:hover[b-dcpq1znh9y] {
    background: var(--accent-50);
    color: var(--accent-600);
}

.timer-chip__body[b-dcpq1znh9y] {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Progress ring — conic gradient driven by --timer-progress var. */
.timer-chip__ring[b-dcpq1znh9y] {
    position: relative;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary-500) calc(var(--timer-progress, 0) * 1%),
        var(--neutral-200) 0
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer-chip__ring-inner[b-dcpq1znh9y] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
}

.timer-chip--complete .timer-chip__ring[b-dcpq1znh9y] {
    background: conic-gradient(
        var(--primary-600) 100%,
        var(--primary-600) 0
    );
}

.timer-chip__display[b-dcpq1znh9y] {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.1;
}

.timer-chip__time[b-dcpq1znh9y] {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--neutral-900);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
}

.timer-chip__total[b-dcpq1znh9y] {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    font-variant-numeric: tabular-nums;
}

.timer-chip__done[b-dcpq1znh9y] {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-700);
}

.timer-chip__overrun[b-dcpq1znh9y] {
    font-size: var(--text-xl);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--accent-600);
}

.timer-chip__done-label[b-dcpq1znh9y] {
    font-size: var(--text-xs);
    color: var(--accent-600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.timer-chip__controls[b-dcpq1znh9y] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.timer-chip__btn[b-dcpq1znh9y] {
    all: unset;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 6px var(--space-sm);
    min-width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: white;
    border: 1px solid var(--neutral-200);
    color: var(--neutral-700);
    font-size: var(--text-xs);
}

.timer-chip__btn:hover[b-dcpq1znh9y] {
    background: var(--neutral-100);
    border-color: var(--neutral-300);
}

.timer-chip__btn--primary[b-dcpq1znh9y] {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: white;
    font-weight: 600;
    padding: 6px var(--space);
}

.timer-chip__btn--primary:hover[b-dcpq1znh9y] {
    background: var(--primary-700);
    border-color: var(--primary-700);
}

/* Add-timer form ---------------------------------------------- */

.timer-add-form[b-dcpq1znh9y] {
    position: absolute;
    bottom: calc(100% + var(--space-sm));
    right: 0;
    min-width: 280px;
    max-width: 90vw;
    padding: var(--space);
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    z-index: 1;
}

.timer-add-form__row[b-dcpq1znh9y] {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.timer-add-form__field[b-dcpq1znh9y] {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.timer-add-form__label[b-dcpq1znh9y] {
    font-size: var(--text-xs);
    color: var(--neutral-600);
    font-weight: 600;
}

.timer-add-form__input[b-dcpq1znh9y] {
    padding: 6px var(--space-sm);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    background: white;
    color: var(--neutral-900);
}

.timer-add-form__input:focus[b-dcpq1znh9y] {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: var(--focus-ring);
}

.timer-add-form__error[b-dcpq1znh9y] {
    font-size: var(--text-xs);
    color: var(--accent-600);
}

.timer-add-form__actions[b-dcpq1znh9y] {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-xs);
}

.timer-add-form__cancel[b-dcpq1znh9y],
.timer-add-form__submit[b-dcpq1znh9y] {
    all: unset;
    cursor: pointer;
    padding: 6px var(--space);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 600;
}

.timer-add-form__cancel[b-dcpq1znh9y] {
    color: var(--neutral-700);
    border: 1px solid var(--neutral-200);
}

.timer-add-form__cancel:hover[b-dcpq1znh9y] {
    background: var(--neutral-100);
}

.timer-add-form__submit[b-dcpq1znh9y] {
    background: var(--primary-600);
    color: white;
}

.timer-add-form__submit:hover[b-dcpq1znh9y] {
    background: var(--primary-700);
}

/* Responsive --------------------------------------------------- */

@media (max-width: 640px) {
    .timer-bar[b-dcpq1znh9y] {
        padding: var(--space-xs) var(--space-sm);
        min-height: 80px;
    }

    .timer-chip[b-dcpq1znh9y] {
        flex: 0 0 200px;
    }

    .timer-bar__add-btn span[b-dcpq1znh9y] {
        display: none;
    }

    .timer-bar__add-btn[b-dcpq1znh9y] {
        padding: var(--space-sm);
    }

    .timer-add-form[b-dcpq1znh9y] {
        position: fixed;
        left: var(--space-sm);
        right: var(--space-sm);
        bottom: calc(80px + var(--space-sm));
        min-width: 0;
        max-width: none;
    }
}

@media (min-width: 960px) {
    .timer-chip[b-dcpq1znh9y] {
        flex: 1 1 220px;
        max-width: 280px;
    }
}

/* ----- Layout-toggle buttons (right side of bar) ------------------------ */

.timer-bar__layout[b-dcpq1znh9y] {
    display: flex;
    align-items: center;
    gap: 2px;
    padding-left: var(--space-sm);
    border-left: 1px solid var(--neutral-200);
    flex: 0 0 auto;
}

.timer-bar__layout-btn[b-dcpq1znh9y] {
    all: unset;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--neutral-500);
    font-size: 0.85rem;
}

.timer-bar__layout-btn:hover[b-dcpq1znh9y],
.timer-bar__layout-btn:focus-visible[b-dcpq1znh9y] {
    background: var(--neutral-100);
    color: var(--neutral-900);
    outline: none;
}

.timer-bar__layout-btn--active[b-dcpq1znh9y] {
    background: var(--primary-50);
    color: var(--primary-600);
}

/* ----- Sidebar mode ------------------------------------------------------ */

.timer-bar--sidebar[b-dcpq1znh9y] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    border-top: none;
    border-left: 1px solid var(--neutral-200);
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.08);
    padding: var(--space);
    gap: var(--space-sm);
}

.timer-bar--sidebar .timer-bar__scroll[b-dcpq1znh9y] {
    flex: 1 1 auto;
    flex-direction: column;
    overflow-x: visible;
    overflow-y: auto;
    align-items: stretch;
}

.timer-bar--sidebar .timer-chip[b-dcpq1znh9y] {
    flex: 0 0 auto;
    max-width: none;
    width: 100%;
}

.timer-bar--sidebar .timer-bar__add[b-dcpq1znh9y] {
    flex: 0 0 auto;
}

.timer-bar--sidebar .timer-bar__layout[b-dcpq1znh9y] {
    border-left: none;
    border-top: 1px solid var(--neutral-200);
    padding-left: 0;
    padding-top: var(--space-sm);
    justify-content: center;
}

.timer-bar--sidebar .timer-add-form[b-dcpq1znh9y] {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
}

/* ----- Collapsed mode (FAB) ---------------------------------------------- */

.timer-bar--collapsed[b-dcpq1znh9y] {
    all: unset;
    cursor: pointer;
    position: fixed;
    bottom: var(--space);
    right: var(--space);
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 56px;
    min-height: 56px;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: var(--primary-600);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    font-weight: 600;
    transition: var(--transition);
}

.timer-bar--collapsed:hover[b-dcpq1znh9y],
.timer-bar--collapsed:focus-visible[b-dcpq1znh9y] {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    outline: none;
}

.timer-bar--collapsed-alert[b-dcpq1znh9y] {
    background: var(--accent-600);
    animation: timer-bar-fab-pulse-b-dcpq1znh9y 1.2s ease-in-out infinite;
}

@keyframes timer-bar-fab-pulse-b-dcpq1znh9y {
    0%, 100% { box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45); }
    50% { box-shadow: 0 6px 28px rgba(220, 38, 38, 0.75); }
}

.timer-bar__fab-icon[b-dcpq1znh9y] {
    font-size: 1.1rem;
}

.timer-bar__fab-content[b-dcpq1znh9y] {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}

.timer-bar__fab-time[b-dcpq1znh9y] {
    font-size: 1rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.timer-bar__fab-label[b-dcpq1znh9y] {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.85;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.timer-bar__fab-empty[b-dcpq1znh9y] {
    font-size: 0.85rem;
}

}
/* _content/Forkery.Web/Components/Shared/FavouriteButton.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

/* --- Favourite Button --- */
.favourite-button[b-utecahn6aj] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: var(--text-2xl);
    padding: var(--space-xs);
    transition: var(--transition);
    line-height: 1;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.favourite-button:hover[b-utecahn6aj] {
    transform: scale(1.15);
}

.favourite-button:focus[b-utecahn6aj] {
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-100);
}

.favourite-button--active[b-utecahn6aj] {
    color: var(--accent-500);
}

.favourite-button:not(.favourite-button--active)[b-utecahn6aj] {
    color: var(--neutral-400);
}

}
/* _content/Forkery.Web/Components/Shared/Household/HouseholdMemberCard.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.household-member-card[b-cxn91ig142] {
    display: flex;
    flex-direction: column;
    gap: var(--space);
    padding: var(--space-md);
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.household-member-card--inactive[b-cxn91ig142] {
    opacity: 0.75;
    background: var(--neutral-50);
}

.household-member-card__header[b-cxn91ig142] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space);
}

.household-member-card__identity[b-cxn91ig142] {
    min-width: 0;
}

.household-member-card__name[b-cxn91ig142] {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0 0 var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.household-member-card__linked[b-cxn91ig142] {
    font-size: var(--text-sm);
    color: var(--neutral-500);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.household-member-card__actions[b-cxn91ig142] {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
    justify-content: flex-end;
}

.household-member-card__body[b-cxn91ig142] {
    display: flex;
    flex-direction: column;
    gap: var(--space);
}

.household-member-card__section[b-cxn91ig142] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.household-member-card__section-title[b-cxn91ig142] {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-700);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.household-member-card__empty[b-cxn91ig142] {
    font-size: var(--text-sm);
    color: var(--neutral-500);
    margin: 0;
    font-style: italic;
}

.household-member-card__chips[b-cxn91ig142] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.household-chip[b-cxn91ig142] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: var(--text-sm);
    font-weight: 500;
    background: var(--neutral-100);
    color: var(--neutral-800);
    border: 1px solid var(--neutral-200);
}

.household-chip--predefined[b-cxn91ig142] {
    background: var(--primary-50);
    color: var(--primary-700);
    border-color: var(--primary-100);
}

.household-chip--custom[b-cxn91ig142] {
    background: #fff7ed;
    color: #9a3412;
    border-color: #fed7aa;
}

.household-chip--cuisine[b-cxn91ig142] {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}

.household-chip--time[b-cxn91ig142] {
    background: #eff6ff;
    color: #1e40af;
    border-color: #bfdbfe;
}

}
/* _content/Forkery.Web/Components/Shared/Household/HouseholdMemberForm.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.household-form[b-2avxbbadn5] {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-lg);
}

.household-form__header[b-2avxbbadn5] {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--neutral-100);
}

.household-form__title[b-2avxbbadn5] {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.household-form__error[b-2avxbbadn5] {
    margin-bottom: var(--space-md);
}

.household-form__grid[b-2avxbbadn5] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

@media (min-width: 640px) {
    .household-form__grid[b-2avxbbadn5] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.household-form__field[b-2avxbbadn5] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.household-form__label[b-2avxbbadn5] {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-800);
}

.household-form__required[b-2avxbbadn5] {
    color: var(--accent-600);
}

.household-form__optional[b-2avxbbadn5] {
    color: var(--neutral-500);
    font-weight: 400;
    font-size: var(--text-xs);
}

.household-form__input[b-2avxbbadn5] {
    padding: var(--space-sm) var(--space);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    font-size: var(--text-md);
    background: white;
    width: 100%;
}

.household-form__input:focus[b-2avxbbadn5] {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: var(--focus-ring);
}

.household-form__section[b-2avxbbadn5] {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--neutral-100);
}

.household-form__section-title[b-2avxbbadn5] {
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--neutral-800);
    margin: 0 0 var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.household-form__section-hint[b-2avxbbadn5] {
    font-size: var(--text-sm);
    color: var(--neutral-500);
    margin: 0 0 var(--space);
}

.household-form__checkbox-grid[b-2avxbbadn5] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm) var(--space);
    margin-bottom: var(--space-md);
}

@media (min-width: 640px) {
    .household-form__checkbox-grid[b-2avxbbadn5] {
        grid-template-columns: repeat(3, 1fr);
    }
}

.household-form__checkbox[b-2avxbbadn5] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--neutral-800);
    cursor: pointer;
}

.household-form__tag-input[b-2avxbbadn5] {
    margin-top: var(--space);
}

.household-form__tag-row[b-2avxbbadn5] {
    display: flex;
    gap: var(--space-sm);
    align-items: stretch;
    margin-bottom: var(--space-sm);
}

.household-form__tag-row .household-form__input[b-2avxbbadn5] {
    flex: 1 1 auto;
}

.household-form__chips[b-2avxbbadn5] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-xs);
}

.household-form__time-grid[b-2avxbbadn5] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space);
}

@media (min-width: 640px) {
    .household-form__time-grid[b-2avxbbadn5] {
        grid-template-columns: repeat(3, 1fr);
    }
}

.household-form__footer[b-2avxbbadn5] {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--neutral-100);
}

.household-chip[b-2avxbbadn5] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: var(--text-sm);
    font-weight: 500;
    background: var(--neutral-100);
    color: var(--neutral-800);
    border: 1px solid var(--neutral-200);
}

.household-chip--custom[b-2avxbbadn5] {
    background: #fff7ed;
    color: #9a3412;
    border-color: #fed7aa;
}

.household-chip--cuisine[b-2avxbbadn5] {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}

.household-chip--removable[b-2avxbbadn5] {
    padding-right: 0.25rem;
}

.household-chip__remove[b-2avxbbadn5] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    opacity: 0.7;
    font-size: 0.7rem;
}

.household-chip__remove:hover[b-2avxbbadn5] {
    opacity: 1;
    background: rgba(0, 0, 0, 0.08);
}

/* Inline hint styling — used under the name input to explain the
   "name OR pick a user" combobox behaviour. */
.household-form__hint--block[b-2avxbbadn5] {
    display: block;
    font-size: var(--text-xs);
    color: var(--neutral-500);
    margin: 0 0 var(--space-xs);
    line-height: 1.4;
}

.household-form__hint--block em[b-2avxbbadn5] {
    font-style: italic;
    color: var(--neutral-700);
}

/* "Linked to alice@example.com [×]" pill that appears under the name input
   once the user has been linked to a tenant account. */
.household-form__link-chip[b-2avxbbadn5] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.35rem 0.65rem;
    margin-top: var(--space-xs);
    background: var(--primary-50);
    color: var(--primary-700);
    border: 1px solid var(--primary-100);
    border-radius: 999px;
    font-size: var(--text-sm);
    align-self: flex-start;
}

.household-form__link-chip strong[b-2avxbbadn5] {
    font-weight: 600;
}

.household-form__link-chip-tag[b-2avxbbadn5] {
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.05rem 0.4rem;
    border-radius: 999px;
}

.household-form__link-chip-remove[b-2avxbbadn5] {
    border: none;
    background: transparent;
    color: var(--primary-700);
    padding: 0.15rem 0.35rem;
    cursor: pointer;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.household-form__link-chip-remove:hover[b-2avxbbadn5] {
    background: var(--primary-100);
}

/* Soft warning when the typed value matches an email already linked elsewhere. */
.household-form__link-warn[b-2avxbbadn5] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.35rem 0.65rem;
    margin-top: var(--space-xs);
    background: var(--accent-50);
    color: var(--accent-600);
    border: 1px solid var(--accent-100);
    border-radius: 0.375rem;
    font-size: var(--text-sm);
    align-self: flex-start;
}

}
/* _content/Forkery.Web/Components/Shared/MealPlan/AutoFillPreview.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {
.auto-fill-preview__backdrop[b-fboyppbiis] {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.5);
    z-index: 950;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-md);
    overflow-y: auto;
}

.auto-fill-preview[b-fboyppbiis] {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 1100px;
    margin-top: 4vh;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 8vh);
    overflow: hidden;
}

.auto-fill-preview__header[b-fboyppbiis] {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space) var(--space-md);
    border-bottom: 1px solid var(--neutral-200);
    background: var(--neutral-50);
    position: relative;
}

.auto-fill-preview__title[b-fboyppbiis] {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex: 1;
}

.auto-fill-preview__theme-override[b-fboyppbiis] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--neutral-700);
}

.auto-fill-preview__theme-select[b-fboyppbiis] {
    padding: 0.25rem var(--space-sm);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    background: white;
    font-family: inherit;
}

.auto-fill-preview__theme-select--override[b-fboyppbiis] {
    border-color: var(--primary-400);
    background: var(--primary-50);
    color: var(--primary-700);
    font-weight: 600;
}

.auto-fill-preview__close[b-fboyppbiis] {
    background: transparent;
    border: none;
    color: var(--neutral-500);
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.auto-fill-preview__close:hover[b-fboyppbiis] {
    background: var(--neutral-100);
    color: var(--neutral-800);
}

.auto-fill-preview__error[b-fboyppbiis] {
    margin: var(--space-sm) var(--space-md) 0;
}

.auto-fill-preview__body[b-fboyppbiis] {
    padding: var(--space-md);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space);
}

.auto-fill-preview__loading[b-fboyppbiis] {
    padding: var(--space);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    color: var(--neutral-600);
}

.auto-fill-preview__skeleton[b-fboyppbiis] {
    height: 180px;
    border-radius: var(--radius);
}

.auto-fill-preview__muted[b-fboyppbiis] {
    color: var(--neutral-500);
}

.auto-fill-preview__narrative[b-fboyppbiis] {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space);
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    border-radius: var(--radius);
    color: var(--neutral-800);
    font-size: var(--text-md);
    line-height: 1.5;
}

.auto-fill-preview__narrative i[b-fboyppbiis] {
    color: var(--primary-500);
    font-size: var(--text-lg);
    margin-top: 0.25rem;
}

.auto-fill-preview__narrative p[b-fboyppbiis] {
    margin: 0;
}

.auto-fill-preview__summary[b-fboyppbiis] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-xs);
    color: var(--neutral-700);
    font-size: var(--text-sm);
    padding: var(--space-xs) var(--space-sm);
    background: var(--neutral-50);
    border-radius: var(--radius-sm);
}

.auto-fill-preview__summary-sep[b-fboyppbiis] {
    color: var(--neutral-400);
}

.auto-fill-preview__summary-muted[b-fboyppbiis] {
    color: var(--neutral-500);
}

.auto-fill-preview__reroll-all[b-fboyppbiis] {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: transparent;
    border: 1px solid var(--neutral-300);
    color: var(--neutral-700);
    font-size: var(--text-sm);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.auto-fill-preview__reroll-all:hover:not([disabled])[b-fboyppbiis] {
    background: var(--neutral-100);
    border-color: var(--neutral-400);
}

.auto-fill-preview__reroll-all[disabled][b-fboyppbiis] {
    opacity: 0.5;
    cursor: not-allowed;
}

.auto-fill-preview__tweaks-toggle[b-fboyppbiis] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: transparent;
    border: 1px solid var(--neutral-300);
    color: var(--neutral-700);
    font-size: var(--text-sm);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.auto-fill-preview__tweaks-toggle:hover:not([disabled])[b-fboyppbiis] {
    background: var(--neutral-100);
    border-color: var(--neutral-400);
}

.auto-fill-preview__tweaks-toggle--active[b-fboyppbiis] {
    border-color: var(--primary-500);
    color: var(--primary-700);
    background: var(--primary-50);
}

.auto-fill-preview__tweaks-toggle[disabled][b-fboyppbiis] {
    opacity: 0.5;
    cursor: not-allowed;
}

.auto-fill-preview__tweaks-badge[b-fboyppbiis] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.4rem;
    border-radius: 999px;
    background: var(--primary-500);
    color: white;
    font-size: var(--text-xs);
    font-weight: 600;
}

.auto-fill-preview__tweaks[b-fboyppbiis] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--neutral-200);
    background: var(--neutral-50);
}

.auto-fill-preview__tweaks-row[b-fboyppbiis] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-sm);
}

.auto-fill-preview__tweak-field[b-fboyppbiis] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.auto-fill-preview__tweak-label[b-fboyppbiis] {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--neutral-700);
}

.auto-fill-preview__tweak-toggles[b-fboyppbiis] {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    align-items: center;
}

.auto-fill-preview__tweak-toggles label[b-fboyppbiis] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--text-sm);
    color: var(--neutral-800);
    cursor: pointer;
}

.auto-fill-preview__tweak-slider-row[b-fboyppbiis] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.auto-fill-preview__tweak-slider-row input[type="range"][b-fboyppbiis] {
    flex: 1;
    accent-color: var(--primary-500);
}

.auto-fill-preview__tweak-slider-value[b-fboyppbiis] {
    min-width: 4.5rem;
    text-align: right;
    font-variant-numeric: tabular-nums;
    color: var(--neutral-800);
    font-size: var(--text-sm);
}

.auto-fill-preview__tweak-field input[type="text"][b-fboyppbiis] {
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    color: var(--neutral-900);
    background: white;
}

.auto-fill-preview__tweak-field input[type="text"]:focus[b-fboyppbiis] {
    outline: 2px solid var(--primary-300);
    outline-offset: 1px;
    border-color: var(--primary-500);
}

.auto-fill-preview__tweaks-actions[b-fboyppbiis] {
    display: flex;
    gap: var(--space-sm);
    justify-content: flex-end;
}

.auto-fill-preview__grid[b-fboyppbiis] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--space-sm);
}

.auto-fill-preview__cell[b-fboyppbiis] {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-sm);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius);
    background: white;
    min-height: 200px;
}

.auto-fill-preview__cell--accept[b-fboyppbiis] {
    border-color: var(--secondary-400);
    background: var(--secondary-50);
}

.auto-fill-preview__cell--lock[b-fboyppbiis] {
    border-color: var(--warning-500);
    background: var(--warning-50);
}

.auto-fill-preview__cell--drop[b-fboyppbiis] {
    border-color: var(--neutral-300);
    background: var(--neutral-100);
    opacity: 0.6;
}

.auto-fill-preview__cell-head[b-fboyppbiis] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--text-xs);
    color: var(--neutral-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.auto-fill-preview__cell-body[b-fboyppbiis] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    flex: 1;
}

.auto-fill-preview__cell-image[b-fboyppbiis] {
    width: 100%;
    height: 80px;
    border-radius: var(--radius-sm);
    background-size: cover;
    background-position: center;
    background-color: var(--neutral-200);
}

.auto-fill-preview__cell-image--placeholder[b-fboyppbiis] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
    font-size: 1.5rem;
}

.auto-fill-preview__cell-title[b-fboyppbiis] {
    font-weight: 600;
    color: var(--neutral-900);
    font-size: var(--text-sm);
    line-height: 1.3;
}

.auto-fill-preview__cell-meta[b-fboyppbiis] {
    display: flex;
    gap: var(--space-sm);
    font-size: var(--text-xs);
    color: var(--neutral-600);
    align-items: center;
}

.auto-fill-preview__cell-cuisine[b-fboyppbiis] {
    padding: 0 0.5rem;
    background: var(--primary-50);
    color: var(--primary-700);
    border-radius: 999px;
    font-weight: 500;
}

.auto-fill-preview__cell-reasons[b-fboyppbiis] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.auto-fill-preview__reason-chip[b-fboyppbiis] {
    padding: 0.125rem 0.375rem;
    background: white;
    border: 1px solid var(--neutral-200);
    color: var(--neutral-700);
    border-radius: 999px;
    font-size: 0.6875rem;
}

.auto-fill-preview__cell-body--multi[b-fboyppbiis] {
    gap: 0.5rem;
    padding: 0;
}

.auto-fill-preview__recipe-card[b-fboyppbiis] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    flex: 1;
    position: relative;
}

.auto-fill-preview__recipe-card--course[b-fboyppbiis] {
    padding: var(--space-sm);
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-sm);
}

.auto-fill-preview__recipe-card--course + .auto-fill-preview__recipe-card--course[b-fboyppbiis] {
    margin-top: 0.25rem;
}

.auto-fill-preview__recipe-card-reroll[b-fboyppbiis] {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    display: flex;
}

.auto-fill-preview__recipe-card--course .auto-fill-preview__recipe-card-reroll[b-fboyppbiis] {
    top: 0.375rem;
    right: 0.375rem;
}

.auto-fill-preview__cell-empty[b-fboyppbiis] {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    padding: var(--space-sm);
    background: var(--neutral-50);
    border-radius: var(--radius-sm);
    color: var(--neutral-600);
    font-size: var(--text-sm);
    flex: 1;
}

.auto-fill-preview__cell-actions[b-fboyppbiis] {
    display: flex;
    gap: 0.25rem;
    justify-content: flex-end;
}

.auto-fill-preview__state-btn[b-fboyppbiis] {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: white;
    border: 1px solid var(--neutral-300);
    color: var(--neutral-600);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    padding: 0;
}

.auto-fill-preview__state-btn:hover:not(:disabled)[b-fboyppbiis] {
    background: var(--neutral-100);
}

.auto-fill-preview__state-btn--active[b-fboyppbiis] {
    background: var(--primary-600);
    color: white;
    border-color: var(--primary-600);
}

.auto-fill-preview__state-btn:disabled[b-fboyppbiis] {
    opacity: 0.5;
    cursor: not-allowed;
}

.auto-fill-preview__reason-picker[b-fboyppbiis] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-xs);
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-sm);
}

.auto-fill-preview__reason-title[b-fboyppbiis] {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--neutral-800);
}

.auto-fill-preview__reason-actions[b-fboyppbiis] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.auto-fill-preview__reason-btn[b-fboyppbiis] {
    background: white;
    border: 1px solid var(--neutral-300);
    color: var(--neutral-800);
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: var(--text-xs);
}

.auto-fill-preview__reason-btn:hover:not(:disabled)[b-fboyppbiis] {
    background: var(--primary-100);
    border-color: var(--primary-400);
}

.auto-fill-preview__reason-btn:disabled[b-fboyppbiis] {
    opacity: 0.6;
    cursor: not-allowed;
}

.auto-fill-preview__reason-cancel[b-fboyppbiis] {
    background: transparent;
    border: none;
    color: var(--neutral-600);
    cursor: pointer;
    font-size: var(--text-xs);
    padding: 0.125rem 0.5rem;
}

.auto-fill-preview__footer[b-fboyppbiis] {
    padding: var(--space-sm) var(--space-md);
    border-top: 1px solid var(--neutral-200);
    display: flex;
    justify-content: flex-end;
    gap: var(--space-sm);
}

@media (max-width: 600px) {
    .auto-fill-preview__header[b-fboyppbiis] {
        flex-wrap: wrap;
    }
    .auto-fill-preview__theme-override[b-fboyppbiis] {
        width: 100%;
    }
    .auto-fill-preview__theme-select[b-fboyppbiis] {
        flex: 1;
    }
}

.auto-fill-preview__cell-skip[b-fboyppbiis] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: var(--space-sm);
    border: 1px dashed var(--neutral-300);
    border-radius: var(--radius);
    background: var(--neutral-50);
    color: var(--neutral-700);
    font-size: var(--text-sm);
}

.auto-fill-preview__cell-skip i[b-fboyppbiis] {
    color: var(--neutral-500);
    margin-right: 0.25rem;
}

.auto-fill-preview__cell-skip--user em[b-fboyppbiis] {
    color: var(--neutral-700);
}

.auto-fill-preview__cell-skip--aiinferred em[b-fboyppbiis] {
    color: var(--warning-700);
}

.auto-fill-preview__skip-override[b-fboyppbiis] {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    background: transparent;
    border: 1px solid var(--primary-300);
    color: var(--primary-700);
    border-radius: var(--radius);
    font-size: var(--text-xs);
    font-weight: 500;
    cursor: pointer;
}

.auto-fill-preview__skip-override:hover:not(:disabled)[b-fboyppbiis] {
    background: var(--primary-50);
}

.auto-fill-preview__skip-override:disabled[b-fboyppbiis] {
    cursor: not-allowed;
    opacity: 0.5;
}
}
/* _content/Forkery.Web/Components/Shared/MealPlan/MealSlotCard.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.meal-slot-card[b-6uafte3s3s] {
    position: relative;
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.meal-slot-card--filled[b-6uafte3s3s] {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.meal-slot-card--empty[b-6uafte3s3s] {
    border-style: dashed;
    background: transparent;
}

.meal-slot-card--tombstone[b-6uafte3s3s] {
    background: var(--neutral-50);
    border-color: var(--neutral-200);
    opacity: 0.85;
}

.meal-slot-card--drag-over[b-6uafte3s3s] {
    border-color: var(--primary-500);
    box-shadow: var(--focus-ring);
    transform: scale(1.01);
}

/* When the kebab menu is open, lift the entire card above sibling cards so
   the absolutely-positioned menu (which extends past the card's bounds) is
   not painted under later siblings in the column flex flow. */
.meal-slot-card--menu-open[b-6uafte3s3s] {
    z-index: 30;
}

.meal-slot-card__slot-label[b-6uafte3s3s] {
    position: absolute;
    top: var(--space-xs);
    left: var(--space-sm);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    pointer-events: none;
}

.meal-slot-card__empty[b-6uafte3s3s] {
    all: unset;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    cursor: pointer;
    color: var(--neutral-400);
    padding: var(--space);
    border-radius: var(--radius-md);
}

.meal-slot-card__empty:hover:not(:disabled)[b-6uafte3s3s] {
    background: var(--primary-50);
    color: var(--primary-600);
}

.meal-slot-card__empty:disabled[b-6uafte3s3s] {
    cursor: not-allowed;
    opacity: 0.5;
}

.meal-slot-card__empty i[b-6uafte3s3s] {
    font-size: var(--text-xl);
}

.meal-slot-card__empty-group[b-6uafte3s3s] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
    gap: var(--space-xs);
    padding: var(--space-xs);
}

.meal-slot-card__empty-group .meal-slot-card__empty[b-6uafte3s3s] {
    flex: 1;
}

.meal-slot-card__autofill[b-6uafte3s3s] {
    all: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    cursor: pointer;
    color: var(--primary-600);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    border: 1px dashed var(--primary-300);
    background: var(--primary-50);
}

.meal-slot-card__autofill:hover[b-6uafte3s3s] {
    background: var(--primary-100);
    border-style: solid;
}

.meal-slot-card__autofill i[b-6uafte3s3s] {
    font-size: 0.875rem;
}

.meal-slot-card__content[b-6uafte3s3s] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space) var(--space-sm);
    flex: 1;
}

.meal-slot-card__thumb[b-6uafte3s3s] {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    background-color: transparent;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.meal-slot-card__thumb--placeholder[b-6uafte3s3s] {
    display: none;
}

.meal-slot-card__body[b-6uafte3s3s] {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--space-sm);
}

.meal-slot-card__footer[b-6uafte3s3s] {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: var(--space-xs);
}

.meal-slot-card__time-pill[b-6uafte3s3s] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 3px var(--space-sm);
    border-radius: 999px;
    background: var(--neutral-600);
    color: white;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.meal-slot-card__title-row[b-6uafte3s3s] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    min-width: 0;
    max-width: 100%;
}

.meal-slot-card__title[b-6uafte3s3s] {
    font-weight: 600;
    color: var(--neutral-900);
    font-size: var(--text-sm);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow-wrap: anywhere;
    min-width: 0;
}

.meal-slot-card__lock[b-6uafte3s3s] {
    color: var(--neutral-500);
    font-size: var(--text-xs);
    line-height: 1;
}

.meal-slot-card__meta[b-6uafte3s3s] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xs);
}

.meal-slot-card__badge[b-6uafte3s3s] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-xs);
    padding: 2px var(--space-xs);
    border-radius: var(--radius-sm);
    background: var(--neutral-100);
    color: var(--neutral-700);
}

.meal-slot-card__badge--warning[b-6uafte3s3s] {
    background: var(--warning-50);
    color: var(--warning-700);
}

.meal-slot-card__actions[b-6uafte3s3s] {
    position: absolute;
    top: var(--space-xs);
    right: var(--space-xs);
    z-index: 1;
}

.meal-slot-card__menu-btn[b-6uafte3s3s] {
    all: unset;
    cursor: pointer;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    color: var(--neutral-500);
}

.meal-slot-card__menu-btn:hover:not(:disabled)[b-6uafte3s3s] {
    background: var(--neutral-100);
    color: var(--neutral-900);
}

.meal-slot-card__menu-btn:disabled[b-6uafte3s3s] {
    cursor: not-allowed;
    opacity: 0.4;
}

/* Invisible full-viewport catcher — clicking anywhere off the menu closes it. */
.meal-slot-card__menu-backdrop[b-6uafte3s3s] {
    position: fixed;
    inset: 0;
    z-index: 19;
    background: transparent;
}

.meal-slot-card__menu[b-6uafte3s3s] {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 20;
    min-width: 200px;
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: var(--space-xs);
    display: flex;
    flex-direction: column;
}

.meal-slot-card__menu-item[b-6uafte3s3s] {
    all: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    color: var(--neutral-800);
}

.meal-slot-card__menu-item:hover[b-6uafte3s3s] {
    background: var(--neutral-100);
}

.meal-slot-card__menu-item--danger[b-6uafte3s3s] {
    color: var(--accent-600);
}

.meal-slot-card__menu-item--danger:hover[b-6uafte3s3s] {
    background: var(--accent-50);
}

.meal-slot-card__tombstone[b-6uafte3s3s] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space) var(--space-sm);
    color: var(--neutral-500);
    text-align: center;
}

.meal-slot-card__tombstone-icon[b-6uafte3s3s] {
    font-size: var(--text-xl);
    color: var(--neutral-400);
}

.meal-slot-card__tombstone-title[b-6uafte3s3s] {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-600);
}

.meal-slot-card__tombstone-clear[b-6uafte3s3s] {
    all: unset;
    cursor: pointer;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    background: var(--neutral-100);
    color: var(--neutral-700);
    font-size: var(--text-xs);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.meal-slot-card__tombstone-clear:hover:not(:disabled)[b-6uafte3s3s] {
    background: var(--accent-50);
    color: var(--accent-600);
}

.meal-slot-card__tombstone-clear:disabled[b-6uafte3s3s] {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Multi-recipe stack — rendered when a slot holds 2+ PlannedMeals.
   Single-meal slots keep using .meal-slot-card__content and its siblings. */

.meal-slot-card--stacked[b-6uafte3s3s] {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.meal-slot-card__stack[b-6uafte3s3s] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-lg) var(--space-sm) var(--space-sm);
}

/* Clickable wrapper around the mini-cards — opens the details modal.
   Rendered as role=button (not <button>) so draggable mini-cards can nest inside
   without violating HTML's no-interactive-content-in-button rule. */
.meal-slot-card__stack-open[b-6uafte3s3s] {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    border-radius: var(--radius-sm);
}

.meal-slot-card__stack-open:hover .meal-slot-card__mini[b-6uafte3s3s] {
    border-color: var(--neutral-200);
}

.meal-slot-card__stack-open:focus-visible[b-6uafte3s3s] {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

/* Individual mini-cards get grab cursor while draggable. */
.meal-slot-card__mini[draggable="true"][b-6uafte3s3s] {
    cursor: grab;
}

.meal-slot-card__mini[draggable="true"]:active[b-6uafte3s3s] {
    cursor: grabbing;
}

.meal-slot-card__mini[b-6uafte3s3s] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 4px 6px;
    border-radius: var(--radius-sm);
    background: var(--neutral-50);
    border: 1px solid var(--neutral-100);
    min-height: 36px;
}

.meal-slot-card__mini:hover[b-6uafte3s3s] {
    border-color: var(--neutral-200);
}

.meal-slot-card__mini--tombstone[b-6uafte3s3s] {
    opacity: 0.7;
}

.meal-slot-card__mini-thumb[b-6uafte3s3s] {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background-size: cover;
    background-position: center;
    background-color: var(--neutral-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
    font-size: 0.75rem;
}

.meal-slot-card__mini-thumb--placeholder[b-6uafte3s3s] {
    background-image: none;
}

.meal-slot-card__mini-body[b-6uafte3s3s] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.meal-slot-card__mini-title[b-6uafte3s3s] {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--neutral-700);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.meal-slot-card__mini-time[b-6uafte3s3s] {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.meal-slot-card__add-another[b-6uafte3s3s] {
    all: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 2px;
    padding: 6px;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--neutral-200);
    color: var(--neutral-500);
    font-size: var(--text-xs);
    cursor: pointer;
}

.meal-slot-card__add-another:hover:not(:disabled)[b-6uafte3s3s] {
    background: var(--primary-50);
    border-color: var(--primary-300);
    color: var(--primary-600);
}

.meal-slot-card__add-another:disabled[b-6uafte3s3s] {
    cursor: not-allowed;
    opacity: 0.5;
}

.meal-slot-card__menu-submenu[b-6uafte3s3s] {
    position: relative;
}

.meal-slot-card__menu-chevron[b-6uafte3s3s] {
    margin-left: auto;
    font-size: 0.7em;
    opacity: 0.7;
}

.meal-slot-card__menu-submenu-list[b-6uafte3s3s] {
    margin: 0.25rem 0 0 0.75rem;
    padding-left: 0.5rem;
    border-left: 2px solid var(--neutral-200);
    display: flex;
    flex-direction: column;
}

}
/* _content/Forkery.Web/Components/Shared/MealPlan/PerMealOverridesForm.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.overrides-form__backdrop[b-sohtsg7jfe] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.overrides-form[b-sohtsg7jfe] {
    background: white;
    border-radius: var(--radius-lg);
    width: min(560px, 100%);
    max-height: min(720px, calc(100vh - 48px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.overrides-form__header[b-sohtsg7jfe] {
    position: relative;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--neutral-200);
}

.overrides-form__title[b-sohtsg7jfe] {
    margin: 0 0 var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-xl);
    color: var(--neutral-900);
}

.overrides-form__title i[b-sohtsg7jfe] {
    color: var(--primary-500);
}

.overrides-form__subtitle[b-sohtsg7jfe] {
    margin: 0;
    color: var(--neutral-500);
    font-size: var(--text-sm);
}

.overrides-form__close[b-sohtsg7jfe] {
    all: unset;
    position: absolute;
    top: var(--space);
    right: var(--space);
    cursor: pointer;
    padding: var(--space-xs) var(--space-sm);
    color: var(--neutral-500);
    border-radius: var(--radius-sm);
}

.overrides-form__close:hover[b-sohtsg7jfe] {
    background: var(--neutral-100);
}

.overrides-form__body[b-sohtsg7jfe] {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.overrides-form__section[b-sohtsg7jfe] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.overrides-form__label[b-sohtsg7jfe] {
    font-weight: 600;
    color: var(--neutral-800);
    font-size: var(--text-sm);
}

.overrides-form__help[b-sohtsg7jfe] {
    margin: 0;
    color: var(--neutral-500);
    font-size: var(--text-xs);
}

.overrides-form__servings-row[b-sohtsg7jfe] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.overrides-form__input[b-sohtsg7jfe] {
    padding: var(--space-sm) var(--space);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    font: inherit;
    flex: 1;
    min-width: 0;
}

.overrides-form__input:focus[b-sohtsg7jfe] {
    outline: 2px solid var(--primary-300);
    outline-offset: 0;
    border-color: var(--primary-500);
}

.overrides-form__clear-btn[b-sohtsg7jfe] {
    all: unset;
    cursor: pointer;
    padding: var(--space-xs) var(--space-sm);
    color: var(--neutral-600);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
}

.overrides-form__clear-btn:hover[b-sohtsg7jfe] {
    background: var(--neutral-100);
}

.overrides-form__tags[b-sohtsg7jfe] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--space-sm);
}

.overrides-form__tag-option[b-sohtsg7jfe] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: var(--text-sm);
}

.overrides-form__tag-option:hover[b-sohtsg7jfe] {
    background: var(--neutral-50);
}

.overrides-form__custom[b-sohtsg7jfe] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.overrides-form__custom-row[b-sohtsg7jfe] {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.overrides-form__chips[b-sohtsg7jfe] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.overrides-form__chip[b-sohtsg7jfe] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--warning-50);
    color: var(--warning-700);
    border-radius: 999px;
    font-size: var(--text-xs);
}

.overrides-form__chip button[b-sohtsg7jfe] {
    all: unset;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.overrides-form__footer[b-sohtsg7jfe] {
    padding: var(--space) var(--space-lg);
    border-top: 1px solid var(--neutral-200);
    display: flex;
    justify-content: flex-end;
    gap: var(--space-sm);
}

}
/* _content/Forkery.Web/Components/Shared/MealPlan/RecipePicker.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.recipe-picker__backdrop[b-vugnodp7nb] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.recipe-picker[b-vugnodp7nb] {
    background: white;
    border-radius: var(--radius-lg);
    width: min(960px, 100%);
    max-height: min(820px, calc(100vh - 48px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.recipe-picker__header[b-vugnodp7nb] {
    position: relative;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--neutral-200);
}

.recipe-picker__title[b-vugnodp7nb] {
    margin: 0 0 var(--space-xs);
    font-size: var(--text-xl);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--neutral-900);
}

.recipe-picker__title i[b-vugnodp7nb] {
    color: var(--primary-500);
}

.recipe-picker__subtitle[b-vugnodp7nb] {
    margin: 0;
    color: var(--neutral-500);
    font-size: var(--text-sm);
}

.recipe-picker__close[b-vugnodp7nb] {
    all: unset;
    position: absolute;
    top: var(--space);
    right: var(--space);
    cursor: pointer;
    padding: var(--space-xs) var(--space-sm);
    color: var(--neutral-500);
    border-radius: var(--radius-sm);
}

.recipe-picker__close:hover[b-vugnodp7nb] {
    background: var(--neutral-100);
    color: var(--neutral-900);
}

.recipe-picker__controls[b-vugnodp7nb] {
    padding: var(--space) var(--space-lg);
    display: flex;
    gap: var(--space);
    align-items: center;
    border-bottom: 1px solid var(--neutral-200);
    flex-wrap: wrap;
}

.recipe-picker__search[b-vugnodp7nb] {
    flex: 1;
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
}

.recipe-picker__search i[b-vugnodp7nb] {
    color: var(--neutral-400);
}

.recipe-picker__search input[b-vugnodp7nb] {
    border: 0;
    outline: none;
    flex: 1;
    font: inherit;
    background: transparent;
}

.recipe-picker__show-all[b-vugnodp7nb] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--neutral-700);
    cursor: pointer;
}

.recipe-picker__filter-banner[b-vugnodp7nb] {
    padding: var(--space-sm) var(--space-lg);
    background: var(--primary-50);
    color: var(--primary-700);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border-bottom: 1px solid var(--neutral-200);
}

.recipe-picker__body[b-vugnodp7nb] {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg);
}

.recipe-picker__loading[b-vugnodp7nb] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space);
}

.recipe-picker__skeleton[b-vugnodp7nb] {
    height: 180px;
    border-radius: var(--radius-md);
}

.recipe-picker__error[b-vugnodp7nb],
.recipe-picker__empty[b-vugnodp7nb] {
    text-align: center;
    padding: var(--space-lg);
    color: var(--neutral-500);
}

.recipe-picker__empty i[b-vugnodp7nb] {
    font-size: 2rem;
    color: var(--neutral-300);
    margin-bottom: var(--space-sm);
}

.recipe-picker__empty h3[b-vugnodp7nb] {
    margin: var(--space-sm) 0 var(--space-xs);
    color: var(--neutral-800);
}

.recipe-picker__grid[b-vugnodp7nb] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space);
}

.recipe-picker__card[b-vugnodp7nb] {
    all: unset;
    cursor: pointer;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: white;
    transition: var(--transition);
}

.recipe-picker__card:hover[b-vugnodp7nb],
.recipe-picker__card:focus-visible[b-vugnodp7nb] {
    border-color: var(--primary-400);
    box-shadow: 0 4px 12px rgba(47, 128, 237, 0.15);
    transform: translateY(-2px);
}

.recipe-picker__card-image[b-vugnodp7nb] {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: var(--neutral-100);
}

.recipe-picker__card-image--placeholder[b-vugnodp7nb] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-300);
    font-size: 2rem;
}

.recipe-picker__card-body[b-vugnodp7nb] {
    padding: var(--space);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.recipe-picker__card-title[b-vugnodp7nb] {
    font-weight: 600;
    color: var(--neutral-900);
    font-size: var(--text-sm);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recipe-picker__card-meta[b-vugnodp7nb] {
    display: flex;
    gap: var(--space-sm);
    font-size: var(--text-xs);
    color: var(--neutral-500);
}

.recipe-picker__card-tags[b-vugnodp7nb] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-xs);
}

.recipe-picker__tag[b-vugnodp7nb] {
    font-size: var(--text-xs);
    padding: 2px var(--space-xs);
    border-radius: var(--radius-sm);
    background: var(--neutral-100);
    color: var(--neutral-700);
}

.recipe-picker__pagination[b-vugnodp7nb] {
    margin-top: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space);
    color: var(--neutral-600);
    font-size: var(--text-sm);
}

.recipe-picker__pagination button[b-vugnodp7nb] {
    all: unset;
    cursor: pointer;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    color: var(--neutral-600);
}

.recipe-picker__pagination button:hover:not(:disabled)[b-vugnodp7nb] {
    background: var(--neutral-100);
}

.recipe-picker__pagination button:disabled[b-vugnodp7nb] {
    opacity: 0.4;
    cursor: not-allowed;
}

}
/* _content/Forkery.Web/Components/Shared/MealPlan/SlotDetailsModal.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.slot-details__backdrop[b-fo5uy7zkmp] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.slot-details[b-fo5uy7zkmp] {
    background: white;
    border-radius: var(--radius-lg);
    width: min(560px, 100%);
    max-height: min(720px, calc(100vh - 48px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.slot-details__header[b-fo5uy7zkmp] {
    position: relative;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--neutral-200);
}

.slot-details__title[b-fo5uy7zkmp] {
    margin: 0 0 var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-xl);
    color: var(--neutral-900);
    text-transform: capitalize;
}

.slot-details__title i[b-fo5uy7zkmp] {
    color: var(--primary-500);
}

.slot-details__subtitle[b-fo5uy7zkmp] {
    margin: 0;
    color: var(--neutral-500);
    font-size: var(--text-sm);
}

.slot-details__close[b-fo5uy7zkmp] {
    all: unset;
    position: absolute;
    top: var(--space);
    right: var(--space);
    cursor: pointer;
    padding: var(--space-xs) var(--space-sm);
    color: var(--neutral-500);
    border-radius: var(--radius-sm);
}

.slot-details__close:hover[b-fo5uy7zkmp] {
    background: var(--neutral-100);
    color: var(--neutral-900);
}

.slot-details__body[b-fo5uy7zkmp] {
    flex: 1;
    overflow-y: auto;
    padding: var(--space) var(--space-lg);
}

.slot-details__list[b-fo5uy7zkmp] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.slot-details__row[b-fo5uy7zkmp] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-md);
    background: white;
    transition: var(--transition);
    cursor: grab;
}

.slot-details__row:hover[b-fo5uy7zkmp] {
    border-color: var(--neutral-300);
}

.slot-details__row:active[b-fo5uy7zkmp] {
    cursor: grabbing;
}

.slot-details__row--drop-target[b-fo5uy7zkmp] {
    border-color: var(--primary-500);
    box-shadow: inset 0 2px 0 0 var(--primary-500);
}

.slot-details__drag-handle[b-fo5uy7zkmp] {
    flex: 0 0 auto;
    width: 20px;
    color: var(--neutral-400);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-details__thumb[b-fo5uy7zkmp] {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-size: cover;
    background-position: center;
    background-color: var(--neutral-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
}

.slot-details__thumb--placeholder[b-fo5uy7zkmp] {
    background-image: none;
}

.slot-details__row-body[b-fo5uy7zkmp] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.slot-details__row-title[b-fo5uy7zkmp] {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--neutral-800);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.slot-details__row-time[b-fo5uy7zkmp] {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.slot-details__row-action[b-fo5uy7zkmp] {
    all: unset;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-500);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.slot-details__row-action:hover:not(:disabled)[b-fo5uy7zkmp] {
    background: var(--neutral-100);
    color: var(--neutral-900);
}

.slot-details__row-action--danger:hover:not(:disabled)[b-fo5uy7zkmp] {
    background: var(--accent-50);
    color: var(--accent-600);
}

.slot-details__row-action:disabled[b-fo5uy7zkmp] {
    cursor: not-allowed;
    opacity: 0.4;
}

.slot-details__footer[b-fo5uy7zkmp] {
    padding: var(--space) var(--space-lg);
    border-top: 1px solid var(--neutral-200);
    background: var(--neutral-50);
}

.slot-details__footer-actions[b-fo5uy7zkmp] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.slot-details__footer-btn[b-fo5uy7zkmp] {
    all: unset;
    cursor: pointer;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    color: var(--neutral-700);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--neutral-200);
    background: white;
}

.slot-details__footer-btn:hover:not(:disabled)[b-fo5uy7zkmp] {
    background: var(--neutral-100);
    color: var(--neutral-900);
}

.slot-details__footer-btn:disabled[b-fo5uy7zkmp] {
    cursor: not-allowed;
    opacity: 0.5;
}

.slot-details__footer-btn--primary[b-fo5uy7zkmp] {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
}

.slot-details__footer-btn--primary:hover:not(:disabled)[b-fo5uy7zkmp] {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: white;
}

.slot-details__footer-btn--danger[b-fo5uy7zkmp] {
    color: var(--accent-600);
}

.slot-details__footer-btn--danger:hover:not(:disabled)[b-fo5uy7zkmp] {
    background: var(--accent-50);
    color: var(--accent-700);
}

}
/* _content/Forkery.Web/Components/Shared/MealPlan/SlotFillPopover.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {
.slot-fill-popover__backdrop[b-l3fh3ldifv] {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.48);
    z-index: 900;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-md);
    overflow-y: auto;
}

.slot-fill-popover[b-l3fh3ldifv] {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 540px;
    margin-top: 6vh;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 12vh);
    overflow: hidden;
}

.slot-fill-popover__header[b-l3fh3ldifv] {
    position: relative;
    padding: var(--space) var(--space-md);
    border-bottom: 1px solid var(--neutral-200);
    background: var(--neutral-50);
}

.slot-fill-popover__title[b-l3fh3ldifv] {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.slot-fill-popover__subtitle[b-l3fh3ldifv] {
    margin: var(--space-xs) 0 0;
    color: var(--neutral-600);
    font-size: var(--text-sm);
    text-transform: capitalize;
}

.slot-fill-popover__close[b-l3fh3ldifv] {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: transparent;
    border: none;
    color: var(--neutral-500);
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.slot-fill-popover__close:hover[b-l3fh3ldifv] {
    background: var(--neutral-100);
    color: var(--neutral-800);
}

.slot-fill-popover__error[b-l3fh3ldifv] {
    margin: var(--space-sm) var(--space-md) 0;
}

.slot-fill-popover__body[b-l3fh3ldifv] {
    padding: var(--space-md);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space);
}

.slot-fill-popover__loading[b-l3fh3ldifv] {
    padding: var(--space);
}

.slot-fill-popover__skeleton[b-l3fh3ldifv] {
    height: 120px;
    border-radius: var(--radius);
}

.slot-fill-popover__muted[b-l3fh3ldifv] {
    color: var(--neutral-500);
    margin: 0;
    font-size: var(--text-sm);
}

.slot-fill-popover__empty[b-l3fh3ldifv] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space);
    background: var(--neutral-50);
    border-radius: var(--radius);
    color: var(--neutral-700);
    font-size: var(--text-sm);
}

.slot-fill-popover__card[b-l3fh3ldifv] {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    background: white;
    position: relative;
}

.slot-fill-popover__card--pick[b-l3fh3ldifv] {
    border-color: var(--secondary-400);
    background: var(--secondary-50);
    box-shadow: 0 0 0 1px var(--secondary-400) inset;
}

.slot-fill-popover__card-image[b-l3fh3ldifv] {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    background-size: cover;
    background-position: center;
    background-color: var(--neutral-200);
    flex-shrink: 0;
}

.slot-fill-popover__card-image--placeholder[b-l3fh3ldifv] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
    font-size: 1.5rem;
}

.slot-fill-popover__card-body[b-l3fh3ldifv] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.slot-fill-popover__card-title[b-l3fh3ldifv] {
    font-weight: 600;
    color: var(--neutral-900);
    font-size: var(--text-md);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slot-fill-popover__card-meta[b-l3fh3ldifv] {
    display: flex;
    gap: var(--space-sm);
    color: var(--neutral-600);
    font-size: var(--text-sm);
}

.slot-fill-popover__cuisine[b-l3fh3ldifv] {
    padding: 0 0.5rem;
    background: var(--primary-50);
    color: var(--primary-700);
    border-radius: 999px;
    font-size: var(--text-xs);
    font-weight: 500;
}

.slot-fill-popover__reasons[b-l3fh3ldifv] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.slot-fill-popover__reason-chip[b-l3fh3ldifv] {
    padding: 0.125rem 0.5rem;
    background: var(--neutral-100);
    color: var(--neutral-700);
    border-radius: 999px;
    font-size: var(--text-xs);
}

.slot-fill-popover__card-actions[b-l3fh3ldifv] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    align-items: stretch;
    flex-shrink: 0;
    min-width: 96px;
    justify-content: center;
}

.slot-fill-popover__reroll-link[b-l3fh3ldifv] {
    background: transparent;
    border: 1px solid var(--neutral-200);
    color: var(--neutral-700);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.slot-fill-popover__reroll-link:hover:not(:disabled)[b-l3fh3ldifv] {
    background: var(--neutral-100);
}

.slot-fill-popover__reroll-link:disabled[b-l3fh3ldifv] {
    opacity: 0.6;
    cursor: not-allowed;
}

.slot-fill-popover__alt-toggle[b-l3fh3ldifv] {
    background: transparent;
    color: var(--primary-600);
    border: none;
    text-align: left;
    padding: 0;
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
}

.slot-fill-popover__alternatives[b-l3fh3ldifv] {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px dashed var(--neutral-200);
}

.slot-fill-popover__alt-title[b-l3fh3ldifv] {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-700);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.slot-fill-popover__overrides[b-l3fh3ldifv] {
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.slot-fill-popover__overrides-toggle[b-l3fh3ldifv] {
    width: 100%;
    background: var(--neutral-50);
    border: none;
    padding: var(--space-sm) var(--space);
    text-align: left;
    font-weight: 600;
    color: var(--neutral-800);
    font-size: var(--text-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.slot-fill-popover__overrides-toggle:hover[b-l3fh3ldifv] {
    background: var(--neutral-100);
}

.slot-fill-popover__overrides-body[b-l3fh3ldifv] {
    padding: var(--space);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.slot-fill-popover__field[b-l3fh3ldifv] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.slot-fill-popover__label[b-l3fh3ldifv] {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-700);
}

.slot-fill-popover__input[b-l3fh3ldifv] {
    width: 100%;
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    background: white;
    font-family: inherit;
}

.slot-fill-popover__slider-row[b-l3fh3ldifv] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.slot-fill-popover__slider[b-l3fh3ldifv] {
    flex: 1;
    accent-color: var(--primary-500);
}

.slot-fill-popover__slider-value[b-l3fh3ldifv] {
    min-width: 5.5rem;
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-800);
}

.slot-fill-popover__hint[b-l3fh3ldifv] {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    margin: 0;
}

.slot-fill-popover__reason-picker[b-l3fh3ldifv] {
    border: 1px solid var(--primary-200);
    background: var(--primary-50);
    padding: var(--space-sm);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.slot-fill-popover__reason-title[b-l3fh3ldifv] {
    font-weight: 600;
    color: var(--neutral-800);
    font-size: var(--text-sm);
}

.slot-fill-popover__reason-actions[b-l3fh3ldifv] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.slot-fill-popover__reason-btn[b-l3fh3ldifv] {
    background: white;
    border: 1px solid var(--neutral-300);
    color: var(--neutral-800);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: var(--text-sm);
}

.slot-fill-popover__reason-btn:hover:not(:disabled)[b-l3fh3ldifv] {
    background: var(--primary-100);
    border-color: var(--primary-400);
}

.slot-fill-popover__reason-btn:disabled[b-l3fh3ldifv] {
    opacity: 0.6;
    cursor: not-allowed;
}

.slot-fill-popover__reason-cancel[b-l3fh3ldifv] {
    background: transparent;
    border: none;
    color: var(--neutral-600);
    cursor: pointer;
    font-size: var(--text-sm);
    padding: 0.25rem 0.5rem;
}

.slot-fill-popover__footer[b-l3fh3ldifv] {
    padding: var(--space-sm) var(--space-md);
    border-top: 1px solid var(--neutral-200);
    display: flex;
    justify-content: flex-end;
}
}
/* _content/Forkery.Web/Components/Shared/MealPlan/UndoToast.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@keyframes undo-toast-in-b-athebjd716 {
    from { transform: translate(-50%, 12px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

@layer components {
    .undo-toast[b-athebjd716] {
        position: fixed;
        bottom: var(--space-md);
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        display: flex;
        align-items: center;
        gap: var(--space);
        background: var(--neutral-900);
        color: white;
        padding: var(--space-sm) var(--space);
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        max-width: calc(100% - var(--space-md) * 2);
        font-size: var(--text-sm);
        animation: undo-toast-in-b-athebjd716 0.18s ease-out;
    }

    .undo-toast__body[b-athebjd716] {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        flex: 1;
    }

    .undo-toast__icon[b-athebjd716] {
        color: var(--secondary-400);
    }

    .undo-toast__message[b-athebjd716] {
        color: white;
    }

    .undo-toast__actions[b-athebjd716] {
        display: flex;
        align-items: center;
        gap: var(--space-xs);
    }

    .undo-toast__undo[b-athebjd716] {
        background: var(--primary-500);
        color: white;
        border: none;
        padding: var(--space-xs) var(--space-sm);
        border-radius: var(--radius-sm);
        font-weight: 600;
        font-size: var(--text-sm);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: var(--space-xs);
    }

    .undo-toast__undo:hover:not(:disabled)[b-athebjd716] {
        background: var(--primary-600);
    }

    .undo-toast__undo:disabled[b-athebjd716] {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .undo-toast__dismiss[b-athebjd716] {
        background: transparent;
        color: var(--neutral-300);
        border: none;
        padding: var(--space-xs);
        cursor: pointer;
        border-radius: var(--radius-sm);
    }

    .undo-toast__dismiss:hover[b-athebjd716] {
        color: white;
        background: rgba(255, 255, 255, 0.08);
    }

    .undo-toast__countdown[b-athebjd716] {
        font-variant-numeric: tabular-nums;
        color: var(--neutral-400);
        font-size: var(--text-xs);
        min-width: 2.5rem;
        text-align: right;
    }
}
/* _content/Forkery.Web/Components/Shared/RecipeCard.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

/* --- Recipe Card --- */
.recipe-card[b-bua1um7cfr] {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.recipe-card:hover[b-bua1um7cfr] {
    text-decoration: none;
    color: inherit;
    border-color: var(--primary-300) !important;
}

.recipe-card__image-container[b-bua1um7cfr] {
    position: relative;
    overflow: hidden;
}

.recipe-card__image[b-bua1um7cfr] {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.recipe-card__image-placeholder[b-bua1um7cfr] {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--neutral-100) 0%, var(--neutral-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
}

.recipe-card__placeholder-icon[b-bua1um7cfr] {
    font-size: 3rem;
}

.recipe-card__favourite-overlay[b-bua1um7cfr] {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
}

.recipe-card__content[b-bua1um7cfr] {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.recipe-card__title[b-bua1um7cfr] {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-800);
    margin: 0 0 var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.recipe-card__description[b-bua1um7cfr] {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    margin: 0 0 var(--space);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    line-height: 1.5;
}

.recipe-card__meta[b-bua1um7cfr] {
    display: flex;
    align-items: center;
    gap: var(--space);
    font-size: var(--text-xs);
    color: var(--neutral-500);
    margin-bottom: var(--space-sm);
}

.recipe-card__meta-item[b-bua1um7cfr] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.recipe-card__meta-star[b-bua1um7cfr] {
    color: var(--warning-500);
}

.recipe-card__badges[b-bua1um7cfr] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: auto;
    padding-top: var(--space-sm);
}

/* --- Recipe Grid --- */
.recipe-grid[b-bua1um7cfr] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 576px) {
    .recipe-grid[b-bua1um7cfr] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .recipe-grid[b-bua1um7cfr] {
        grid-template-columns: repeat(3, 1fr);
    }
}

}
/* _content/Forkery.Web/Components/Shared/RecipeDiffModal.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {
    .modal--wide[b-5cffut0s6n] {
        max-width: 800px;
        width: 95vw;
    }

    .modal__header[b-5cffut0s6n] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--space-md) var(--space-lg);
        border-bottom: 1px solid var(--neutral-200);
    }

    .modal__close[b-5cffut0s6n] {
        background: none;
        border: none;
        padding: var(--space-xs);
        cursor: pointer;
        color: var(--neutral-500);
        font-size: var(--text-lg);
    }

    .modal__close:hover[b-5cffut0s6n] {
        color: var(--neutral-800);
    }

    .compare-modal__body[b-5cffut0s6n] {
        max-height: 60vh;
        overflow-y: auto;
        padding: var(--space-md) var(--space-lg);
    }

    .compare-modal__published-at[b-5cffut0s6n] {
        font-size: var(--text-sm);
        color: var(--neutral-500);
        margin-bottom: var(--space-md);
    }

    .compare-modal__toolbar[b-5cffut0s6n] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: var(--space-md);
    }

    .compare-modal__view-toggle[b-5cffut0s6n] {
        display: inline-flex;
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius);
        overflow: hidden;
    }

    .compare-modal__toggle-btn[b-5cffut0s6n] {
        padding: var(--space-xs) var(--space-sm);
        font-size: var(--text-xs);
        font-weight: 500;
        border: none;
        background: white;
        color: var(--neutral-600);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: var(--space-xs);
        transition: var(--transition);
    }

    .compare-modal__toggle-btn:not(:last-child)[b-5cffut0s6n] {
        border-right: 1px solid var(--neutral-300);
    }

    .compare-modal__toggle-btn--active[b-5cffut0s6n] {
        background: var(--primary-50);
        color: var(--primary-700);
        font-weight: 600;
    }

    .compare-modal__toggle-btn:hover:not(.compare-modal__toggle-btn--active)[b-5cffut0s6n] {
        background: var(--neutral-50);
    }

    .compare-modal__section-title[b-5cffut0s6n] {
        font-size: var(--text-sm);
        font-weight: 600;
        color: var(--neutral-700);
        margin: var(--space-md) 0 var(--space-sm);
        padding-bottom: var(--space-xs);
        border-bottom: 1px solid var(--neutral-200);
    }

    /* Scalar field diffs */
    .diff-field[b-5cffut0s6n] {
        margin-bottom: var(--space-sm);
    }

    .diff-field__label[b-5cffut0s6n] {
        display: block;
        font-size: var(--text-xs);
        font-weight: 600;
        color: var(--neutral-500);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: var(--space-xxs);
    }

    .diff-field__removed[b-5cffut0s6n] {
        font-size: var(--text-sm);
        padding: var(--space-xs) var(--space-sm);
        background: var(--accent-50);
        color: var(--accent-700);
        border-left: 3px solid var(--accent-500);
        text-decoration: line-through;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        margin-bottom: var(--space-xxs);
    }

    .diff-field__added[b-5cffut0s6n] {
        font-size: var(--text-sm);
        padding: var(--space-xs) var(--space-sm);
        background: var(--secondary-50);
        color: var(--secondary-700);
        border-left: 3px solid var(--secondary-500);
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    }

    /* Unified diff list (ingredients, instructions) */
    .diff-list[b-5cffut0s6n] {
        list-style: none;
        padding: 0;
        margin: 0;
        font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
        font-size: var(--text-sm);
        border: 1px solid var(--neutral-200);
        border-radius: var(--radius);
        overflow: hidden;
    }

    .diff-list__item[b-5cffut0s6n] {
        display: flex;
        gap: var(--space-xs);
        padding: var(--space-xs) var(--space-sm);
        border-bottom: 1px solid var(--neutral-100);
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
    }

    .diff-list__item:last-child[b-5cffut0s6n] {
        border-bottom: none;
    }

    .diff-list__item--added[b-5cffut0s6n] {
        background: var(--secondary-50);
        color: var(--secondary-700);
    }

    .diff-list__item--removed[b-5cffut0s6n] {
        background: var(--accent-50);
        color: var(--accent-700);
        text-decoration: line-through;
    }

    .diff-list__item--unchanged[b-5cffut0s6n] {
        color: var(--neutral-500);
    }

    .diff-list__marker[b-5cffut0s6n] {
        flex-shrink: 0;
        width: 1rem;
        text-align: center;
        font-weight: 700;
        font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
        user-select: none;
    }

    .diff-list__step[b-5cffut0s6n] {
        flex-shrink: 0;
        font-weight: 600;
        min-width: 1.5rem;
    }

    /* Tag diff badges */
    .compare-modal__tags[b-5cffut0s6n] {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-xs);
    }

    .badge--diff-added[b-5cffut0s6n] {
        background: var(--secondary-100);
        color: var(--secondary-700);
        border: 1px solid var(--secondary-300);
    }

    .badge--diff-removed[b-5cffut0s6n] {
        background: var(--accent-100);
        color: var(--accent-700);
        border: 1px solid var(--accent-400);
        text-decoration: line-through;
    }

    /* Side-by-side table (scalars) */
    .sbs-table[b-5cffut0s6n] {
        width: 100%;
        border-collapse: collapse;
        font-size: var(--text-sm);
        border: 1px solid var(--neutral-200);
        border-radius: var(--radius);
        overflow: hidden;
    }

    .sbs-table th[b-5cffut0s6n] {
        text-align: left;
        font-weight: 600;
        padding: var(--space-xs) var(--space-sm);
        background: var(--neutral-50);
        border-bottom: 1px solid var(--neutral-200);
        color: var(--neutral-600);
        font-size: var(--text-xs);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .sbs-table td[b-5cffut0s6n] {
        padding: var(--space-xs) var(--space-sm);
        border-bottom: 1px solid var(--neutral-100);
    }

    .sbs-table__label[b-5cffut0s6n] {
        font-weight: 500;
        color: var(--neutral-700);
        white-space: nowrap;
        width: 1%;
    }

    .sbs-table__local[b-5cffut0s6n] {
        background: var(--accent-50);
        color: var(--accent-700);
        width: 49%;
    }

    .sbs-table__upstream[b-5cffut0s6n] {
        background: var(--secondary-50);
        color: var(--secondary-700);
        width: 49%;
    }

    /* Side-by-side row-aligned view */
    .sbs-rows[b-5cffut0s6n] {
        border: 1px solid var(--neutral-200);
        border-radius: var(--radius);
        overflow: hidden;
        font-size: var(--text-sm);
    }

    .sbs-rows__header[b-5cffut0s6n] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: var(--neutral-50);
        border-bottom: 1px solid var(--neutral-200);
    }

    .sbs-rows__heading[b-5cffut0s6n] {
        padding: var(--space-xs) var(--space-sm);
        font-size: var(--text-xs);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--neutral-500);
    }

    .sbs-rows__row[b-5cffut0s6n] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-bottom: 1px solid var(--neutral-100);
    }

    .sbs-rows__row:last-child[b-5cffut0s6n] {
        border-bottom: none;
    }

    .sbs-rows__cell[b-5cffut0s6n] {
        padding: var(--space-xs) var(--space-sm);
        line-height: 1.5;
    }

    .sbs-rows__cell--unchanged[b-5cffut0s6n] {
        color: var(--neutral-600);
    }

    .sbs-rows__row:has(.sbs-rows__cell--changed) .sbs-rows__cell--changed:first-child[b-5cffut0s6n] {
        background: var(--accent-50);
    }

    .sbs-rows__row:has(.sbs-rows__cell--changed) .sbs-rows__cell--changed:last-child[b-5cffut0s6n] {
        background: var(--secondary-50);
    }

    .sbs-rows__cell--removed[b-5cffut0s6n] {
        background: var(--accent-50);
        color: var(--accent-700);
    }

    .sbs-rows__cell--added[b-5cffut0s6n] {
        background: var(--secondary-50);
        color: var(--secondary-700);
    }

    .sbs-rows__cell--empty[b-5cffut0s6n] {
        background: var(--neutral-50);
    }

    /* Word-level highlight spans */
    .sbs-rows__cell del[b-5cffut0s6n] {
        text-decoration: none;
        background: var(--accent-200);
        border-radius: var(--radius-sm);
        padding: 0 var(--space-xxs);
    }

    .sbs-rows__cell ins[b-5cffut0s6n] {
        text-decoration: none;
        background: var(--secondary-200);
        border-radius: var(--radius-sm);
        padding: 0 var(--space-xxs);
    }
}
/* _content/Forkery.Web/Components/Shared/RecipeFilters.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

/* =====================================================
   RECIPE FILTERS SIDEBAR
   ===================================================== */

.recipe-filters[b-1ta45wqk2x] {
    display: flex;
    flex-direction: column;
    gap: var(--space);
}

/* Filter Section Panels */
.filter-section[b-1ta45wqk2x] {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.filter-section__title[b-1ta45wqk2x] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: var(--text-md);
    color: var(--neutral-800);
    padding: var(--space) var(--space-md);
    border-bottom: 1px solid var(--neutral-100);
    background: var(--neutral-50);
}

.filter-section__title i[b-1ta45wqk2x] {
    color: var(--neutral-500);
    width: 1em;
    text-align: center;
}

.filter-section__body[b-1ta45wqk2x] {
    padding: var(--space-md);
}

/* Search within filter sidebar */
.recipe-filters__search-wrap[b-1ta45wqk2x] {
    position: relative;
}

.recipe-filters__search-icon[b-1ta45wqk2x] {
    position: absolute;
    left: var(--space);
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-400);
    pointer-events: none;
    font-size: var(--text-sm);
}

.recipe-filters__search-input[b-1ta45wqk2x] {
    width: 100%;
    padding: var(--space-sm) var(--space) var(--space-sm) 2.5rem;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    transition: var(--transition);
    background: white;
    min-height: 40px;
}

.recipe-filters__search-input:focus[b-1ta45wqk2x] {
    outline: none;
    border-color: var(--primary-400);
    box-shadow: var(--focus-ring);
}

/* Quick filter buttons */
.recipe-filters__quick-filters[b-1ta45wqk2x] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.recipe-filters__quick-filter[b-1ta45wqk2x] {
    text-align: left;
    background: white;
    color: var(--neutral-700);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.recipe-filters__quick-filter:hover[b-1ta45wqk2x] {
    background: var(--primary-50);
    border-color: var(--primary-300);
    color: var(--primary-700);
}

.recipe-filters__quick-filter--active[b-1ta45wqk2x] {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
}

/* Select dropdowns in sidebar */
.recipe-filters__select[b-1ta45wqk2x] {
    width: 100%;
    padding: var(--space-sm) var(--space);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    background: white;
    color: var(--neutral-700);
    transition: var(--transition);
    min-height: 40px;
    appearance: auto;
}

.recipe-filters__select:focus[b-1ta45wqk2x] {
    outline: none;
    border-color: var(--primary-400);
    box-shadow: var(--focus-ring);
}

}
/* _content/Forkery.Web/Components/Shared/ShoppingLists/GenerateFromMealPlanModal.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

/* Lead and hint styles are also used by NewListModal — keeping both copies
   intentionally scoped so whichever modal is rendered gets its own styles
   without depending on load order. */

.shopping-list-modal__hint[b-b5a8p4x3ti] {
    margin: var(--space-xs) 0 0;
    font-size: var(--text-xs);
    color: var(--neutral-500);
}

.shopping-list-modal__lead[b-b5a8p4x3ti] {
    margin: 0 0 var(--space);
    color: var(--neutral-700);
    font-size: var(--text-sm);
}

.shopping-list-modal__ai-toggle[b-b5a8p4x3ti] {
    margin-top: var(--space-sm);
    padding: var(--space-sm) var(--space);
    background-color: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
}

.shopping-list-modal__ai-label[b-b5a8p4x3ti] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    color: var(--neutral-800);
    cursor: pointer;
}

.shopping-list-modal__ai-label input[type="checkbox"][b-b5a8p4x3ti] {
    margin: 0;
}

.shopping-list-modal__ai-label .fa-wand-magic-sparkles[b-b5a8p4x3ti] {
    color: var(--primary-600);
    margin-right: var(--space-xs);
}

}
/* _content/Forkery.Web/Components/Shared/ShoppingLists/NewListModal.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.shopping-list-modal__hint[b-64gumeslbj] {
    margin: var(--space-xs) 0 0;
    font-size: var(--text-xs);
    color: var(--neutral-500);
}

.shopping-list-modal__lead[b-64gumeslbj] {
    margin: 0 0 var(--space);
    color: var(--neutral-700);
    font-size: var(--text-sm);
}

}
/* _content/Forkery.Web/Components/Shared/ShoppingLists/NormalizeWithAiPreview.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.modal--wide[b-g9kt3v927z] {
    max-width: 720px;
    width: 95vw;
}

.normalize-preview[b-g9kt3v927z] {
    display: flex;
    flex-direction: column;
    max-height: 85vh;
}

.normalize-preview__header[b-g9kt3v927z] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space);
    border-bottom: 1px solid var(--neutral-200);
}

.normalize-preview__header .modal__title .fa-wand-magic-sparkles[b-g9kt3v927z] {
    color: var(--primary-600);
    margin-right: var(--space-xs);
}

.normalize-preview__close[b-g9kt3v927z] {
    background: none;
    border: none;
    font-size: var(--text-lg);
    color: var(--neutral-500);
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: var(--radius);
}

.normalize-preview__close:hover[b-g9kt3v927z] {
    background-color: var(--neutral-100);
    color: var(--neutral-800);
}

.normalize-preview__body[b-g9kt3v927z] {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: var(--space) 0;
}

.normalize-preview__loading[b-g9kt3v927z] {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    color: var(--neutral-600);
    justify-content: center;
}

.normalize-preview__lead[b-g9kt3v927z] {
    margin: 0 0 var(--space);
    color: var(--neutral-700);
    font-size: var(--text-sm);
}

.normalize-preview__lead-aside[b-g9kt3v927z] {
    color: var(--neutral-500);
    margin-left: var(--space-sm);
}

.normalize-preview__empty[b-g9kt3v927z] {
    text-align: center;
    color: var(--neutral-500);
    padding: var(--space-lg);
}

.normalize-preview__list[b-g9kt3v927z] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.normalize-preview__line[b-g9kt3v927z] {
    background-color: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space);
}

.normalize-preview__line--merge[b-g9kt3v927z] {
    border-color: var(--primary-300);
    background-color: var(--primary-50);
}

.normalize-preview__line-target[b-g9kt3v927z] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.normalize-preview__line-name[b-g9kt3v927z] {
    font-weight: 600;
    color: var(--neutral-900);
}

.normalize-preview__line-meta[b-g9kt3v927z] {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    font-size: var(--text-sm);
    color: var(--neutral-600);
}

.normalize-preview__qty--muted[b-g9kt3v927z] {
    font-style: italic;
    color: var(--neutral-500);
}

.normalize-preview__cat[b-g9kt3v927z] {
    background-color: var(--neutral-200);
    padding: 2px var(--space-xs);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
}

.normalize-preview__line-notes[b-g9kt3v927z] {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    font-style: italic;
}

.normalize-preview__line-sources[b-g9kt3v927z] {
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px dashed var(--neutral-300);
    font-size: var(--text-xs);
    color: var(--neutral-600);
}

.normalize-preview__sources-label[b-g9kt3v927z] {
    font-weight: 600;
    margin-right: var(--space-xs);
}

.normalize-preview__line-sources ul[b-g9kt3v927z] {
    margin: 4px 0 0;
    padding-left: var(--space);
}

}
/* _content/Forkery.Web/Components/Shared/ShoppingLists/ShoppingListCard.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.shopping-list-card[b-1fna5jrfkt] {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
}

.shopping-list-card:hover[b-1fna5jrfkt] {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.shopping-list-card__header[b-1fna5jrfkt] {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: linear-gradient(135deg,
        var(--primary-50) 0%,
        var(--primary-100) 100%);
    border-bottom: 1px solid var(--primary-200);
}

.shopping-list-card__title-group[b-1fna5jrfkt] {
    flex: 1;
    min-width: 0;
}

.shopping-list-card__title[b-1fna5jrfkt] {
    margin: 0;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary-800);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shopping-list-card__meta[b-1fna5jrfkt] {
    margin-top: var(--space-xs);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    color: var(--primary-700);
    font-size: var(--text-sm);
}

.shopping-list-card__meta-item[b-1fna5jrfkt] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.shopping-list-card__icon-btn[b-1fna5jrfkt] {
    all: unset;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: var(--neutral-600);
    flex-shrink: 0;
}

.shopping-list-card__icon-btn:hover[b-1fna5jrfkt] {
    background: rgb(255 255 255 / 0.6);
    color: var(--accent-600);
}

.shopping-list-card__icon-btn--danger:hover[b-1fna5jrfkt] {
    color: var(--accent-600);
}

.shopping-list-card__body[b-1fna5jrfkt] {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space);
    flex: 1;
}

.shopping-list-card__view-btn[b-1fna5jrfkt] {
    align-self: stretch;
    justify-content: center;
}

}
/* _content/Forkery.Web/Components/Shared/ShoppingLists/ShoppingListItemRow.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.shopping-list-item[b-5upen7euhm] {
    display: flex;
    align-items: center;
    gap: var(--space);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--neutral-100);
    transition: var(--transition);
}

.shopping-list-item:last-child[b-5upen7euhm] {
    border-bottom: none;
}

.shopping-list-item:hover[b-5upen7euhm] {
    background: var(--neutral-50);
}

.shopping-list-item__checkbox[b-5upen7euhm] {
    width: 18px;
    height: 18px;
    accent-color: var(--secondary-500);
    cursor: pointer;
    flex-shrink: 0;
}

.shopping-list-item__content[b-5upen7euhm] {
    flex: 1;
    min-width: 0;
}

.shopping-list-item__name[b-5upen7euhm] {
    font-weight: 500;
    color: var(--neutral-800);
    margin: 0;
    font-size: var(--text-sm);
    word-break: break-word;
}

.shopping-list-item__details[b-5upen7euhm] {
    color: var(--neutral-500);
    font-size: var(--text-xs);
    margin: var(--space-xs) 0 0;
}

.shopping-list-item__notes[b-5upen7euhm] {
    color: var(--neutral-600);
    font-size: var(--text-xs);
    font-style: italic;
    margin: var(--space-xs) 0 0;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

/* Checked state — strikethrough + dimmed */
.shopping-list-item--checked[b-5upen7euhm] {
    opacity: 0.6;
}

.shopping-list-item--checked .shopping-list-item__name[b-5upen7euhm] {
    text-decoration: line-through;
    color: var(--neutral-400);
}

.shopping-list-item--checked .shopping-list-item__details[b-5upen7euhm],
.shopping-list-item--checked .shopping-list-item__notes[b-5upen7euhm] {
    color: var(--neutral-400);
}

.shopping-list-item__actions[b-5upen7euhm] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-shrink: 0;
}

.shopping-list-item__icon-btn[b-5upen7euhm] {
    all: unset;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: var(--neutral-500);
    font-size: var(--text-sm);
}

.shopping-list-item__icon-btn:hover[b-5upen7euhm] {
    background: var(--neutral-100);
    color: var(--primary-600);
}

.shopping-list-item__icon-btn--danger:hover[b-5upen7euhm] {
    color: var(--accent-600);
}

/* Inline edit form */
.shopping-list-item__edit[b-5upen7euhm] {
    width: 100%;
    padding: var(--space-sm) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.shopping-list-item__edit-grid[b-5upen7euhm] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-sm);
}

.shopping-list-item__edit-field[b-5upen7euhm] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: var(--text-xs);
    color: var(--neutral-600);
    font-weight: 500;
}

.shopping-list-item__edit-field--short[b-5upen7euhm] {
    /* uses default column */
}

.shopping-list-item__edit-field--wide[b-5upen7euhm] {
    grid-column: 1 / -1;
}

.shopping-list-item__edit-actions[b-5upen7euhm] {
    display: flex;
    gap: var(--space-sm);
    justify-content: flex-end;
}

@media (max-width: 640px) {
    .shopping-list-item__edit-grid[b-5upen7euhm] {
        grid-template-columns: 1fr 1fr;
    }

    .shopping-list-item__edit-field:first-child[b-5upen7euhm] {
        grid-column: 1 / -1;
    }
}

}
/* _content/Forkery.Web/Components/Shared/ShoppingLists/ShoppingListProgress.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.shopping-list-progress[b-d5fovwx7sw] {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.shopping-list-progress__bar[b-d5fovwx7sw] {
    background: var(--neutral-100);
    border-radius: var(--radius-xl);
    padding: var(--space-xs);
    height: 16px;
    display: flex;
    align-items: center;
}

.shopping-list-progress__fill[b-d5fovwx7sw] {
    display: block;
    height: 8px;
    min-width: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(90deg,
        var(--secondary-500) 0%,
        var(--secondary-400) 100%);
    /* Progress-bar fill — slower than --transition so the growth is legible. */
    transition: width 0.3s ease;
}

.shopping-list-progress__label[b-d5fovwx7sw] {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    text-align: center;
}

}
/* _content/Forkery.Web/Components/Shared/StarRating.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

/* --- Star Rating --- */
.star-rating[b-qyaymww4wy] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.star-rating__stars[b-qyaymww4wy] {
    display: inline-flex;
    gap: 2px;
}

.star-rating__star[b-qyaymww4wy] {
    font-size: var(--text-xl);
    cursor: default;
    transition: var(--transition);
    user-select: none;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
}

.star-rating__star:focus-visible[b-qyaymww4wy] {
    outline: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--focus-ring);
}

.star-rating--interactive .star-rating__star[b-qyaymww4wy] {
    cursor: pointer;
}

.star-rating--interactive .star-rating__star:hover[b-qyaymww4wy] {
    transform: scale(1.2);
}

.star-rating__star--filled[b-qyaymww4wy] { color: var(--primary-500); }
.star-rating__star--half[b-qyaymww4wy] { color: var(--primary-400); }
.star-rating__star--empty[b-qyaymww4wy] { color: var(--neutral-300); }
.star-rating__star--user-rated[b-qyaymww4wy] { color: var(--primary-600); }

.star-rating__count[b-qyaymww4wy] {
    font-size: 0.8125rem;
    color: var(--neutral-500);
    margin-left: var(--space-xs);
}

}
/* _content/Forkery.Web/Components/Shared/TenantSwitcher.razor.rz.scp.css */
@layer reset, tokens, base, components, utilities, overrides;

@layer components {

.tenant-switcher[b-c0s0bw0e38] {
    position: relative;
}

.tenant-switcher__current[b-c0s0bw0e38] {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--neutral-200);
    border-radius: 0.375rem;
    /* <button> doesn't inherit font properties from the page in Chromium —
       force inheritance so this matches the surrounding nav, same as the
       old <summary> did. */
    font-family: inherit;
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: inherit;
    color: var(--neutral-700);
    background: #fff;
}

.tenant-switcher__current:hover[b-c0s0bw0e38] {
    background: var(--neutral-50);
    border-color: var(--neutral-300);
}

.tenant-switcher__backdrop[b-c0s0bw0e38] {
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 49;
}

.tenant-switcher__menu[b-c0s0bw0e38] {
    position: absolute;
    top: calc(100% + 0.25rem);
    right: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--neutral-200);
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: var(--space-xs);
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    z-index: 50;
}

.tenant-switcher__form[b-c0s0bw0e38] {
    margin: 0;
}

.tenant-switcher__item[b-c0s0bw0e38] {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: none;
    background: none;
    border-radius: 0.375rem;
    font-size: var(--text-sm);
    color: var(--neutral-800);
    text-align: left;
    cursor: pointer;
}

.tenant-switcher__item:hover[b-c0s0bw0e38] {
    background: var(--neutral-100);
}

.tenant-switcher__item--current[b-c0s0bw0e38] {
    background: var(--primary-50);
    color: var(--primary-700);
    font-weight: 600;
    cursor: default;
}

.tenant-switcher__item--current:hover[b-c0s0bw0e38] {
    background: var(--primary-50);
}

.tenant-switcher__item--disabled[b-c0s0bw0e38] {
    color: var(--neutral-400);
    cursor: not-allowed;
}

.tenant-switcher__item--disabled:hover[b-c0s0bw0e38] {
    background: none;
}

.tenant-switcher__badge[b-c0s0bw0e38] {
    margin-left: auto;
    display: inline-block;
    padding: 0.05rem 0.4rem;
    border-radius: 999px;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--neutral-200);
    color: var(--neutral-700);
}

.tenant-switcher__item--current .tenant-switcher__badge[b-c0s0bw0e38] {
    background: var(--primary-100);
    color: var(--primary-700);
}

.tenant-switcher__divider[b-c0s0bw0e38] {
    border-top: 1px solid var(--neutral-200);
    margin: var(--space-sm) 0;
}

.tenant-switcher__item--action[b-c0s0bw0e38] {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 500;
}

.tenant-switcher__item--action:hover[b-c0s0bw0e38] {
    background: var(--neutral-100);
    color: var(--neutral-900);
}

}
