/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-vajwpct3h1] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-vajwpct3h1] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
/* Hide elements by default based on state */
.components-reconnect-first-attempt-visible[b-r0x5v25kgm],
.components-reconnect-repeated-attempt-visible[b-r0x5v25kgm],
.components-reconnect-failed-visible[b-r0x5v25kgm],
.components-pause-visible[b-r0x5v25kgm],
.components-resume-failed-visible[b-r0x5v25kgm],
.components-reconnect-retrying-visible[b-r0x5v25kgm] {
    display: none;
}

/* Show appropriate elements based on modal state */
#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-r0x5v25kgm],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-r0x5v25kgm],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-r0x5v25kgm],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-r0x5v25kgm],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-retrying-visible[b-r0x5v25kgm],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-r0x5v25kgm] {
    display: block;
}

/* Dialog base styling - Fluent Design dark theme */
#components-reconnect-modal[b-r0x5v25kgm] {
    background: linear-gradient(180deg, rgba(40, 40, 40, 0.98) 0%, rgba(30, 30, 30, 0.98) 100%);
    width: min(90vw, 400px);
    margin: auto;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    color: var(--fluent-text-on-brand);
    opacity: 0;
    transition: display 0.3s allow-discrete, overlay 0.3s allow-discrete;
    animation: components-reconnect-modal-fadeOut-b-r0x5v25kgm 0.3s both;
}

#components-reconnect-modal[open][b-r0x5v25kgm] {
    animation: components-reconnect-modal-slideUp-b-r0x5v25kgm 0.4s cubic-bezier(0.16, 1, 0.3, 1),
               components-reconnect-modal-fadeIn-b-r0x5v25kgm 0.3s ease-out;
    animation-fill-mode: both;
}

#components-reconnect-modal[b-r0x5v25kgm]::backdrop {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: components-reconnect-modal-fadeIn-b-r0x5v25kgm 0.3s ease-out;
}

/* Animations */
@keyframes components-reconnect-modal-slideUp-b-r0x5v25kgm {
    from {
        transform: translateY(20px) scale(0.98);
    }
    to {
        transform: translateY(0) scale(1);
    }
}

@keyframes components-reconnect-modal-fadeIn-b-r0x5v25kgm {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes components-reconnect-modal-fadeOut-b-r0x5v25kgm {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Container layout */
.components-reconnect-container[b-r0x5v25kgm] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

/* Icon styling */
.components-reconnect-icon[b-r0x5v25kgm] {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fluent-brand-selected);
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.components-reconnect-icon i[b-r0x5v25kgm] {
    color: var(--sage);
}

/* Spinning animation for reconnecting icon */
#components-reconnect-modal.components-reconnect-show .components-reconnect-icon i[b-r0x5v25kgm],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-icon i[b-r0x5v25kgm] {
    animation: spin-b-r0x5v25kgm 1.5s linear infinite;
}

@keyframes spin-b-r0x5v25kgm {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Session expired state - use brand color since it's expected behavior, not an error */
#components-reconnect-modal.components-reconnect-failed .components-reconnect-icon[b-r0x5v25kgm],
#components-reconnect-modal.components-reconnect-resume-failed .components-reconnect-icon[b-r0x5v25kgm] {
    background: var(--fluent-brand-selected);
}

#components-reconnect-modal.components-reconnect-failed .components-reconnect-icon i[b-r0x5v25kgm],
#components-reconnect-modal.components-reconnect-resume-failed .components-reconnect-icon i[b-r0x5v25kgm] {
    color: var(--sage);
}

/* Pause state icon color */
#components-reconnect-modal.components-reconnect-paused .components-reconnect-icon[b-r0x5v25kgm] {
    background: var(--fluent-warning-bg);
}

#components-reconnect-modal.components-reconnect-paused .components-reconnect-icon i[b-r0x5v25kgm] {
    color: var(--terracotta);
}

/* Typography */
#components-reconnect-modal h2[b-r0x5v25kgm] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--fluent-text-on-brand);
}

#components-reconnect-modal p[b-r0x5v25kgm] {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.components-reconnect-subtitle[b-r0x5v25kgm] {
    font-size: 0.95rem;
    line-height: 1.5;
}

#components-seconds-to-next-attempt[b-r0x5v25kgm] {
    font-weight: 600;
    color: var(--sage);
}

/* Button styling - matches app design */
#components-reconnect-modal .btn[b-r0x5v25kgm] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
    min-width: 160px;
}

#components-reconnect-modal .btn-primary[b-r0x5v25kgm] {
    background: linear-gradient(180deg, var(--sage) 0%, var(--sage-dark) 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(122, 155, 109, 0.3);
}

#components-reconnect-modal .btn-primary:hover[b-r0x5v25kgm] {
    background: linear-gradient(180deg, var(--fluent-brand-hover) 0%, var(--sage) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(122, 155, 109, 0.4);
}

#components-reconnect-modal .btn-primary:active[b-r0x5v25kgm] {
    transform: translateY(0);
}

#components-reconnect-modal .btn-secondary[b-r0x5v25kgm] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#components-reconnect-modal .btn-secondary:hover[b-r0x5v25kgm] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Connectivity indicator */
.components-connectivity-indicator[b-r0x5v25kgm] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.components-connectivity-dot[b-r0x5v25kgm] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--fluent-danger);
    animation: pulse-b-r0x5v25kgm 2s infinite;
}

.components-connectivity-indicator.connected .components-connectivity-dot[b-r0x5v25kgm] {
    background: var(--fluent-success);
    animation: none;
}

@keyframes pulse-b-r0x5v25kgm {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

#components-connectivity-text[b-r0x5v25kgm] {
    color: rgba(255, 255, 255, 0.7);
}

.components-connectivity-indicator.connected #components-connectivity-text[b-r0x5v25kgm] {
    color: var(--fluent-success);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    #components-reconnect-modal[b-r0x5v25kgm] {
        padding: 2rem 1.5rem;
        margin: 1rem;
        width: calc(100vw - 2rem);
    }

    #components-reconnect-modal h2[b-r0x5v25kgm] {
        font-size: 1.25rem;
    }

    .components-reconnect-icon[b-r0x5v25kgm] {
        width: 64px;
        height: 64px;
    }

    .components-reconnect-icon i[b-r0x5v25kgm] {
        font-size: 48px;
    }
}
/* /Components/Pages/Account/Login.razor.rz.scp.css */
/* Login Page - Warm Kitchen Design */
.login-page[b-n3lkn2yxtg] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    padding: 24px;
}

.login-container[b-n3lkn2yxtg] {
    width: 100%;
    max-width: 420px;
}

.login-card[b-n3lkn2yxtg] {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
}

.login-header[b-n3lkn2yxtg] {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo[b-n3lkn2yxtg] {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
}

.login-logo i[b-n3lkn2yxtg] {
    font-size: 32px;
}

.login-header h1[b-n3lkn2yxtg] {
    font-size: 24px;
    font-weight: 600;
    color: var(--brown);
    margin: 0 0 8px;
}

.login-header .text-muted[b-n3lkn2yxtg] {
    color: var(--text-muted);
    margin: 0;
}

/* Alerts */
.alert[b-n3lkn2yxtg] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: 14px;
}

.alert i[b-n3lkn2yxtg] {
    font-size: 20px;
    flex-shrink: 0;
}

.alert-success[b-n3lkn2yxtg] {
    background: var(--sage-light);
    color: var(--sage-dark);
}

.alert-danger[b-n3lkn2yxtg] {
    background: var(--fluent-danger-bg);
    color: var(--fluent-danger);
}

.alert-warning[b-n3lkn2yxtg] {
    background: var(--terracotta-light);
    color: var(--terracotta);
}

/* External Providers */
.login-providers[b-n3lkn2yxtg] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-provider[b-n3lkn2yxtg] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-dark);
}

.btn-provider:hover[b-n3lkn2yxtg] {
    background: var(--cream);
    border-color: var(--border-dark);
}

.btn-provider svg[b-n3lkn2yxtg] {
    flex-shrink: 0;
}

.login-divider[b-n3lkn2yxtg] {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 14px;
}

.login-divider[b-n3lkn2yxtg]::before,
.login-divider[b-n3lkn2yxtg]::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.login-divider span[b-n3lkn2yxtg] {
    padding: 0 16px;
}

/* Form */
.login-form[b-n3lkn2yxtg] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-options[b-n3lkn2yxtg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.checkbox-label[b-n3lkn2yxtg] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"][b-n3lkn2yxtg] {
    width: 16px;
    height: 16px;
    accent-color: var(--sage);
}

.forgot-link[b-n3lkn2yxtg] {
    color: var(--sage);
    text-decoration: none;
}

.forgot-link:hover[b-n3lkn2yxtg] {
    text-decoration: underline;
}

.btn-block[b-n3lkn2yxtg] {
    width: 100%;
}

/* Footer */
.login-footer[b-n3lkn2yxtg] {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
}

.login-footer a[b-n3lkn2yxtg] {
    color: var(--sage);
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
}

.login-footer a:hover[b-n3lkn2yxtg] {
    text-decoration: underline;
}

/* TV Mode */
.login-page.tv-mode[b-n3lkn2yxtg] {
    padding: 48px;
}

.tv-login-container[b-n3lkn2yxtg] {
    display: flex;
    align-items: stretch;
    gap: 48px;
    max-width: 1200px;
    width: 100%;
}

.tv-qr-section[b-n3lkn2yxtg],
.tv-form-section[b-n3lkn2yxtg] {
    flex: 1;
}

.tv-qr-card[b-n3lkn2yxtg] {
    padding: 48px;
    text-align: center;
}

.tv-qr-card h2[b-n3lkn2yxtg] {
    font-size: 28px;
    color: var(--brown);
    margin: 0 0 8px;
}

.tv-qr-display[b-n3lkn2yxtg] {
    margin: 32px 0;
}

.tv-qr-image[b-n3lkn2yxtg] {
    width: 280px;
    height: 280px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.qr-timer[b-n3lkn2yxtg] {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 12px;
}

.qr-loading[b-n3lkn2yxtg] {
    padding: 48px;
}

.qr-steps[b-n3lkn2yxtg] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
    text-align: left;
}

.step[b-n3lkn2yxtg] {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.step-num[b-n3lkn2yxtg] {
    width: 28px;
    height: 28px;
    background: var(--sage-light);
    color: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.tv-divider[b-n3lkn2yxtg] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.tv-divider span[b-n3lkn2yxtg] {
    color: var(--text-muted);
    font-weight: 500;
}

/* QR Success */
.qr-success-fullscreen[b-n3lkn2yxtg] {
    text-align: center;
    padding: 48px;
}

.qr-success-fullscreen .success-icon[b-n3lkn2yxtg] {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
}

.qr-success-fullscreen .success-icon i[b-n3lkn2yxtg] {
    font-size: 64px;
}

.qr-success-fullscreen h2[b-n3lkn2yxtg] {
    font-size: 32px;
    color: var(--brown);
    margin: 0 0 8px;
}

.qr-success-fullscreen p[b-n3lkn2yxtg] {
    color: var(--text-muted);
}

/* Resend form */
.resend-form[b-n3lkn2yxtg] {
    margin-top: 8px;
}

.btn-link[b-n3lkn2yxtg] {
    background: none;
    border: none;
    color: var(--sage);
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    font-size: inherit;
}

/* Responsive */
@media (max-width: 768px) {
    .login-card[b-n3lkn2yxtg] {
        padding: 24px;
    }

    .tv-login-container[b-n3lkn2yxtg] {
        flex-direction: column;
    }

    .tv-divider[b-n3lkn2yxtg] {
        padding: 24px 0;
    }

    .tv-divider[b-n3lkn2yxtg]::before,
    .tv-divider[b-n3lkn2yxtg]::after {
        content: "";
        flex: 1;
        height: 1px;
        background: var(--border);
    }
}
/* /Components/Pages/Account/Register.razor.rz.scp.css */
/* Register Page - Warm Kitchen Design */
.register-page[b-wl7lykl3pi] {
    min-height: 100vh;
    background: var(--cream);
    padding: 24px;
}

.register-container[b-wl7lykl3pi] {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.register-header[b-wl7lykl3pi] {
    text-align: center;
    margin-bottom: 32px;
}

.header-icon[b-wl7lykl3pi] {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
}

.header-icon i[b-wl7lykl3pi] {
    font-size: 36px;
}

.register-header h1[b-wl7lykl3pi] {
    font-size: 28px;
    font-weight: 600;
    color: var(--brown);
    margin: 0 0 8px;
}

.register-header .text-muted[b-wl7lykl3pi] {
    color: var(--text-muted);
    margin: 0;
    font-size: 16px;
}

/* Cards */
.register-container .card[b-wl7lykl3pi] {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin-bottom: 20px;
}

.register-container .card h2[b-wl7lykl3pi] {
    font-size: 18px;
    font-weight: 600;
    color: var(--brown);
    margin: 0 0 4px;
}

.register-container .card > .text-muted[b-wl7lykl3pi] {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0 0 20px;
}

/* Alerts */
.alert[b-wl7lykl3pi] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: 14px;
}

.alert i[b-wl7lykl3pi] {
    font-size: 20px;
    flex-shrink: 0;
}

.alert-danger[b-wl7lykl3pi] {
    background: var(--fluent-danger-bg);
    color: var(--fluent-danger);
}

.alert-close[b-wl7lykl3pi] {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 20px;
    color: inherit;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* External Providers */
.provider-list[b-wl7lykl3pi] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-provider[b-wl7lykl3pi] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-dark);
}

.btn-provider:hover[b-wl7lykl3pi] {
    background: var(--cream);
    border-color: var(--border-dark);
}

.btn-provider svg[b-wl7lykl3pi] {
    flex-shrink: 0;
}

/* Divider */
.divider[b-wl7lykl3pi] {
    display: flex;
    align-items: center;
    margin: 28px 0;
    color: var(--text-muted);
    font-size: 14px;
}

.divider[b-wl7lykl3pi]::before,
.divider[b-wl7lykl3pi]::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.divider span[b-wl7lykl3pi] {
    padding: 0 16px;
}

/* Profile Section */
.profile-section[b-wl7lykl3pi] {
    display: flex;
    gap: 20px;
    align-items: center;
}

.profile-avatar-container[b-wl7lykl3pi] {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar[b-wl7lykl3pi],
.profile-avatar-placeholder[b-wl7lykl3pi] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-avatar-placeholder[b-wl7lykl3pi] {
    background: var(--sage-light);
    color: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
}

.profile-avatar-edit[b-wl7lykl3pi] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: var(--sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    border: 2px solid var(--white);
}

.profile-avatar-edit:hover[b-wl7lykl3pi] {
    background: var(--sage-dark);
}

.profile-avatar-edit i[b-wl7lykl3pi] {
    font-size: 14px;
}

.profile-info h3[b-wl7lykl3pi] {
    font-size: 16px;
    font-weight: 600;
    color: var(--brown);
    margin: 0 0 4px;
}

.profile-info .text-muted[b-wl7lykl3pi] {
    font-size: 14px;
    margin: 0 0 12px;
}

.profile-actions[b-wl7lykl3pi] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-sm[b-wl7lykl3pi] {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-text[b-wl7lykl3pi] {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px 12px;
}

.btn-text:hover[b-wl7lykl3pi] {
    color: var(--text-dark);
}

/* Form Elements */
.form-group[b-wl7lykl3pi] {
    margin-bottom: 16px;
}

.form-group:last-child[b-wl7lykl3pi] {
    margin-bottom: 0;
}

.form-label[b-wl7lykl3pi] {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.required[b-wl7lykl3pi] {
    color: var(--fluent-danger);
}

.form-control[b-wl7lykl3pi] {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus[b-wl7lykl3pi] {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px var(--sage-light);
}

.form-control[b-wl7lykl3pi]::placeholder {
    color: var(--text-light);
}

.field-error[b-wl7lykl3pi] {
    display: block;
    color: var(--fluent-danger);
    font-size: 13px;
    margin-top: 4px;
}

.help-text[b-wl7lykl3pi] {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 4px;
}

/* Form Row (side by side) */
.form-row[b-wl7lykl3pi] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Collapsible Card */
.collapsible[b-wl7lykl3pi] {
    padding: 0;
}

.card-header-toggle[b-wl7lykl3pi] {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
}

.card-header-toggle[b-wl7lykl3pi]::-webkit-details-marker {
    display: none;
}

.card-header-toggle h2[b-wl7lykl3pi] {
    flex: 1;
    margin: 0;
}

.card-header-toggle .text-muted[b-wl7lykl3pi] {
    font-size: 14px;
    margin-right: 12px;
}

.toggle-icon[b-wl7lykl3pi] {
    color: var(--text-muted);
    font-size: 20px;
    transition: transform 0.2s;
}

details[open] .toggle-icon[b-wl7lykl3pi] {
    transform: rotate(180deg);
}

.card-content[b-wl7lykl3pi] {
    padding: 0 24px 24px;
}

/* Success Card */
.success-card[b-wl7lykl3pi] {
    text-align: center;
}

.icon-circle[b-wl7lykl3pi] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-circle.success[b-wl7lykl3pi] {
    background: var(--sage-light);
    color: var(--sage);
}

.icon-circle i[b-wl7lykl3pi] {
    font-size: 40px;
}

.success-card h2[b-wl7lykl3pi] {
    font-size: 22px;
    color: var(--brown);
    margin: 0 0 12px;
}

.success-card p[b-wl7lykl3pi] {
    color: var(--text-muted);
    margin: 0 0 8px;
}

.email-sent-to[b-wl7lykl3pi] {
    font-size: 14px;
    margin-bottom: 24px !important;
}

.success-actions[b-wl7lykl3pi] {
    margin-top: 24px;
}

/* Actions */
.register-actions[b-wl7lykl3pi] {
    margin-top: 8px;
}

.btn-lg[b-wl7lykl3pi] {
    padding: 14px 24px;
    font-size: 16px;
}

.btn-block[b-wl7lykl3pi] {
    width: 100%;
}

/* Spinner */
.spinner-sm[b-wl7lykl3pi] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin-b-wl7lykl3pi 0.8s linear infinite;
    margin-right: 8px;
}

@keyframes spin-b-wl7lykl3pi {
    to { transform: rotate(360deg); }
}

/* Footer */
.register-footer[b-wl7lykl3pi] {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

.register-footer a[b-wl7lykl3pi] {
    color: var(--sage);
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
}

.register-footer a:hover[b-wl7lykl3pi] {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
    .register-container[b-wl7lykl3pi] {
        max-width: 100%;
    }

    .register-container .card[b-wl7lykl3pi] {
        padding: 20px;
    }

    .form-row[b-wl7lykl3pi] {
        grid-template-columns: 1fr;
    }

    .profile-section[b-wl7lykl3pi] {
        flex-direction: column;
        text-align: center;
    }

    .profile-info[b-wl7lykl3pi] {
        text-align: center;
    }

    .profile-actions[b-wl7lykl3pi] {
        justify-content: center;
    }
}
/* /Components/Pages/AddRecipe.razor.rz.scp.css */
/* Add Recipe Page - Warm Kitchen Design */
.add-recipe-page[b-bpstg87n5z] {
    min-height: 100vh;
    background: var(--cream);
    padding: 20px;
}

.add-recipe-container[b-bpstg87n5z] {
    width: 100%;
    max-width: 720px;
}

/* Header */
.page-header[b-bpstg87n5z] {
    margin-bottom: 24px;
}

.back-link[b-bpstg87n5z] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sage);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 12px;
}

.back-link:hover[b-bpstg87n5z] {
    text-decoration: underline;
}

.page-header h1[b-bpstg87n5z] {
    font-size: 28px;
    font-weight: 600;
    color: var(--brown);
    margin: 0;
}

/* Alerts */
.alert[b-bpstg87n5z] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 14px;
}

.alert i[b-bpstg87n5z] {
    font-size: 20px;
    flex-shrink: 0;
}

.alert-danger[b-bpstg87n5z] {
    background: var(--fluent-danger-bg);
    color: var(--fluent-danger);
}

.alert-close[b-bpstg87n5z] {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 20px;
    color: inherit;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* Cards */
.add-recipe-container .card[b-bpstg87n5z] {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin-bottom: 16px;
}

.section-header[b-bpstg87n5z] {
    margin-bottom: 16px;
}

.section-header h2[b-bpstg87n5z] {
    font-size: 18px;
    font-weight: 600;
    color: var(--brown);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header h2 i[b-bpstg87n5z] {
    color: var(--sage);
}

/* Import Section */
.import-section .text-muted[b-bpstg87n5z] {
    margin: 0 0 16px;
    font-size: 14px;
}

.import-input-group[b-bpstg87n5z] {
    display: flex;
    gap: 12px;
}

.import-input-group .form-control[b-bpstg87n5z] {
    flex: 1;
}

.divider[b-bpstg87n5z] {
    display: flex;
    align-items: center;
    margin: 24px 0 0;
    color: var(--text-muted);
    font-size: 14px;
}

.divider[b-bpstg87n5z]::before,
.divider[b-bpstg87n5z]::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.divider span[b-bpstg87n5z] {
    padding: 0 16px;
}

/* Form Elements */
.form-group[b-bpstg87n5z] {
    margin-bottom: 16px;
}

.form-group:last-child[b-bpstg87n5z] {
    margin-bottom: 0;
}

.form-label[b-bpstg87n5z] {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.required[b-bpstg87n5z] {
    color: var(--fluent-danger);
}

.form-control[b-bpstg87n5z] {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.form-control:focus[b-bpstg87n5z] {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px var(--sage-light);
}

.form-control[b-bpstg87n5z]::placeholder {
    color: var(--text-light);
}

textarea.form-control[b-bpstg87n5z] {
    resize: vertical;
    min-height: 100px;
}

.field-error[b-bpstg87n5z] {
    display: block;
    color: var(--fluent-danger);
    font-size: 13px;
    margin-top: 4px;
}

.form-row[b-bpstg87n5z] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Image Section */
.image-section[b-bpstg87n5z] {
    display: flex;
    flex-direction: column;
}

.image-preview[b-bpstg87n5z] {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.image-preview img[b-bpstg87n5z] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-image[b-bpstg87n5z] {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.remove-image:hover[b-bpstg87n5z] {
    background: rgba(0, 0, 0, 0.8);
}

.image-upload[b-bpstg87n5z] {
    position: relative;
}

.image-upload input[type="file"][b-bpstg87n5z] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.upload-area[b-bpstg87n5z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    background: var(--cream);
    cursor: pointer;
    transition: all 0.2s;
}

.upload-area:hover[b-bpstg87n5z] {
    border-color: var(--sage);
    background: var(--sage-light);
}

.upload-area i[b-bpstg87n5z] {
    font-size: 40px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.upload-area span[b-bpstg87n5z] {
    color: var(--text-muted);
    font-size: 14px;
}

.upload-hint[b-bpstg87n5z] {
    font-size: 12px !important;
    color: var(--text-light) !important;
    margin-top: 4px;
}

/* Tags Input */
.tags-input[b-bpstg87n5z] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.selected-tags[b-bpstg87n5z] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-chip[b-bpstg87n5z] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--sage-light);
    color: var(--sage-dark);
    border-radius: 16px;
    font-size: 13px;
}

.tag-chip.selected[b-bpstg87n5z] {
    background: var(--sage);
    color: white;
}

.tag-remove[b-bpstg87n5z] {
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    cursor: pointer;
    display: flex;
    opacity: 0.7;
}

.tag-remove:hover[b-bpstg87n5z] {
    opacity: 1;
}

.tag-add-row[b-bpstg87n5z] {
    display: flex;
    gap: 12px;
}

.tag-add-row .form-control[b-bpstg87n5z] {
    flex: 1;
}

.suggested-tags[b-bpstg87n5z] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.suggested-label[b-bpstg87n5z] {
    font-size: 13px;
    color: var(--text-muted);
}

.suggested-tag[b-bpstg87n5z] {
    padding: 4px 10px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.suggested-tag:hover[b-bpstg87n5z] {
    border-color: var(--sage);
    color: var(--sage);
}

/* Form Actions */
.form-actions[b-bpstg87n5z] {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-lg[b-bpstg87n5z] {
    padding: 14px 24px;
    font-size: 16px;
}

.spinner-sm[b-bpstg87n5z] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin-b-bpstg87n5z 0.8s linear infinite;
    margin-right: 8px;
}

@keyframes spin-b-bpstg87n5z {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 640px) {
    .add-recipe-container[b-bpstg87n5z] {
        max-width: 100%;
    }

    .add-recipe-container .card[b-bpstg87n5z] {
        padding: 20px;
    }

    .form-row[b-bpstg87n5z] {
        grid-template-columns: 1fr;
    }

    .import-input-group[b-bpstg87n5z] {
        flex-direction: column;
    }

    .tag-add-row[b-bpstg87n5z] {
        flex-direction: column;
    }

    .form-actions[b-bpstg87n5z] {
        flex-direction: column;
    }

    .form-actions .btn[b-bpstg87n5z] {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .add-recipe-page[b-bpstg87n5z] {
        padding: 24px;
    }

    .add-recipe-container[b-bpstg87n5z] {
        margin: 0 auto;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Home Page - Warm Kitchen 2026 Polished Design */

.home-page[b-h7czj8no2j] {
    min-height: 100vh;
    background: var(--cream);
}

/* ==========================
   MOBILE LAYOUT (< 768px)
   ========================== */
.home-mobile[b-h7czj8no2j] {
    display: block;
    padding: var(--space-5);
}

.home-desktop[b-h7czj8no2j], .home-tv[b-h7czj8no2j] {
    display: none;
}

.mobile-header[b-h7czj8no2j] {
    margin-bottom: var(--space-5);
}

.mobile-header h1[b-h7czj8no2j] {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--brown);
    margin: 0 0 var(--space-1);
    letter-spacing: var(--letter-spacing-tight);
}

.mobile-header .subtitle[b-h7czj8no2j] {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

/* Search Bar */
.search-container[b-h7czj8no2j] {
    margin-bottom: var(--space-5);
}

.search-bar[b-h7czj8no2j] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    box-shadow: var(--shadow-card);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-bar:focus-within[b-h7czj8no2j] {
    border-color: var(--sage);
    box-shadow: var(--shadow-card), 0 0 0 3px rgba(122, 155, 109, 0.12);
}

.search-bar i[b-h7czj8no2j] {
    color: var(--text-light);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.search-bar input[b-h7czj8no2j] {
    flex: 1;
    border: none;
    background: none;
    font-size: 0.9375rem;
    color: var(--text-dark);
    outline: none;
}

.search-bar input[b-h7czj8no2j]::placeholder {
    color: var(--text-light);
}

/* Quick Actions Grid */
.quick-actions-grid[b-h7czj8no2j] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.action-card[b-h7czj8no2j] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-3);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-fast);
}

.action-card:hover[b-h7czj8no2j] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--border-dark);
}

.action-card.primary[b-h7czj8no2j] {
    background: var(--sage);
    border-color: var(--sage);
    color: var(--white);
}

.action-card.primary:hover[b-h7czj8no2j] {
    background: var(--sage-hover);
    border-color: var(--sage-hover);
}

.action-card i[b-h7czj8no2j] {
    font-size: 1.75rem;
}

.action-card span[b-h7czj8no2j] {
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
}

/* Cooking Banner */
.cooking-banner[b-h7czj8no2j] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--terracotta-light);
    border: 1px solid rgba(196, 120, 92, 0.25);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-5);
    font-size: 0.875rem;
}

.cooking-banner i[b-h7czj8no2j] {
    font-size: 1.25rem;
    color: var(--terracotta);
}

.cooking-banner span[b-h7czj8no2j] {
    flex: 1;
    color: var(--terracotta-pressed);
}

.cooking-banner a[b-h7czj8no2j] {
    color: var(--terracotta);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.cooking-banner a:hover[b-h7czj8no2j] {
    color: var(--terracotta-pressed);
}

/* Sections */
.section[b-h7czj8no2j] {
    margin-bottom: var(--space-6);
}

.section-header[b-h7czj8no2j] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-3);
}

.section-header h2[b-h7czj8no2j],
.section-header h3[b-h7czj8no2j] {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--brown);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    letter-spacing: var(--letter-spacing-tight);
}

.section-header h2 i[b-h7czj8no2j],
.section-header h3 i[b-h7czj8no2j] {
    color: var(--sage);
    font-size: 1.125rem;
}

.discovery-sparkle[b-h7czj8no2j] {
    animation: sparkle-pulse-b-h7czj8no2j 2s ease-in-out infinite;
}

@keyframes sparkle-pulse-b-h7czj8no2j {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.see-all[b-h7czj8no2j] {
    font-size: 0.8125rem;
    color: var(--sage);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast);
}

.see-all:hover[b-h7czj8no2j] {
    color: var(--sage-dark);
}

/* Meal Cards */
.meal-cards[b-h7czj8no2j] {
    display: flex;
    gap: var(--space-3);
    overflow-x: auto;
    padding-bottom: var(--space-2);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.meal-cards[b-h7czj8no2j]::-webkit-scrollbar {
    display: none;
}

.meal-card[b-h7czj8no2j] {
    flex-shrink: 0;
    width: 120px;
    padding: var(--space-4);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-fast);
}

.meal-card:hover[b-h7czj8no2j] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}

.meal-type[b-h7czj8no2j] {
    font-size: 0.6875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: var(--space-1);
}

.meal-name[b-h7czj8no2j] {
    font-size: 0.8125rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

/* Recipe Scroll */
.recipe-scroll[b-h7czj8no2j] {
    display: flex;
    gap: var(--space-3);
    overflow-x: auto;
    padding-bottom: var(--space-2);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.recipe-scroll[b-h7czj8no2j]::-webkit-scrollbar {
    display: none;
}

.recipe-card-mini[b-h7czj8no2j] {
    flex-shrink: 0;
    width: 100px;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.recipe-card-mini:hover[b-h7czj8no2j] {
    transform: translateY(-2px);
}

.recipe-card-mini img[b-h7czj8no2j],
.recipe-card-mini .recipe-card-placeholder[b-h7czj8no2j] {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    box-shadow: var(--shadow-card);
}

.recipe-card-mini .recipe-card-placeholder i[b-h7czj8no2j] {
    font-size: 2rem;
}

.recipe-card-mini .recipe-title[b-h7czj8no2j] {
    display: block;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    margin-top: var(--space-2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

/* Suggestion Chips */
.suggestion-chips[b-h7czj8no2j] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.suggestion-chip[b-h7czj8no2j] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    font-size: 0.8125rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.suggestion-chip:hover[b-h7czj8no2j] {
    background: var(--sage-light);
    border-color: var(--sage);
    color: var(--sage-dark);
}

.suggestion-chip i[b-h7czj8no2j] {
    font-size: 1rem;
    color: var(--sage);
}

/* ==========================
   DESKTOP LAYOUT (768px - 1400px)
   ========================== */
@media (min-width: 768px) {
    .home-mobile[b-h7czj8no2j] {
        display: none;
    }

    .home-desktop[b-h7czj8no2j] {
        display: block;
        padding: var(--space-6);
        max-width: 1200px;
    }

    /* Stats Row */
    .stats-row[b-h7czj8no2j] {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-4);
        margin-bottom: var(--space-6);
    }

    .stat-card[b-h7czj8no2j] {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: var(--space-5);
        text-align: center;
        box-shadow: var(--shadow-card);
        transition: all var(--transition-fast);
    }

    .stat-card:hover[b-h7czj8no2j] {
        transform: translateY(-2px);
        box-shadow: var(--shadow-card-hover);
    }

    .stat-value[b-h7czj8no2j] {
        display: block;
        font-size: 1.75rem;
        font-weight: var(--font-weight-bold);
        color: var(--sage);
        letter-spacing: var(--letter-spacing-tight);
    }

    .stat-label[b-h7czj8no2j] {
        font-size: 0.8125rem;
        color: var(--text-muted);
        font-weight: var(--font-weight-medium);
        margin-top: var(--space-1);
    }

    /* Desktop Header */
    .desktop-header[b-h7czj8no2j] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: var(--space-5);
    }

    .desktop-header h1[b-h7czj8no2j] {
        font-size: 1.75rem;
        font-weight: var(--font-weight-semibold);
        color: var(--brown);
        margin: 0 0 var(--space-1);
        letter-spacing: var(--letter-spacing-tight);
    }

    .desktop-header .subtitle[b-h7czj8no2j] {
        color: var(--text-muted);
        font-size: 0.9375rem;
        margin: 0;
    }

    .header-actions[b-h7czj8no2j] {
        display: flex;
        gap: var(--space-3);
    }

    /* Dashboard Grid */
    .dashboard-grid[b-h7czj8no2j] {
        display: grid;
        grid-template-columns: 1fr 320px;
        gap: var(--space-6);
        margin-top: var(--space-6);
    }

    .main-column[b-h7czj8no2j],
    .side-column[b-h7czj8no2j] {
        display: flex;
        flex-direction: column;
        gap: var(--space-5);
    }

    /* Quick Actions Desktop */
    .quick-actions-desktop[b-h7czj8no2j] {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-3);
    }

    .action-tile[b-h7czj8no2j] {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-3);
        padding: var(--space-6) var(--space-4);
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: var(--text-dark);
        box-shadow: var(--shadow-card);
        transition: all var(--transition-fast);
    }

    .action-tile:hover[b-h7czj8no2j] {
        background: var(--sage-light);
        border-color: var(--sage);
        color: var(--sage-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-card-hover);
    }

    .action-tile i[b-h7czj8no2j] {
        font-size: 2rem;
        color: var(--sage);
        transition: color var(--transition-fast);
    }

    .action-tile:hover i[b-h7czj8no2j] {
        color: var(--sage-dark);
    }

    .action-tile span[b-h7czj8no2j] {
        font-size: 0.875rem;
        font-weight: var(--font-weight-medium);
    }

    /* Section Card */
    .section.card[b-h7czj8no2j] {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: var(--space-5);
        box-shadow: var(--shadow-card);
        margin-bottom: 0;
    }

    /* Today's Meals */
    .today-meals[b-h7czj8no2j] {
        display: flex;
        flex-direction: column;
        gap: var(--space-3);
    }

    .today-meal[b-h7czj8no2j] {
        display: flex;
        align-items: center;
        gap: var(--space-4);
        padding: var(--space-3) var(--space-4);
        background: var(--cream-warm);
        border-radius: var(--radius-md);
        text-decoration: none;
        transition: background var(--transition-fast);
    }

    .today-meal:hover[b-h7czj8no2j] {
        background: var(--cream-dark);
    }

    .meal-type-badge[b-h7czj8no2j] {
        padding: var(--space-1) var(--space-3);
        background: var(--sage-light);
        color: var(--sage-dark);
        border-radius: 16px;
        font-size: 0.6875rem;
        font-weight: var(--font-weight-semibold);
        text-transform: uppercase;
        letter-spacing: 0.03em;
        flex-shrink: 0;
    }

    .meal-details[b-h7czj8no2j] {
        flex: 1;
        min-width: 0;
    }

    .meal-details .meal-name[b-h7czj8no2j] {
        display: block;
        font-weight: var(--font-weight-medium);
        color: var(--text-dark);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .meal-details .meal-meta[b-h7czj8no2j] {
        font-size: 0.75rem;
        color: var(--text-muted);
        margin-top: var(--space-1);
        display: flex;
        align-items: center;
        gap: var(--space-1);
    }

    .meal-details .meal-meta i[b-h7czj8no2j] {
        font-size: 0.875rem;
    }

    /* Side Column Cards */
    .side-column .card[b-h7czj8no2j] {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: var(--space-5);
        box-shadow: var(--shadow-card);
    }

    .cooking-now[b-h7czj8no2j] {
        background: var(--terracotta-light) !important;
        border-color: rgba(196, 120, 92, 0.25) !important;
    }

    .cooking-item[b-h7czj8no2j] {
        display: block;
        padding: var(--space-3);
        background: var(--white);
        border-radius: var(--radius-md);
        margin-top: var(--space-3);
        text-decoration: none;
        transition: background var(--transition-fast);
    }

    .cooking-item:hover[b-h7czj8no2j] {
        background: var(--cream-warm);
    }

    .cooking-name[b-h7czj8no2j] {
        display: block;
        font-weight: var(--font-weight-medium);
        color: var(--text-dark);
    }

    .cooking-step[b-h7czj8no2j] {
        font-size: 0.75rem;
        color: var(--text-muted);
        margin-top: var(--space-1);
    }

    /* Shopping Preview */
    .shopping-preview[b-h7czj8no2j] {
        display: flex;
        flex-direction: column;
        gap: var(--space-2);
        margin-top: var(--space-3);
    }

    .shopping-item[b-h7czj8no2j] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--space-3) var(--space-4);
        background: var(--cream-warm);
        border-radius: var(--radius-md);
        font-size: 0.875rem;
        transition: background var(--transition-fast);
    }

    .shopping-item:hover[b-h7czj8no2j] {
        background: var(--cream-dark);
    }

    .shopping-item span:first-child[b-h7czj8no2j] {
        font-weight: var(--font-weight-medium);
        color: var(--text-dark);
    }

    .shopping-item .text-muted[b-h7czj8no2j] {
        font-size: 0.8125rem;
        color: var(--text-muted);
    }

    .more-items[b-h7czj8no2j] {
        font-size: 0.8125rem;
        color: var(--sage);
        font-weight: var(--font-weight-medium);
        text-align: center;
        padding: var(--space-2);
    }

    .empty-state-mini[b-h7czj8no2j] {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-2);
        padding: var(--space-6);
        color: var(--text-muted);
        text-align: center;
    }

    .empty-state-mini i[b-h7czj8no2j] {
        font-size: 2rem;
        color: var(--sage);
        opacity: 0.6;
    }
}

/* ==========================
   TV LAYOUT (> 1400px)
   ========================== */
@media (min-width: 1400px) {
    .home-desktop[b-h7czj8no2j] {
        display: none;
    }

    .home-tv[b-h7czj8no2j] {
        display: block;
        padding: var(--space-7) var(--space-9);
    }

    /* TV Header */
    .tv-header[b-h7czj8no2j] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: var(--space-7);
    }

    .tv-header-left h1[b-h7czj8no2j] {
        font-size: 2.25rem;
        font-weight: var(--font-weight-semibold);
        color: var(--brown);
        margin: 0 0 var(--space-1);
        letter-spacing: var(--letter-spacing-tight);
    }

    .tv-header-left .date[b-h7czj8no2j] {
        font-size: 1rem;
        color: var(--text-muted);
    }

    .tv-header-actions[b-h7czj8no2j] {
        display: flex;
        gap: var(--space-4);
    }

    .tv-header-actions .btn[b-h7czj8no2j] {
        padding: var(--space-4) var(--space-6);
        font-size: 1rem;
    }

    /* Tonight Hero */
    .tonight-hero[b-h7czj8no2j] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-9);
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-elevated);
        margin-bottom: var(--space-7);
    }

    .hero-image[b-h7czj8no2j] {
        height: 400px;
        overflow: hidden;
    }

    .hero-image img[b-h7czj8no2j] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-slow);
    }

    .tonight-hero:hover .hero-image img[b-h7czj8no2j] {
        transform: scale(1.03);
    }

    .hero-placeholder[b-h7czj8no2j] {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--cream-dark), var(--cream));
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-placeholder i[b-h7czj8no2j] {
        font-size: 5rem;
        color: var(--text-light);
        opacity: 0.5;
    }

    .hero-content[b-h7czj8no2j] {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: var(--space-9);
    }

    .hero-label[b-h7czj8no2j] {
        font-size: 0.875rem;
        font-weight: var(--font-weight-semibold);
        color: var(--sage);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: var(--space-3);
    }

    .hero-content h2[b-h7czj8no2j] {
        font-size: 2.25rem;
        font-weight: var(--font-weight-bold);
        color: var(--brown);
        margin: 0 0 var(--space-4);
        letter-spacing: var(--letter-spacing-tight);
        line-height: 1.2;
    }

    .hero-description[b-h7czj8no2j] {
        font-size: 1rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin: 0 0 var(--space-5);
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-meta[b-h7czj8no2j] {
        display: flex;
        gap: var(--space-6);
        margin-bottom: var(--space-6);
        font-size: 0.9375rem;
        color: var(--text-muted);
    }

    .hero-meta span[b-h7czj8no2j] {
        display: flex;
        align-items: center;
        gap: var(--space-2);
    }

    .hero-meta i[b-h7czj8no2j] {
        color: var(--sage);
    }

    .hero-content .btn[b-h7czj8no2j] {
        align-self: flex-start;
    }

    /* Week Grid */
    .week-grid[b-h7czj8no2j] {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: var(--space-4);
        margin-bottom: var(--space-7);
    }

    .week-day[b-h7czj8no2j] {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: var(--space-5);
        box-shadow: var(--shadow-card);
        transition: all var(--transition-fast);
    }

    .week-day:hover[b-h7czj8no2j] {
        box-shadow: var(--shadow-card-hover);
    }

    .week-day.today[b-h7czj8no2j] {
        background: var(--sage-light);
        border: 2px solid var(--sage);
    }

    .day-header[b-h7czj8no2j] {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: var(--space-4);
        padding-bottom: var(--space-3);
        border-bottom: 1px solid var(--border);
    }

    .week-day.today .day-header[b-h7czj8no2j] {
        border-bottom-color: rgba(122, 155, 109, 0.3);
    }

    .day-name[b-h7czj8no2j] {
        font-size: 0.875rem;
        font-weight: var(--font-weight-semibold);
        color: var(--brown);
    }

    .day-date[b-h7czj8no2j] {
        font-size: 0.75rem;
        color: var(--text-muted);
    }

    .day-meals[b-h7czj8no2j] {
        display: flex;
        flex-direction: column;
        gap: var(--space-2);
    }

    .day-meal[b-h7czj8no2j] {
        font-size: 0.8125rem;
        color: var(--text-dark);
        padding: var(--space-2) var(--space-3);
        background: var(--cream-warm);
        border-radius: var(--radius-sm);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .week-day.today .day-meal[b-h7czj8no2j] {
        background: var(--white);
    }

    .more-meals[b-h7czj8no2j] {
        font-size: 0.6875rem;
        color: var(--text-muted);
        margin-top: var(--space-1);
    }

    .no-meals[b-h7czj8no2j] {
        font-size: 0.8125rem;
        color: var(--text-light);
        font-style: italic;
    }

    /* Bottom Grid */
    .bottom-grid[b-h7czj8no2j] {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }

    .bottom-grid .card[b-h7czj8no2j] {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: var(--space-6);
        box-shadow: var(--shadow-card);
        transition: all var(--transition-fast);
    }

    .bottom-grid .card:hover[b-h7czj8no2j] {
        box-shadow: var(--shadow-card-hover);
    }

    .favorites-preview[b-h7czj8no2j],
    .recent-preview[b-h7czj8no2j] {
        display: flex;
        flex-direction: column;
        gap: var(--space-2);
        margin-top: var(--space-3);
    }

    .favorite-item[b-h7czj8no2j],
    .recent-item[b-h7czj8no2j] {
        display: block;
        padding: var(--space-3);
        background: var(--cream-warm);
        border-radius: var(--radius-md);
        text-decoration: none;
        color: var(--text-dark);
        font-size: 0.875rem;
        font-weight: var(--font-weight-medium);
        transition: background var(--transition-fast);
    }

    .favorite-item:hover[b-h7czj8no2j],
    .recent-item:hover[b-h7czj8no2j] {
        background: var(--cream-dark);
    }
}
/* /Components/Pages/RecipeDetail.razor.rz.scp.css */
/* Recipe Detail Page - Warm Kitchen Design */
.recipe-detail-page[b-7j3egj9o93] {
    min-height: 100vh;
    background: var(--cream);
}

/* Header */
.recipe-header[b-7j3egj9o93] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.back-link[b-7j3egj9o93] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sage);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.back-link:hover[b-7j3egj9o93] {
    text-decoration: underline;
}

.recipe-actions[b-7j3egj9o93] {
    display: flex;
    gap: 8px;
}

.action-btn[b-7j3egj9o93] {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.action-btn:hover[b-7j3egj9o93] {
    border-color: var(--sage);
    color: var(--sage);
}

.action-btn.active[b-7j3egj9o93] {
    background: var(--terracotta-light);
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.action-btn i[b-7j3egj9o93] {
    font-size: 20px;
}

/* Hero */
.recipe-content[b-7j3egj9o93] {
    display: flex;
    flex-direction: column;
}

.recipe-hero[b-7j3egj9o93] {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.recipe-image[b-7j3egj9o93] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-image-placeholder[b-7j3egj9o93] {
    width: 100%;
    height: 100%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-image-placeholder i[b-7j3egj9o93] {
    font-size: 80px;
    color: var(--text-light);
}

/* Recipe Info */
.recipe-info[b-7j3egj9o93] {
    padding: 24px 20px;
    background: var(--white);
}

.recipe-info h1[b-7j3egj9o93] {
    font-size: 28px;
    font-weight: 700;
    color: var(--brown);
    margin: 0 0 12px;
    line-height: 1.2;
}

.recipe-description[b-7j3egj9o93] {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 20px;
}

/* Meta */
.recipe-meta[b-7j3egj9o93] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.meta-item[b-7j3egj9o93] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    background: var(--cream);
    border-radius: var(--radius-md);
    min-width: 70px;
}

.meta-item i[b-7j3egj9o93] {
    font-size: 20px;
    color: var(--sage);
    margin-bottom: 4px;
}

.meta-label[b-7j3egj9o93] {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.meta-value[b-7j3egj9o93] {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Tags */
.recipe-tags[b-7j3egj9o93] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tag[b-7j3egj9o93] {
    padding: 6px 12px;
    background: var(--sage-light);
    color: var(--sage-dark);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

/* Start Cooking */
.start-cooking-section[b-7j3egj9o93] {
    margin-top: 8px;
}

.start-cooking-section .btn[b-7j3egj9o93] {
    width: 100%;
    justify-content: center;
}

/* Recipe Details */
.recipe-details[b-7j3egj9o93] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recipe-details .card[b-7j3egj9o93] {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.section-header[b-7j3egj9o93] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-header h2[b-7j3egj9o93] {
    font-size: 18px;
    font-weight: 600;
    color: var(--brown);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header h2 i[b-7j3egj9o93] {
    color: var(--sage);
}

/* Servings Adjuster */
.servings-adjuster[b-7j3egj9o93] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.adjuster-btn[b-7j3egj9o93] {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.adjuster-btn:hover:not(:disabled)[b-7j3egj9o93] {
    border-color: var(--sage);
    color: var(--sage);
}

.adjuster-btn:disabled[b-7j3egj9o93] {
    opacity: 0.5;
    cursor: not-allowed;
}

.servings-display[b-7j3egj9o93] {
    font-size: 13px;
    color: var(--text-muted);
    min-width: 70px;
    text-align: center;
}

/* Ingredients List */
.ingredients-list[b-7j3egj9o93] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ingredient-item[b-7j3egj9o93] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.ingredient-item:last-child[b-7j3egj9o93] {
    border-bottom: none;
    padding-bottom: 0;
}

.ingredient-check[b-7j3egj9o93] {
    flex-shrink: 0;
    font-size: 20px;
    color: var(--text-light);
}

.ingredient-check.checked[b-7j3egj9o93] {
    color: var(--sage);
}

.ingredient-text[b-7j3egj9o93] {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.4;
}

.ingredient-text.crossed[b-7j3egj9o93] {
    text-decoration: line-through;
    color: var(--text-muted);
}

/* Instructions List */
.instructions-list[b-7j3egj9o93] {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

.instruction-step[b-7j3egj9o93] {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.instruction-step:last-child[b-7j3egj9o93] {
    border-bottom: none;
    padding-bottom: 0;
}

.step-number[b-7j3egj9o93] {
    width: 32px;
    height: 32px;
    background: var(--sage-light);
    color: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.step-number.completed[b-7j3egj9o93] {
    background: var(--sage);
    color: white;
}

.step-text[b-7j3egj9o93] {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 4px;
}

.step-text.completed[b-7j3egj9o93] {
    text-decoration: line-through;
    color: var(--text-muted);
}

/* Notes */
.notes-text[b-7j3egj9o93] {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    white-space: pre-wrap;
}

/* Source */
.source-link[b-7j3egj9o93] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sage);
    text-decoration: none;
    font-size: 14px;
}

.source-link:hover[b-7j3egj9o93] {
    text-decoration: underline;
}

/* Not Found */
.not-found[b-7j3egj9o93] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 24px;
    text-align: center;
}

.icon-circle[b-7j3egj9o93] {
    width: 100px;
    height: 100px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-circle i[b-7j3egj9o93] {
    font-size: 48px;
    color: var(--sage);
}

.not-found h2[b-7j3egj9o93] {
    font-size: 24px;
    color: var(--brown);
    margin: 0 0 8px;
}

/* Modal */
.modal-backdrop[b-7j3egj9o93] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 1000;
}

.modal-content[b-7j3egj9o93] {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
}

.modal-header[b-7j3egj9o93] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3[b-7j3egj9o93] {
    font-size: 18px;
    font-weight: 600;
    color: var(--brown);
    margin: 0;
}

.modal-close[b-7j3egj9o93] {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal-body[b-7j3egj9o93] {
    padding: 24px;
}

.modal-body .form-group[b-7j3egj9o93] {
    margin-bottom: 16px;
}

.modal-body .form-group:last-child[b-7j3egj9o93] {
    margin-bottom: 0;
}

.modal-body .form-label[b-7j3egj9o93] {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.modal-body .form-control[b-7j3egj9o93] {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--text-dark);
}

.modal-footer[b-7j3egj9o93] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}

/* Desktop Layout */
@media (min-width: 768px) {
    .recipe-content[b-7j3egj9o93] {
        flex-direction: row;
        max-width: 1200px;
        margin: 0 auto;
        padding: 24px;
        gap: 32px;
    }

    .recipe-hero[b-7j3egj9o93] {
        width: 45%;
        height: auto;
        min-height: 400px;
        border-radius: var(--radius-lg);
        overflow: hidden;
        flex-shrink: 0;
    }

    .recipe-info[b-7j3egj9o93] {
        flex: 1;
        padding: 0;
        background: transparent;
    }

    .recipe-info h1[b-7j3egj9o93] {
        font-size: 36px;
    }

    .recipe-details[b-7j3egj9o93] {
        max-width: 1200px;
        margin: 0 auto;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ingredients-section[b-7j3egj9o93] {
        flex: 1;
        min-width: 300px;
    }

    .instructions-section[b-7j3egj9o93] {
        flex: 2;
        min-width: 400px;
    }

    .notes-section[b-7j3egj9o93], .source-section[b-7j3egj9o93] {
        width: 100%;
    }

    .start-cooking-section .btn[b-7j3egj9o93] {
        width: auto;
    }
}

/* TV Layout */
@media (min-width: 1400px) {
    .recipe-header[b-7j3egj9o93] {
        padding: 20px 48px;
    }

    .recipe-content[b-7j3egj9o93] {
        padding: 32px 48px;
    }

    .recipe-hero[b-7j3egj9o93] {
        width: 50%;
        min-height: 500px;
    }

    .recipe-info h1[b-7j3egj9o93] {
        font-size: 42px;
    }

    .recipe-details[b-7j3egj9o93] {
        padding: 32px 48px;
    }

    .meta-item[b-7j3egj9o93] {
        padding: 16px 24px;
    }
}
/* /Components/Pages/Sales/FlyerConfig.razor.rz.scp.css */
.flyer-config-page[b-ohsqj9szji] {
    padding: 24px;
    max-width: 900px;
}

.page-header h1[b-ohsqj9szji] {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--brown);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-header .text-muted[b-ohsqj9szji] {
    color: var(--text-muted);
    margin-top: 4px;
}

.back-link[b-ohsqj9szji] {
    color: var(--sage);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.back-link:hover[b-ohsqj9szji] {
    color: var(--sage-dark);
}

.config-section[b-ohsqj9szji] {
    margin-top: 24px;
}

.config-section h2[b-ohsqj9szji] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 4px;
}

.section-desc[b-ohsqj9szji] {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.email-address-box[b-ohsqj9szji] {
    margin-bottom: 20px;
}

.email-label[b-ohsqj9szji] {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.email-row[b-ohsqj9szji] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.email-address[b-ohsqj9szji] {
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.95rem;
    color: var(--brown);
    word-break: break-all;
    flex: 1;
}

.toggle-row[b-ohsqj9szji] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.toggle-label[b-ohsqj9szji] {
    font-weight: 500;
    color: var(--brown);
}

.toggle-switch[b-ohsqj9szji] {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.toggle-switch input[b-ohsqj9szji] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider[b-ohsqj9szji] {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: var(--border-dark);
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider[b-ohsqj9szji]:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider[b-ohsqj9szji] {
    background-color: var(--sage);
}

.toggle-switch input:checked + .toggle-slider[b-ohsqj9szji]:before {
    transform: translateX(22px);
}

.action-row[b-ohsqj9szji] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.action-hint[b-ohsqj9szji] {
    font-size: 0.85rem;
    color: var(--text-light);
}

.stats-row[b-ohsqj9szji] {
    display: flex;
    gap: 32px;
}

.stat-item[b-ohsqj9szji] {
    text-align: center;
}

.stat-value[b-ohsqj9szji] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sage-dark);
}

.stat-label[b-ohsqj9szji] {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Ingestion Log */
.ingestion-log[b-ohsqj9szji] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.log-entry[b-ohsqj9szji] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    flex-wrap: wrap;
}

.log-status[b-ohsqj9szji] {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
}

.status-queued[b-ohsqj9szji] {
    background: var(--terracotta-light);
    color: var(--terracotta);
}

.status-processing[b-ohsqj9szji] {
    background: var(--sage-light);
    color: var(--sage);
}

.status-completed[b-ohsqj9szji] {
    background: var(--sage-light);
    color: var(--sage-dark);
}

.status-failed[b-ohsqj9szji] {
    background: var(--terracotta-light);
    color: var(--brown);
}

.log-store[b-ohsqj9szji] {
    font-weight: 500;
    color: var(--brown);
}

.log-items[b-ohsqj9szji] {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.log-date[b-ohsqj9szji] {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-left: auto;
}

.log-error[b-ohsqj9szji] {
    width: 100%;
    font-size: 0.85rem;
    color: var(--terracotta);
    margin-top: 4px;
}

.security-hint[b-ohsqj9szji] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: var(--terracotta);
    background: var(--terracotta-light);
    border-radius: var(--radius-sm);
}

.security-hint i[b-ohsqj9szji] {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Responsive */
@media (max-width: 640px) {
    .flyer-config-page[b-ohsqj9szji] {
        padding: 16px;
    }

    .email-row[b-ohsqj9szji] {
        flex-direction: column;
        align-items: stretch;
    }

    .action-row[b-ohsqj9szji] {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-row[b-ohsqj9szji] {
        gap: 16px;
    }

    .log-entry[b-ohsqj9szji] {
        flex-direction: column;
        align-items: flex-start;
    }

    .log-date[b-ohsqj9szji] {
        margin-left: 0;
    }
}
/* /Components/Pages/Sales/Index.razor.rz.scp.css */
.sales-page[b-spr6562dfc] {
    padding: 24px;
    max-width: 1600px;
}

.page-header[b-spr6562dfc] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.page-header h1[b-spr6562dfc] {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--brown);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-header .text-muted[b-spr6562dfc] {
    color: var(--text-muted);
    margin-top: 4px;
}

/* Alerts section */
.sale-alerts-section[b-spr6562dfc] {
    margin-bottom: 32px;
}

.sale-alerts-grid[b-spr6562dfc] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.sale-alert-card[b-spr6562dfc] {
    background: var(--terracotta-light);
    border: 1px solid var(--terracotta);
    border-radius: var(--radius-md);
    padding: 16px;
}

.alert-item-name[b-spr6562dfc] {
    font-weight: 600;
    color: var(--brown);
    font-size: 1.1rem;
}

.alert-item-type[b-spr6562dfc] {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.alert-price[b-spr6562dfc] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.sale-price[b-spr6562dfc] {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--sage-dark);
}

.regular-price[b-spr6562dfc] {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
}

.alert-store[b-spr6562dfc] {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.alert-deal[b-spr6562dfc] {
    font-size: 0.85rem;
    color: var(--terracotta);
    font-weight: 500;
    margin-top: 4px;
}

.alert-expires[b-spr6562dfc] {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Category sections */
.sale-category-section[b-spr6562dfc] {
    margin-bottom: 24px;
}

.category-header[b-spr6562dfc] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brown-light);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.sale-items-grid[b-spr6562dfc] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.sale-item-card[b-spr6562dfc] {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.sale-item-card:hover[b-spr6562dfc],
.sale-item-card:focus-visible[b-spr6562dfc] {
    box-shadow: var(--shadow-md);
    border-color: var(--sage);
}

.sale-item-name[b-spr6562dfc] {
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 8px;
}

.sale-item-prices[b-spr6562dfc] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.sale-description[b-spr6562dfc] {
    font-size: 0.85rem;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 8px;
    padding: 4px 8px;
    background: var(--sage-light);
    border-radius: var(--radius-sm);
    display: inline-block;
}

.sale-item-meta[b-spr6562dfc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sale-store[b-spr6562dfc] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sale-expires[b-spr6562dfc] {
    color: var(--text-light);
}

/* Search */
.search-container[b-spr6562dfc] {
    margin-bottom: 16px;
}

.search-clear[b-spr6562dfc] {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
}

/* Responsive */
@media (max-width: 640px) {
    .sales-page[b-spr6562dfc] {
        padding: 16px;
    }

    .page-header[b-spr6562dfc] {
        flex-direction: column;
        gap: 12px;
    }

    .sale-alerts-grid[b-spr6562dfc],
    .sale-items-grid[b-spr6562dfc] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Settings.razor.rz.scp.css */
/* Settings Page - Warm Kitchen Design */
.settings-page[b-89q5jnrzwo] {
    min-height: 100vh;
    background: var(--cream);
    padding: 24px;
}

.settings-container[b-89q5jnrzwo] {
    width: 100%;
    max-width: 640px;
}

.settings-header[b-89q5jnrzwo] {
    margin-bottom: 24px;
}

.settings-header h1[b-89q5jnrzwo] {
    font-size: 28px;
    font-weight: 600;
    color: var(--brown);
    margin: 0 0 4px;
}

.settings-header .text-muted[b-89q5jnrzwo] {
    color: var(--text-muted);
    margin: 0;
}

/* Alerts */
.alert[b-89q5jnrzwo] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 14px;
}

.alert i[b-89q5jnrzwo] {
    font-size: 20px;
    flex-shrink: 0;
}

.alert-success[b-89q5jnrzwo] {
    background: var(--sage-light);
    color: var(--sage-dark);
}

.alert-close[b-89q5jnrzwo] {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 20px;
    color: inherit;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* Cards */
.settings-container .card[b-89q5jnrzwo] {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin-bottom: 16px;
}

.card-header-row[b-89q5jnrzwo] {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.header-icon-small[b-89q5jnrzwo] {
    width: 44px;
    height: 44px;
    background: var(--sage-light);
    color: var(--sage);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-icon-small i[b-89q5jnrzwo] {
    font-size: 22px;
}

.card-header-row h2[b-89q5jnrzwo] {
    font-size: 18px;
    font-weight: 600;
    color: var(--brown);
    margin: 0 0 4px;
}

.card-header-row .text-muted[b-89q5jnrzwo] {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* Setting Items */
.setting-item[b-89q5jnrzwo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    gap: 16px;
}

.setting-item:last-child[b-89q5jnrzwo] {
    border-bottom: none;
    padding-bottom: 0;
}

.setting-info[b-89q5jnrzwo] {
    flex: 1;
    min-width: 0;
}

.setting-label[b-89q5jnrzwo] {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 15px;
}

.setting-desc[b-89q5jnrzwo] {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Theme Buttons */
.theme-buttons[b-89q5jnrzwo] {
    display: flex;
    gap: 8px;
}

.theme-btn[b-89q5jnrzwo] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: var(--cream);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    min-width: 72px;
}

.theme-btn i[b-89q5jnrzwo] {
    font-size: 20px;
    color: var(--text-muted);
}

.theme-btn span[b-89q5jnrzwo] {
    font-size: 12px;
    color: var(--text-muted);
}

.theme-btn:hover[b-89q5jnrzwo] {
    border-color: var(--sage);
}

.theme-btn.active[b-89q5jnrzwo] {
    background: var(--sage-light);
    border-color: var(--sage);
}

.theme-btn.active i[b-89q5jnrzwo],
.theme-btn.active span[b-89q5jnrzwo] {
    color: var(--sage-dark);
}

/* Household List */
.household-list[b-89q5jnrzwo] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.household-item[b-89q5jnrzwo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    text-align: left;
}

.household-item:hover[b-89q5jnrzwo] {
    border-color: var(--sage);
}

.household-item.active[b-89q5jnrzwo] {
    background: var(--sage-light);
    border-color: var(--sage);
}

.household-info[b-89q5jnrzwo] {
    display: flex;
    flex-direction: column;
}

.household-name[b-89q5jnrzwo] {
    font-weight: 500;
    color: var(--text-dark);
}

.household-role[b-89q5jnrzwo] {
    font-size: 12px;
    color: var(--text-muted);
}

.active-icon[b-89q5jnrzwo] {
    font-size: 20px;
    color: var(--sage);
}

/* Form Controls */
.form-control-sm[b-89q5jnrzwo] {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--text-dark);
    min-width: 140px;
}

.form-control-sm:focus[b-89q5jnrzwo] {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px var(--sage-light);
}

/* Toggle Setting */
.toggle-setting[b-89q5jnrzwo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.toggle-switch[b-89q5jnrzwo] {
    position: relative;
    width: 48px;
    height: 28px;
    flex-shrink: 0;
}

.toggle-switch input[b-89q5jnrzwo] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider[b-89q5jnrzwo] {
    position: absolute;
    inset: 0;
    background: var(--border-dark);
    border-radius: 28px;
    transition: background 0.2s;
}

.toggle-slider[b-89q5jnrzwo]::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-slider[b-89q5jnrzwo] {
    background: var(--sage);
}

.toggle-switch input:checked + .toggle-slider[b-89q5jnrzwo]::before {
    transform: translateX(20px);
}

/* Link List */
.link-list[b-89q5jnrzwo] {
    display: flex;
    flex-direction: column;
}

.link-item[b-89q5jnrzwo] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.2s;
}

.link-item:last-child[b-89q5jnrzwo] {
    border-bottom: none;
    padding-bottom: 0;
}

.link-item:hover[b-89q5jnrzwo] {
    color: var(--sage);
}

.link-item > i:first-child[b-89q5jnrzwo] {
    font-size: 20px;
    color: var(--text-muted);
    width: 24px;
}

.link-item > span[b-89q5jnrzwo] {
    flex: 1;
    font-weight: 500;
}

.link-item > i:last-child[b-89q5jnrzwo] {
    font-size: 18px;
    color: var(--text-light);
}

/* About Info */
.about-info[b-89q5jnrzwo] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-row[b-89q5jnrzwo] {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

/* Sign Out Section */
.sign-out-section[b-89q5jnrzwo] {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.btn-block[b-89q5jnrzwo] {
    width: 100%;
    justify-content: center;
}

/* Responsive */
@media (max-width: 640px) {
    .settings-container[b-89q5jnrzwo] {
        max-width: 100%;
    }

    .settings-container .card[b-89q5jnrzwo] {
        padding: 20px;
    }

    .setting-item[b-89q5jnrzwo] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .theme-buttons[b-89q5jnrzwo] {
        width: 100%;
    }

    .theme-btn[b-89q5jnrzwo] {
        flex: 1;
    }

    .form-control-sm[b-89q5jnrzwo] {
        width: 100%;
    }
}
/* /Components/Shared/AddToMealPlanModal.razor.rz.scp.css */
/* Add to Meal Plan Modal Styles */

.modal-loading[b-qg6ams1xqt],
.modal-empty[b-qg6ams1xqt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1rem;
    color: var(--fluent-text-secondary);
}

.form-group[b-qg6ams1xqt] {
    margin-bottom: 1.25rem;
}

.form-group label[b-qg6ams1xqt] {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--fluent-text-primary);
}

.form-control[b-qg6ams1xqt] {
    width: 100%;
    padding: 0.625rem 0.75rem;
    font-size: 0.95rem;
    border: 1px solid var(--fluent-border-default);
    border-radius: var(--fluent-radius-medium, 6px);
    background-color: var(--fluent-bg-layer-2);
    color: var(--fluent-text-primary);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus[b-qg6ams1xqt] {
    outline: none;
    border-color: var(--fluent-brand-primary);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--fluent-brand-primary) 25%, transparent);
}

/* Meal type button group */
.meal-type-buttons[b-qg6ams1xqt] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.meal-type-btn[b-qg6ams1xqt] {
    flex: 1;
    min-width: 80px;
    padding: 0.625rem 1rem;
    border: 2px solid var(--fluent-border-default);
    background-color: var(--fluent-bg-layer-2);
    color: var(--fluent-text-primary);
    border-radius: var(--fluent-radius-medium, 6px);
    font-weight: 500;
    transition: all 0.15s ease;
}

.meal-type-btn:hover[b-qg6ams1xqt] {
    border-color: var(--fluent-brand-primary);
    background-color: color-mix(in srgb, var(--fluent-brand-primary) 10%, transparent);
}

.meal-type-btn.selected[b-qg6ams1xqt] {
    border-color: var(--fluent-brand-primary);
    background-color: var(--fluent-brand-primary);
    color: white;
}

/* Spinner for loading state */
.spinner-sm[b-qg6ams1xqt] {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin-b-qg6ams1xqt 0.75s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin-b-qg6ams1xqt {
    to {
        transform: rotate(360deg);
    }
}

/* Alert styles */
.alert[b-qg6ams1xqt] {
    padding: 0.75rem 1rem;
    border-radius: var(--fluent-radius-medium, 6px);
    margin-top: 1rem;
}

.alert-error[b-qg6ams1xqt] {
    background-color: color-mix(in srgb, var(--fluent-danger) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--fluent-danger) 30%, transparent);
    color: var(--fluent-danger);
}

/* Conflict dialog */
.conflict-info[b-qg6ams1xqt],
.success-info[b-qg6ams1xqt] {
    text-align: center;
    padding: 1rem 0;
}

.conflict-icon[b-qg6ams1xqt] {
    font-size: 3rem;
    color: var(--fluent-warning);
    margin-bottom: 1rem;
}

.success-icon[b-qg6ams1xqt] {
    font-size: 3rem;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--fluent-status-success);
    color: white;
    margin: 0 auto 1rem;
}

.conflict-info p[b-qg6ams1xqt],
.success-info p[b-qg6ams1xqt] {
    margin: 0.5rem 0;
    color: var(--fluent-text-primary);
}

.conflict-question[b-qg6ams1xqt],
.shopping-question[b-qg6ams1xqt] {
    margin-top: 1.5rem !important;
    font-weight: 500;
}

/* Existing meal display */
.existing-meal[b-qg6ams1xqt] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--fluent-bg-layer-2);
    border-radius: var(--fluent-radius-medium, 6px);
    border: 1px solid var(--fluent-border-subtle);
    margin: 1rem 0;
}

.existing-meal-thumb[b-qg6ams1xqt] {
    width: 60px;
    height: 60px;
    border-radius: var(--fluent-radius-small, 4px);
    object-fit: cover;
}

.existing-meal-placeholder[b-qg6ams1xqt] {
    width: 60px;
    height: 60px;
    border-radius: var(--fluent-radius-small, 4px);
    background-color: var(--fluent-bg-layer-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.existing-meal-info[b-qg6ams1xqt] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.existing-meal-title[b-qg6ams1xqt] {
    font-weight: 600;
    color: var(--fluent-text-primary);
}

.existing-meal-meta[b-qg6ams1xqt] {
    font-size: 0.85rem;
    color: var(--fluent-text-secondary);
    margin-top: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .meal-type-buttons[b-qg6ams1xqt] {
        flex-direction: column;
    }

    .meal-type-btn[b-qg6ams1xqt] {
        min-width: 100%;
    }

    .existing-meal[b-qg6ams1xqt] {
        flex-direction: column;
        text-align: center;
    }

    .existing-meal-info[b-qg6ams1xqt] {
        align-items: center;
    }
}
/* /Components/Shared/ChatPanel.razor.rz.scp.css */
/* Chat Panel Container */
.chat-panel[b-0poljn34cq] {
    position: fixed;
    right: -400px;
    top: 0;
    bottom: 0;
    width: 400px;
    max-width: 100vw;
    background: var(--fluent-bg-layer-1);
    box-shadow: var(--fluent-shadow-16);
    display: flex;
    flex-direction: column;
    z-index: 1001;
    transition: right var(--fluent-duration-slow) var(--fluent-easing-ease-out);
}

.chat-panel.open[b-0poljn34cq] {
    right: 0;
}

/* Backdrop */
.chat-backdrop[b-0poljn34cq] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    animation: fadeIn-b-0poljn34cq var(--fluent-duration-normal) var(--fluent-easing-ease-out);
}

@keyframes fadeIn-b-0poljn34cq {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Header */
.chat-header[b-0poljn34cq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--fluent-brand-primary);
    color: white;
}

.chat-title[b-0poljn34cq] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.chat-title i[b-0poljn34cq] {
    font-size: 1.5rem;
}

.chat-header-actions[b-0poljn34cq] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-action-btn[b-0poljn34cq],
.chat-close[b-0poljn34cq] {
    background: transparent;
    border: none;
    color: white;
    padding: 8px;
    cursor: pointer;
    border-radius: var(--fluent-radius-medium);
    transition: background var(--fluent-duration-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-action-btn:hover[b-0poljn34cq],
.chat-close:hover[b-0poljn34cq] {
    background: rgba(255, 255, 255, 0.15);
}

.chat-action-btn i[b-0poljn34cq],
.chat-close i[b-0poljn34cq] {
    font-size: 1.25rem;
}

/* Messages Area */
.chat-messages[b-0poljn34cq] {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Welcome Screen */
.chat-welcome[b-0poljn34cq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 16px;
    gap: 16px;
}

.cookie-avatar[b-0poljn34cq] {
    width: 80px;
    height: 80px;
    background: var(--fluent-brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.cookie-avatar i[b-0poljn34cq] {
    font-size: 40px;
}

.chat-welcome h3[b-0poljn34cq] {
    margin: 0;
    color: var(--fluent-text-primary);
    font-size: 1.25rem;
}

.chat-welcome p[b-0poljn34cq] {
    margin: 0;
    color: var(--fluent-text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Quick Actions */
.quick-actions[b-0poljn34cq] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 8px;
}

.quick-action-chip[b-0poljn34cq] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--fluent-bg-layer-2);
    border: 1px solid var(--fluent-border-default);
    border-radius: var(--fluent-radius-circular);
    color: var(--fluent-text-primary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--fluent-duration-fast);
}

.quick-action-chip:hover[b-0poljn34cq] {
    background: var(--fluent-brand-primary);
    border-color: var(--fluent-brand-primary);
    color: white;
}

.quick-action-chip i[b-0poljn34cq] {
    font-size: 1rem;
}

/* Messages */
.chat-message[b-0poljn34cq] {
    display: flex;
    gap: 10px;
    animation: slideUp-b-0poljn34cq var(--fluent-duration-normal) var(--fluent-easing-ease-out);
}

@keyframes slideUp-b-0poljn34cq {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.user[b-0poljn34cq] {
    flex-direction: row-reverse;
}

.message-avatar[b-0poljn34cq] {
    width: 32px;
    height: 32px;
    background: var(--fluent-brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.message-avatar i[b-0poljn34cq] {
    font-size: 18px;
}

.message-content[b-0poljn34cq] {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message-text[b-0poljn34cq] {
    padding: 12px 16px;
    border-radius: var(--fluent-radius-large);
    line-height: 1.5;
    font-size: 0.9rem;
}

.chat-message.user .message-text[b-0poljn34cq] {
    background: var(--fluent-brand-primary);
    color: white;
    border-bottom-right-radius: var(--fluent-radius-small);
}

.chat-message.assistant .message-text[b-0poljn34cq] {
    background: var(--fluent-bg-layer-2);
    color: var(--fluent-text-primary);
    border-bottom-left-radius: var(--fluent-radius-small);
}

/* Tool Call Indicator */
.tool-call[b-0poljn34cq] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--fluent-bg-layer-3);
    border-radius: var(--fluent-radius-medium);
    font-size: 0.8rem;
    color: var(--fluent-text-secondary);
}

.tool-call.active i[b-0poljn34cq] {
    color: var(--fluent-brand-primary);
}

.spinning[b-0poljn34cq] {
    animation: spin-b-0poljn34cq 1s linear infinite;
}

@keyframes spin-b-0poljn34cq {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Typing Indicator */
.typing-indicator[b-0poljn34cq] {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
}

.typing-indicator span[b-0poljn34cq] {
    width: 8px;
    height: 8px;
    background: var(--fluent-text-tertiary);
    border-radius: 50%;
    animation: bounce-b-0poljn34cq 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1)[b-0poljn34cq] { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2)[b-0poljn34cq] { animation-delay: -0.16s; }

@keyframes bounce-b-0poljn34cq {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Input Area */
.chat-input-area[b-0poljn34cq] {
    padding: 16px;
    background: var(--fluent-bg-layer-1);
    border-top: 1px solid var(--fluent-border-subtle);
}

.chat-input-wrapper[b-0poljn34cq] {
    display: flex;
    gap: 8px;
}

.chat-input[b-0poljn34cq] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--fluent-border-default);
    border-radius: var(--fluent-radius-circular);
    background: var(--fluent-bg-layer-2);
    color: var(--fluent-text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--fluent-duration-fast);
}

.chat-input:focus[b-0poljn34cq] {
    border-color: var(--fluent-brand-primary);
}

.chat-input[b-0poljn34cq]::placeholder {
    color: var(--fluent-text-tertiary);
}

.chat-send[b-0poljn34cq] {
    width: 44px;
    height: 44px;
    background: var(--fluent-brand-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--fluent-duration-fast);
}

.chat-send:hover:not(:disabled)[b-0poljn34cq] {
    background: var(--fluent-brand-hover);
    transform: scale(1.05);
}

.chat-send:disabled[b-0poljn34cq] {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-send i[b-0poljn34cq] {
    font-size: 1.25rem;
}

/* Loading */
.chat-loading[b-0poljn34cq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    gap: 16px;
    color: var(--fluent-text-secondary);
}

/* Mobile Styles */
@media (max-width: 480px) {
    .chat-panel[b-0poljn34cq] {
        width: 100%;
        right: -100%;
    }

    .chat-panel.open[b-0poljn34cq] {
        right: 0;
    }

    .message-content[b-0poljn34cq] {
        max-width: 85%;
    }
}

/* Dark Mode */
[data-theme="dark"] .chat-panel[b-0poljn34cq] {
    background: var(--fluent-bg-layer-1);
}

[data-theme="dark"] .chat-backdrop[b-0poljn34cq] {
    background: rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .chat-input[b-0poljn34cq] {
    background: var(--fluent-bg-layer-2);
}

/* Discovered Recipes Grid */
.discovered-recipes-grid[b-0poljn34cq] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.discovered-recipe-card[b-0poljn34cq] {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--fluent-bg-layer-2);
    border: 1px solid var(--fluent-border-subtle);
    border-radius: var(--fluent-radius-large);
    cursor: pointer;
    transition: all var(--fluent-duration-fast);
}

.discovered-recipe-card:hover[b-0poljn34cq] {
    border-color: var(--fluent-brand-primary);
    box-shadow: var(--fluent-shadow-4);
}

.discovered-recipe-image[b-0poljn34cq] {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: var(--fluent-radius-medium);
    overflow: hidden;
    background: var(--fluent-bg-layer-3);
}

.discovered-recipe-image img[b-0poljn34cq] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discovered-recipe-image .placeholder-icon[b-0poljn34cq] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fluent-text-tertiary);
}

.discovered-recipe-image .placeholder-icon i[b-0poljn34cq] {
    font-size: 28px;
}

.discovered-recipe-info[b-0poljn34cq] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.discovered-recipe-title[b-0poljn34cq] {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fluent-text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.discovered-recipe-desc[b-0poljn34cq] {
    margin: 0;
    font-size: 0.8rem;
    color: var(--fluent-text-secondary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.discovered-recipe-duplicate-warning[b-0poljn34cq] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--terracotta);
    background: var(--terracotta-light);
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.discovered-recipe-duplicate-warning i[b-0poljn34cq] {
    font-size: 0.85rem;
    flex-shrink: 0;
}

.discovered-recipe-source[b-0poljn34cq] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--fluent-text-tertiary);
    margin-top: auto;
}

.discovered-recipe-source i[b-0poljn34cq] {
    font-size: 0.85rem;
}

.discovered-recipe-actions[b-0poljn34cq] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.btn-chat-action[b-0poljn34cq] {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--fluent-duration-fast);
}

.btn-chat-action i[b-0poljn34cq] {
    font-size: 14px;
}

.btn-chat-action.btn-skip[b-0poljn34cq] {
    background: var(--fluent-bg-layer-3);
    color: var(--fluent-text-secondary);
}

.btn-chat-action.btn-skip:hover[b-0poljn34cq] {
    background: var(--fluent-status-danger);
    color: white;
}

.btn-chat-action.btn-add[b-0poljn34cq] {
    background: var(--fluent-brand-primary);
    color: white;
}

.btn-chat-action.btn-add:hover[b-0poljn34cq] {
    background: var(--fluent-brand-hover);
    transform: scale(1.1);
}

/* Mobile adjustments for discovered recipes */
@media (max-width: 480px) {
    .discovered-recipe-card[b-0poljn34cq] {
        padding: 10px;
    }

    .discovered-recipe-image[b-0poljn34cq] {
        width: 60px;
        height: 60px;
    }

    .discovered-recipe-title[b-0poljn34cq] {
        font-size: 0.85rem;
    }

    .discovered-recipe-desc[b-0poljn34cq] {
        display: none;
    }
}
/* /Components/Shared/HouseholdSelector.razor.rz.scp.css */
/* Container matches nav-rail-items padding */
.household-selector-container[b-u2l61i1gux] {
    position: relative;
    padding: 0 12px;
    margin-bottom: 8px;
}

/* Button inherits nav-rail-item styles, just override what's needed */
.household-selector-btn[b-u2l61i1gux] {
    border: none !important;
    background: none !important;
}

.household-selector-btn:hover[b-u2l61i1gux] {
    background-color: var(--fluent-bg-subtle-hover, rgba(255, 255, 255, 0.08)) !important;
}

/* Dropdown positioning */
.household-dropdown[b-u2l61i1gux] {
    position: absolute;
    top: calc(100% + 4px);
    left: 12px;
    right: 12px;
    background: var(--fluent-bg-layer-2, #2a2a2a);
    border: 1px solid var(--fluent-border-subtle, rgba(255, 255, 255, 0.1));
    border-radius: var(--fluent-radius-medium, 8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 1001;
    overflow: hidden;
    min-width: 200px;
}

.household-dropdown-header[b-u2l61i1gux] {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fluent-text-secondary, #888);
    border-bottom: 1px solid var(--fluent-border-subtle, rgba(255, 255, 255, 0.1));
}

.household-dropdown-item[b-u2l61i1gux] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--fluent-text-primary, #fff);
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.15s;
    text-align: left;
}

.household-dropdown-item:hover[b-u2l61i1gux],
.household-dropdown-item:focus[b-u2l61i1gux] {
    background: var(--fluent-bg-subtle-hover, rgba(255, 255, 255, 0.08));
    outline: none;
}

.household-dropdown-item.active[b-u2l61i1gux] {
    background: var(--fluent-brand-selected, rgba(122, 155, 109, 0.2));
}

.household-dropdown-item i:first-child[b-u2l61i1gux] {
    font-size: 1rem;
    opacity: 0.7;
}

.household-dropdown-item span[b-u2l61i1gux] {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.household-check[b-u2l61i1gux] {
    color: var(--fluent-brand-primary, #7A9B6D);
    font-size: 1rem;
}

.household-dropdown-footer[b-u2l61i1gux] {
    border-top: 1px solid var(--fluent-border-subtle, rgba(255, 255, 255, 0.1));
}

.household-dropdown-link[b-u2l61i1gux] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    color: var(--fluent-text-secondary, #888);
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.household-dropdown-link:hover[b-u2l61i1gux],
.household-dropdown-link:focus[b-u2l61i1gux] {
    background: var(--fluent-bg-subtle-hover, rgba(255, 255, 255, 0.08));
    color: var(--fluent-text-primary, #fff);
    outline: none;
}

.household-dropdown-backdrop[b-u2l61i1gux] {
    position: fixed;
    inset: 0;
    z-index: 1000;
}

/* Warning state - needs selection */
.household-selector-container.needs-selection .household-selector-btn[b-u2l61i1gux] {
    background: var(--terracotta-light, rgba(196, 120, 92, 0.15)) !important;
    border: 2px solid var(--terracotta, #C4785C) !important;
    animation: pulse-warning-b-u2l61i1gux 2s infinite;
}

.household-selector-btn.warning i[b-u2l61i1gux] {
    color: var(--terracotta, #C4785C);
}

.household-dropdown.prompt[b-u2l61i1gux] {
    border-color: var(--terracotta, #C4785C);
}

.household-dropdown-warning[b-u2l61i1gux] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--terracotta-light, rgba(196, 120, 92, 0.15));
    color: var(--terracotta, #C4785C);
    font-size: 0.875rem;
    font-weight: 500;
}

.household-dropdown-warning i[b-u2l61i1gux] {
    font-size: 1.25rem;
}

@keyframes pulse-warning-b-u2l61i1gux {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(196, 120, 92, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(196, 120, 92, 0);
    }
}

/* Mobile - hide in nav rail, show in bottom nav area */
@media (max-width: 768px) {
    .household-selector-container[b-u2l61i1gux] {
        display: none;
    }
}
/* /Components/Shared/RecipeView.razor.rz.scp.css */
/* Section Header Actions */
.section-header-actions[b-zqted45q6u] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-sm[b-zqted45q6u] {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
}

/* Mobile responsive - stack section header vertically */
@media (max-width: 600px) {
    .section-header[b-zqted45q6u] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .section-header-actions[b-zqted45q6u] {
        width: 100%;
        justify-content: flex-start;
    }

    .section-header-actions .btn[b-zqted45q6u] {
        flex: 1;
        min-width: 0;
        justify-content: center;
    }
}

/* Pantry Badge */
.pantry-badge[b-zqted45q6u] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    color: var(--fluent-success);
    vertical-align: middle;
}

.ingredient-item.in-pantry .ingredient-text[b-zqted45q6u] {
    color: var(--fluent-text-secondary);
}

/* Shopping List Modal */
.modal-backdrop[b-zqted45q6u] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content[b-zqted45q6u] {
    background: var(--fluent-bg-layer-1);
    border: 1px solid var(--fluent-border-default);
    border-radius: 12px;
    width: 100%;
    max-width: 550px;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.shopping-modal .modal-header[b-zqted45q6u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--fluent-border-subtle);
}

.shopping-modal .modal-header h2[b-zqted45q6u] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--fluent-text-primary);
}

.shopping-modal .modal-body[b-zqted45q6u] {
    padding: 1.25rem;
    overflow-y: auto;
    flex: 1;
}

.shopping-modal .modal-footer[b-zqted45q6u] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--fluent-border-subtle);
}

.form-group[b-zqted45q6u] {
    margin-bottom: 1rem;
}

.form-group label[b-zqted45q6u] {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--fluent-text-secondary);
    margin-bottom: 0.5rem;
}

/* Ingredient Selection */
.ingredient-selection[b-zqted45q6u] {
    border: 1px solid var(--fluent-border-default);
    border-radius: 8px;
    overflow: hidden;
}

.selection-actions[b-zqted45q6u] {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--fluent-bg-subtle);
    border-bottom: 1px solid var(--fluent-border-subtle);
}

.btn-link[b-zqted45q6u] {
    background: none;
    border: none;
    color: var(--fluent-brand-primary);
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    cursor: pointer;
}

.btn-link:hover[b-zqted45q6u] {
    text-decoration: underline;
}

.ingredient-checkboxes[b-zqted45q6u] {
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem;
}

.ingredient-select-item[b-zqted45q6u] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    color: var(--fluent-text-primary);
    font-size: 0.9rem;
}

.ingredient-select-item:hover[b-zqted45q6u] {
    background: var(--fluent-bg-subtle-hover);
}

.ingredient-select-item.in-pantry[b-zqted45q6u] {
    color: var(--fluent-text-tertiary);
}

.ingredient-select-item input[type="checkbox"][b-zqted45q6u] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

.pantry-indicator[b-zqted45q6u] {
    font-size: 0.75rem;
    color: var(--fluent-success);
    margin-left: auto;
}

.selection-count[b-zqted45q6u] {
    font-size: 0.85rem;
    color: var(--fluent-text-secondary);
    margin-right: auto;
}

/* Button Icon */
.btn-icon[b-zqted45q6u] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--fluent-border-default);
    border-radius: 6px;
    color: var(--fluent-text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-icon:hover[b-zqted45q6u] {
    background: var(--fluent-bg-subtle-hover);
    color: var(--fluent-text-primary);
}

/* Ingredient Actions */
.ingredient-actions[b-zqted45q6u] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-icon-sm[b-zqted45q6u] {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--fluent-border-default);
    border-radius: 4px;
    color: var(--fluent-text-tertiary);
    cursor: pointer;
    transition: all 0.15s ease;
    padding: 0;
}

.btn-icon-sm:hover[b-zqted45q6u] {
    background: var(--fluent-brand-selected);
    border-color: var(--fluent-brand-primary);
    color: var(--fluent-brand-primary);
}

.btn-icon-sm:active[b-zqted45q6u] {
    transform: scale(0.95);
}

/* Ingredient item with actions layout */
.ingredient-item[b-zqted45q6u] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ingredient-item .checkbox-label[b-zqted45q6u] {
    flex: 1;
    min-width: 0;
}

/* Step Ingredients Display */
.step-ingredients[b-zqted45q6u] {
    margin-top: 8px;
    margin-left: 28px; /* Align with step text (past checkbox) */
    padding: 10px 14px;
    background: var(--cream-dark);
    border-radius: var(--radius-sm);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

[data-theme="dark"] .step-ingredients[b-zqted45q6u] {
    background: var(--cream-dark);
}

.step-ingredients-label[b-zqted45q6u] {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.step-ingredients-label i[b-zqted45q6u] {
    font-size: 14px;
    color: var(--sage);
}

.step-ingredient-chip[b-zqted45q6u] {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: 12px;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

[data-theme="dark"] .step-ingredient-chip[b-zqted45q6u] {
    background: var(--white);
    border-color: var(--border);
}

.step-ingredient-chip .ing-qty[b-zqted45q6u] {
    font-weight: 600;
    color: var(--sage-dark);
}

.step-ingredient-chip .ing-unit[b-zqted45q6u] {
    color: var(--text-muted);
}

.step-ingredient-chip .ing-name[b-zqted45q6u] {
    color: var(--text-dark);
}

/* Step item layout adjustment for step ingredients */
.step-item[b-zqted45q6u] {
    display: flex;
    flex-direction: column;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .step-ingredients[b-zqted45q6u] {
        margin-left: 0;
        padding: 8px 10px;
    }

    .step-ingredient-chip[b-zqted45q6u] {
        font-size: 11px;
        padding: 3px 8px;
    }
}
/* /Components/Shared/UserNavItem.razor.rz.scp.css */
.user-nav-item[b-69wy3yr085] {
    position: relative;
    margin-top: 8px;
}

.user-avatar[b-69wy3yr085] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fluent-brand-primary, #7A9B6D) 0%, var(--fluent-brand-pressed, #5C7D50) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-img[b-69wy3yr085] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-initials[b-69wy3yr085] {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.user-dropdown-backdrop[b-69wy3yr085] {
    position: fixed;
    inset: 0;
    z-index: 999;
}

.user-dropdown[b-69wy3yr085] {
    position: absolute;
    left: calc(100% + 12px);
    bottom: 0;
    width: 280px;
    background: var(--fluent-bg-layer-1, #fff);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--fluent-border-subtle, rgba(0, 0, 0, 0.1));
    z-index: 1000;
    overflow: hidden;
}

.user-dropdown-header[b-69wy3yr085] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--fluent-bg-subtle, #f5f5f5);
    border-bottom: 1px solid var(--fluent-border-subtle, rgba(0, 0, 0, 0.1));
}

.user-avatar-large[b-69wy3yr085] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fluent-brand-primary, #7A9B6D) 0%, var(--fluent-brand-pressed, #5C7D50) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.user-avatar-large img[b-69wy3yr085] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-initials-large[b-69wy3yr085] {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.user-info[b-69wy3yr085] {
    flex: 1;
    min-width: 0;
}

.user-name[b-69wy3yr085] {
    font-weight: 600;
    color: var(--fluent-text-primary, #1a1a1a);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email[b-69wy3yr085] {
    font-size: 0.8125rem;
    color: var(--fluent-text-secondary, #666);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-items[b-69wy3yr085] {
    padding: 8px 0;
}

.user-dropdown-item[b-69wy3yr085] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: var(--fluent-text-primary, #1a1a1a);
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.user-dropdown-item:hover[b-69wy3yr085] {
    background: var(--fluent-bg-subtle-hover, #f0f0f0);
    color: var(--fluent-text-primary, #1a1a1a);
}

.user-dropdown-item i[b-69wy3yr085] {
    font-size: 1.125rem;
    width: 20px;
    text-align: center;
    color: var(--fluent-text-secondary, #666);
}

.user-dropdown-footer[b-69wy3yr085] {
    border-top: 1px solid var(--fluent-border-subtle, rgba(0, 0, 0, 0.1));
    padding: 8px 0;
}

.user-dropdown-item.logout[b-69wy3yr085] {
    color: var(--fluent-status-danger, #d13438);
}

.user-dropdown-item.logout i[b-69wy3yr085] {
    color: var(--fluent-status-danger, #d13438);
}

.user-dropdown-item.logout:hover[b-69wy3yr085] {
    background: rgba(209, 52, 56, 0.1);
}

/* Mobile positioning */
@media (max-width: 768px) {
    .user-dropdown[b-69wy3yr085] {
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 80px;
        width: auto;
    }
}
