/* /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: #ffffff;
    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: rgba(96, 165, 250, 0.15);
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.components-reconnect-icon svg[b-r0x5v25kgm] {
    color: #60a5fa;
}

/* Spinning animation for reconnecting icon */
#components-reconnect-modal.components-reconnect-show .components-reconnect-icon svg[b-r0x5v25kgm],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-icon svg[b-r0x5v25kgm] {
    animation: spin-b-r0x5v25kgm 1.5s linear infinite;
}

@keyframes spin-b-r0x5v25kgm {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Error state icon color */
#components-reconnect-modal.components-reconnect-failed .components-reconnect-icon[b-r0x5v25kgm],
#components-reconnect-modal.components-reconnect-resume-failed .components-reconnect-icon[b-r0x5v25kgm] {
    background: rgba(239, 68, 68, 0.15);
}

#components-reconnect-modal.components-reconnect-failed .components-reconnect-icon svg[b-r0x5v25kgm],
#components-reconnect-modal.components-reconnect-resume-failed .components-reconnect-icon svg[b-r0x5v25kgm] {
    color: #ef4444;
}

/* Pause state icon color */
#components-reconnect-modal.components-reconnect-paused .components-reconnect-icon[b-r0x5v25kgm] {
    background: rgba(234, 179, 8, 0.15);
}

#components-reconnect-modal.components-reconnect-paused .components-reconnect-icon svg[b-r0x5v25kgm] {
    color: #eab308;
}

/* Typography */
#components-reconnect-modal h2[b-r0x5v25kgm] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

#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: #60a5fa;
}

/* 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, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

#components-reconnect-modal .btn-primary:hover[b-r0x5v25kgm] {
    background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 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: #ef4444;
    animation: pulse-b-r0x5v25kgm 2s infinite;
}

.components-connectivity-indicator.connected .components-connectivity-dot[b-r0x5v25kgm] {
    background: #22c55e;
    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: #22c55e;
}

/* 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 svg[b-r0x5v25kgm] {
        width: 48px;
        height: 48px;
    }
}
/* /Components/Pages/Account/Login.razor.rz.scp.css */
.provider-btn[b-n3lkn2yxtg] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.15s ease;
}

.provider-btn:hover[b-n3lkn2yxtg] {
    background: var(--fluent-bg-subtle, #f5f5f5);
}

.provider-icon[b-n3lkn2yxtg] {
    flex-shrink: 0;
}

.google-btn:hover[b-n3lkn2yxtg] {
    border-color: #4285F4;
    color: #4285F4;
}

.microsoft-btn:hover[b-n3lkn2yxtg] {
    border-color: #00A4EF;
    color: #00A4EF;
}

.saml-btn:hover[b-n3lkn2yxtg] {
    border-color: var(--fluent-brand-primary, #00b294);
    color: var(--fluent-brand-primary, #00b294);
}
/* /Components/Pages/Admin/IdentityProviders.razor.rz.scp.css */
.header-description[b-dz61y0eze6] {
    color: var(--fluent-text-secondary, #666);
    margin-top: 0.5rem;
}

.settings-divider[b-dz61y0eze6] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    color: var(--fluent-text-secondary, #666);
}

.settings-divider[b-dz61y0eze6]::before,
.settings-divider[b-dz61y0eze6]::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--fluent-border-subtle, rgba(0, 0, 0, 0.1));
}

.saml-setup-intro[b-dz61y0eze6] {
    padding: 1.5rem;
    background: var(--fluent-bg-subtle, #f5f5f5);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.saml-setup-intro h3[b-dz61y0eze6] {
    margin: 0 0 0.5rem 0;
    color: var(--fluent-text-primary, #1a1a1a);
}

.saml-requirements[b-dz61y0eze6] {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--fluent-bg-layer-1, #fff);
    border-radius: 8px;
    border: 1px solid var(--fluent-border-subtle, rgba(0, 0, 0, 0.1));
}

.saml-requirements h4[b-dz61y0eze6] {
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
    color: var(--fluent-text-secondary, #666);
}

.saml-requirements ul[b-dz61y0eze6] {
    margin: 0;
    padding-left: 1.25rem;
}

.saml-requirements li[b-dz61y0eze6] {
    margin-bottom: 0.25rem;
    color: var(--fluent-text-primary, #1a1a1a);
}

.saml-setup-progress[b-dz61y0eze6] {
    padding: 2rem;
    background: var(--fluent-bg-subtle, #f5f5f5);
    border-radius: 12px;
    text-align: center;
}

.saml-setup-progress h3[b-dz61y0eze6] {
    margin: 0 0 0.5rem 0;
}

.saml-consent-actions[b-dz61y0eze6] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.redirect-uri[b-dz61y0eze6] {
    display: block;
    padding: 0.75rem 1rem;
    background: var(--fluent-bg-subtle, #f5f5f5);
    border-radius: 8px;
    font-size: 0.875rem;
    word-break: break-all;
    user-select: all;
}

.saml-sp-info[b-dz61y0eze6] {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--fluent-bg-subtle, #f5f5f5);
    border-radius: 8px;
}

.saml-sp-info h4[b-dz61y0eze6] {
    margin: 0 0 1rem 0;
    font-size: 0.875rem;
    color: var(--fluent-text-secondary, #666);
}

.sp-config-item[b-dz61y0eze6] {
    margin-bottom: 0.75rem;
}

.sp-config-item label[b-dz61y0eze6] {
    display: block;
    font-size: 0.75rem;
    color: var(--fluent-text-secondary, #666);
    margin-bottom: 0.25rem;
}

.sp-config-item code[b-dz61y0eze6] {
    display: block;
    padding: 0.5rem 0.75rem;
    background: var(--fluent-bg-layer-1, #fff);
    border-radius: 6px;
    font-size: 0.8125rem;
    word-break: break-all;
    user-select: all;
}

.manual-saml-config[b-dz61y0eze6] {
    margin-top: 1rem;
}

.api-key-display[b-dz61y0eze6] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--fluent-bg-subtle, #f5f5f5);
    border-radius: 8px;
}

.api-key-display code[b-dz61y0eze6] {
    flex: 1;
    font-size: 0.875rem;
}

.btn svg[b-dz61y0eze6] {
    vertical-align: middle;
}

textarea.form-control[b-dz61y0eze6] {
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
    font-size: 0.8125rem;
    resize: vertical;
}
/* /Components/Pages/Admin/Users.razor.rz.scp.css */
.user-cell[b-4d1yv00130] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-sm[b-4d1yv00130] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fluent-brand-primary, #00b294) 0%, #008577 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.user-avatar-sm img[b-4d1yv00130] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge.bg-warning[b-4d1yv00130] {
    background-color: #ffc107 !important;
}

/* Custom Modal Styles */
.modal-backdrop-custom[b-4d1yv00130] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

.modal-container[b-4d1yv00130] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 1rem;
    overflow-y: auto;
}

.modal-dialog-custom[b-4d1yv00130] {
    background: var(--surface-color, #fff);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-dialog-custom.modal-lg[b-4d1yv00130] {
    max-width: 800px;
}

.modal-dialog-custom .modal-header[b-4d1yv00130] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color, #e0e0e0);
    flex-shrink: 0;
}

.modal-dialog-custom .modal-title[b-4d1yv00130] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-dialog-custom .modal-body[b-4d1yv00130] {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-dialog-custom .modal-footer[b-4d1yv00130] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color, #e0e0e0);
    flex-shrink: 0;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .modal-dialog-custom[b-4d1yv00130] {
        background: var(--surface-color, #1e1e1e);
        color: var(--text-color, #e0e0e0);
    }

    .modal-dialog-custom .modal-header[b-4d1yv00130],
    .modal-dialog-custom .modal-footer[b-4d1yv00130] {
        border-color: var(--border-color, #404040);
    }
}
/* /Components/Pages/Pantry/Index.razor.rz.scp.css */
/* Pantry Page Styles */
.pantry-page[b-9x1r9r3kno] {
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pantry-header[b-9x1r9r3kno] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.header-content h1[b-9x1r9r3kno] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
}

.header-subtitle[b-9x1r9r3kno] {
    margin: 0.25rem 0 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.header-actions[b-9x1r9r3kno] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Filters */
.pantry-filters[b-9x1r9r3kno] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-box[b-9x1r9r3kno] {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 400px;
}

.search-box svg[b-9x1r9r3kno] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
}

.search-box input[b-9x1r9r3kno] {
    padding-left: 40px;
}

.category-filter select[b-9x1r9r3kno] {
    min-width: 160px;
}

.low-stock-filter[b-9x1r9r3kno] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.low-stock-filter:hover[b-9x1r9r3kno] {
    background: rgba(255, 255, 255, 0.08);
}

.low-stock-filter input[b-9x1r9r3kno] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Items Grid */
.pantry-items[b-9x1r9r3kno] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.item-category[b-9x1r9r3kno] {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

.category-header[b-9x1r9r3kno] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-count[b-9x1r9r3kno] {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    text-transform: none;
}

.category-items[b-9x1r9r3kno] {
    padding: 0.5rem;
}

.pantry-item[b-9x1r9r3kno] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.15s ease;
}

.pantry-item:hover[b-9x1r9r3kno] {
    background: rgba(255, 255, 255, 0.05);
}

.pantry-item.low-stock[b-9x1r9r3kno] {
    border-left: 3px solid #f59e0b;
    padding-left: calc(0.75rem - 3px);
}

.pantry-item.expired[b-9x1r9r3kno] {
    border-left: 3px solid #ef4444;
    padding-left: calc(0.75rem - 3px);
}

.pantry-item.expiring-soon[b-9x1r9r3kno] {
    border-left: 3px solid #eab308;
    padding-left: calc(0.75rem - 3px);
}

.item-main[b-9x1r9r3kno] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.item-name[b-9x1r9r3kno] {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.item-quantity[b-9x1r9r3kno] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.item-meta[b-9x1r9r3kno] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.item-expiry[b-9x1r9r3kno] {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.item-expiry.expired[b-9x1r9r3kno] {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.item-expiry.soon[b-9x1r9r3kno] {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.low-stock-badge[b-9x1r9r3kno] {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    font-weight: 600;
    text-transform: uppercase;
}

.item-actions[b-9x1r9r3kno] {
    display: flex;
    gap: 0.25rem;
}

/* Button Icons */
.btn-icon[b-9x1r9r3kno] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-icon:hover[b-9x1r9r3kno] {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.btn-icon.active[b-9x1r9r3kno] {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.btn-icon-danger:hover[b-9x1r9r3kno] {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Modal */
.modal-backdrop[b-9x1r9r3kno] {
    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-9x1r9r3kno] {
    background: linear-gradient(180deg, rgba(35, 35, 35, 0.98) 0%, rgba(28, 28, 28, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header[b-9x1r9r3kno] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2[b-9x1r9r3kno] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.modal-body[b-9x1r9r3kno] {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-footer[b-9x1r9r3kno] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group[b-9x1r9r3kno] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-9x1r9r3kno] {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.form-row[b-9x1r9r3kno] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-label[b-9x1r9r3kno] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-label input[b-9x1r9r3kno] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Warning button */
.btn-warning[b-9x1r9r3kno] {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.btn-warning:hover[b-9x1r9r3kno] {
    background: rgba(245, 158, 11, 0.25);
}

/* Empty/Loading States */
.tv-empty-state[b-9x1r9r3kno] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.tv-empty-icon[b-9x1r9r3kno] {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.tv-empty-state h2[b-9x1r9r3kno] {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.tv-empty-state p[b-9x1r9r3kno] {
    margin: 0 0 1.5rem 0;
    color: rgba(255, 255, 255, 0.6);
}

.tv-loading[b-9x1r9r3kno] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.tv-loading-spinner[b-9x1r9r3kno] {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-b-9x1r9r3kno 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-9x1r9r3kno {
    to { transform: rotate(360deg); }
}

.tv-loading p[b-9x1r9r3kno] {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .pantry-page[b-9x1r9r3kno] {
        padding: 1rem;
    }

    .pantry-header[b-9x1r9r3kno] {
        flex-direction: column;
        align-items: stretch;
    }

    .header-actions[b-9x1r9r3kno] {
        justify-content: flex-start;
    }

    .pantry-filters[b-9x1r9r3kno] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box[b-9x1r9r3kno] {
        max-width: none;
    }

    .form-row[b-9x1r9r3kno] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/ShoppingList/Index.razor.rz.scp.css */
/* Shopping List Page Layout with Sidebar */
.shoppinglist-page-layout[b-ru03xhgr9s] {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    height: 100vh;
    min-height: 100vh;
    background: var(--surface-color, #1a1a1a);
}

/* Sidebar Styles */
.shoppinglist-sidebar[b-ru03xhgr9s] {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.98) 0%, rgba(25, 25, 25, 0.98) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.sidebar-header[b-ru03xhgr9s] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h2[b-ru03xhgr9s] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.sidebar-header .btn-sm[b-ru03xhgr9s] {
    padding: 0.4rem 0.6rem;
    min-width: auto;
}

.sidebar-lists[b-ru03xhgr9s] {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.sidebar-list-item[b-ru03xhgr9s] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
}

.sidebar-list-item:hover[b-ru03xhgr9s] {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-list-item.active[b-ru03xhgr9s] {
    background: rgba(59, 130, 246, 0.15);
    border-left-color: #3b82f6;
}

.sidebar-list-item:focus[b-ru03xhgr9s] {
    outline: none;
    background: rgba(59, 130, 246, 0.1);
}

.list-item-info[b-ru03xhgr9s] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow: hidden;
}

.list-item-name[b-ru03xhgr9s] {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-item-meta[b-ru03xhgr9s] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.active-badge[b-ru03xhgr9s] {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.list-item-date[b-ru03xhgr9s] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

.sidebar-empty[b-ru03xhgr9s] {
    padding: 2rem 1rem;
    text-align: center;
}

.sidebar-empty p[b-ru03xhgr9s] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

/* Main Content Area */
.shoppinglist-main[b-ru03xhgr9s] {
    padding: 1.5rem 2rem;
    overflow-y: auto;
    height: 100%;
}

.shoppinglist-content[b-ru03xhgr9s] {
    max-width: 900px;
    margin: 0 auto;
}

.shoppinglist-header[b-ru03xhgr9s] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.shoppinglist-title-section h1[b-ru03xhgr9s] {
    margin: 0 0 0.25rem 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
}

.shoppinglist-plan-link[b-ru03xhgr9s] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.shoppinglist-plan-link a[b-ru03xhgr9s] {
    color: #60a5fa;
    text-decoration: none;
}

.shoppinglist-plan-link a:hover[b-ru03xhgr9s] {
    text-decoration: underline;
}

.shoppinglist-actions[b-ru03xhgr9s] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.sort-dropdown[b-ru03xhgr9s] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-dropdown label[b-ru03xhgr9s] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.sort-dropdown select[b-ru03xhgr9s] {
    min-width: 120px;
}

/* Progress Bar */
.shoppinglist-progress[b-ru03xhgr9s] {
    margin-bottom: 1.5rem;
}

.progress-bar[b-ru03xhgr9s] {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill[b-ru03xhgr9s] {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text[b-ru03xhgr9s] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Add Item Form */
.add-item-form[b-ru03xhgr9s] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.add-item-form input[type="text"]:first-child[b-ru03xhgr9s] {
    flex: 1;
    min-width: 200px;
}

.add-item-form .quantity-input[b-ru03xhgr9s] {
    width: 80px;
}

.add-item-form .category-select[b-ru03xhgr9s] {
    width: 140px;
}

/* Shopping Items */
.shoppinglist-items[b-ru03xhgr9s] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.item-category[b-ru03xhgr9s] {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

.category-header[b-ru03xhgr9s] {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-items[b-ru03xhgr9s] {
    padding: 0.5rem;
}

.shopping-item[b-ru03xhgr9s] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.15s ease;
}

.shopping-item:hover[b-ru03xhgr9s] {
    background: rgba(255, 255, 255, 0.05);
}

.shopping-item.purchased[b-ru03xhgr9s],
.shopping-item.in-pantry[b-ru03xhgr9s] {
    opacity: 0.5;
}

.shopping-item.purchased .item-name[b-ru03xhgr9s],
.shopping-item.in-pantry .item-name[b-ru03xhgr9s] {
    text-decoration: line-through;
}

.item-checkbox-wrapper[b-ru03xhgr9s] {
    flex-shrink: 0;
}

.item-checkbox[b-ru03xhgr9s] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.item-details[b-ru03xhgr9s] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.item-name[b-ru03xhgr9s] {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.item-quantity-unit[b-ru03xhgr9s] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.item-container-size[b-ru03xhgr9s] {
    font-size: 0.8rem;
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.item-meta[b-ru03xhgr9s] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    margin-right: 0.5rem;
}

.item-price[b-ru03xhgr9s] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #22c55e;
}

.item-store[b-ru03xhgr9s] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.item-actions[b-ru03xhgr9s] {
    display: flex;
    gap: 0.25rem;
}

.btn-icon[b-ru03xhgr9s] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-icon:hover[b-ru03xhgr9s] {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.btn-icon.active[b-ru03xhgr9s] {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.btn-icon-danger:hover[b-ru03xhgr9s] {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Empty States */
.shoppinglist-empty[b-ru03xhgr9s] {
    text-align: center;
    padding: 3rem 1rem;
}

.shoppinglist-empty p[b-ru03xhgr9s] {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.tv-empty-state[b-ru03xhgr9s] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.tv-empty-icon[b-ru03xhgr9s] {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.tv-empty-state h2[b-ru03xhgr9s] {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.tv-empty-state p[b-ru03xhgr9s] {
    margin: 0 0 1.5rem 0;
    color: rgba(255, 255, 255, 0.6);
}

.empty-state-actions[b-ru03xhgr9s] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Loading State */
.tv-loading[b-ru03xhgr9s] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.tv-loading-spinner[b-ru03xhgr9s] {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-b-ru03xhgr9s 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-ru03xhgr9s {
    to { transform: rotate(360deg); }
}

.tv-loading p[b-ru03xhgr9s] {
    color: rgba(255, 255, 255, 0.6);
}

/* Delete Button */
.btn-danger[b-ru03xhgr9s] {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 0.5rem 0.75rem;
}

.btn-danger:hover[b-ru03xhgr9s] {
    background: rgba(239, 68, 68, 0.25);
}

/* Responsive Design */
@media (max-width: 900px) {
    .shoppinglist-page-layout[b-ru03xhgr9s] {
        grid-template-columns: 1fr;
    }

    .shoppinglist-sidebar[b-ru03xhgr9s] {
        display: none;
    }

    .shoppinglist-main[b-ru03xhgr9s] {
        height: auto;
        min-height: 100vh;
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .shoppinglist-header[b-ru03xhgr9s] {
        flex-direction: column;
        align-items: stretch;
    }

    .shoppinglist-actions[b-ru03xhgr9s] {
        justify-content: flex-start;
    }

    .add-item-form[b-ru03xhgr9s] {
        flex-wrap: wrap;
    }

    .add-item-form input[type="text"]:first-child[b-ru03xhgr9s] {
        width: 100%;
    }

    .add-item-form .quantity-input[b-ru03xhgr9s],
    .add-item-form .category-select[b-ru03xhgr9s] {
        flex: 1;
    }

    .shopping-item[b-ru03xhgr9s] {
        flex-wrap: wrap;
    }

    .item-meta[b-ru03xhgr9s] {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 2rem;
        margin-top: 0.25rem;
    }
}

/* Store Discovery Modal */
.store-modal .modal-content[b-ru03xhgr9s] {
    max-width: 600px;
}

.store-loading[b-ru03xhgr9s], .store-error[b-ru03xhgr9s], .store-empty[b-ru03xhgr9s] {
    text-align: center;
    padding: 2rem;
}

.store-error[b-ru03xhgr9s] {
    color: #ef4444;
}

.store-error p[b-ru03xhgr9s] {
    margin-bottom: 1rem;
}

.store-list[b-ru03xhgr9s] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.store-item[b-ru03xhgr9s] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    gap: 1rem;
}

.store-info h3[b-ru03xhgr9s] {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.store-address[b-ru03xhgr9s] {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.store-meta[b-ru03xhgr9s] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.store-type[b-ru03xhgr9s] {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-radius: 4px;
}

.store-flyers-badge[b-ru03xhgr9s] {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border-radius: 4px;
}

.store-actions[b-ru03xhgr9s] {
    flex-shrink: 0;
}

/* Pantry Modal */
.pantry-modal .modal-content[b-ru03xhgr9s] {
    max-width: 550px;
}

.pantry-loading[b-ru03xhgr9s], .pantry-empty[b-ru03xhgr9s] {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.pantry-list[b-ru03xhgr9s] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.pantry-item[b-ru03xhgr9s] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.pantry-item-info[b-ru03xhgr9s] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pantry-item-name[b-ru03xhgr9s] {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.pantry-item-quantity[b-ru03xhgr9s] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.pantry-item-meta[b-ru03xhgr9s] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pantry-item-category[b-ru03xhgr9s] {
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-radius: 4px;
}

.pantry-item-expiry[b-ru03xhgr9s] {
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
}

.pantry-item-expiry.expiring-soon[b-ru03xhgr9s] {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.pantry-summary[b-ru03xhgr9s] {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Modal Styles */
.modal-backdrop[b-ru03xhgr9s] {
    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-ru03xhgr9s] {
    background: linear-gradient(180deg, rgba(35, 35, 35, 0.98) 0%, rgba(28, 28, 28, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header[b-ru03xhgr9s] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2[b-ru03xhgr9s] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.modal-body[b-ru03xhgr9s] {
    padding: 1.25rem;
    overflow-y: auto;
    flex: 1;
}

/* Price Status */
.price-status[b-ru03xhgr9s] {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    text-align: center;
}

.price-status p[b-ru03xhgr9s] {
    margin: 0;
    color: #60a5fa;
    font-size: 0.9rem;
}

.price-status.success[b-ru03xhgr9s] {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
}

.price-status.success p[b-ru03xhgr9s] {
    color: #22c55e;
}
/* /Components/Shared/PrintPreviewModal.razor.rz.scp.css */
.modal-overlay[b-onzhxebxsm] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.print-preview-dialog[b-onzhxebxsm] {
    background: var(--bg-primary, #ffffff);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header[b-onzhxebxsm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color, #e0e0e0);
}

.modal-header h3[b-onzhxebxsm] {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-primary, #333);
}

.close-btn[b-onzhxebxsm] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary, #666);
    padding: 0.25rem 0.5rem;
    line-height: 1;
}

.close-btn:hover[b-onzhxebxsm] {
    color: var(--text-primary, #333);
}

.modal-body[b-onzhxebxsm] {
    flex: 1;
    overflow: hidden;
    padding: 1rem 1.5rem;
    min-height: 400px;
}

.loading-container[b-onzhxebxsm] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
}

.loading-spinner[b-onzhxebxsm] {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color, #e0e0e0);
    border-top-color: var(--accent-color, #007bff);
    border-radius: 50%;
    animation: spin-b-onzhxebxsm 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-onzhxebxsm {
    to {
        transform: rotate(360deg);
    }
}

.pdf-preview-frame[b-onzhxebxsm] {
    width: 100%;
    height: 500px;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 4px;
}

.modal-footer[b-onzhxebxsm] {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color, #e0e0e0);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.print-options[b-onzhxebxsm] {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-group-inline[b-onzhxebxsm] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group-inline label[b-onzhxebxsm] {
    font-weight: 500;
    white-space: nowrap;
}

.form-group-inline .form-control[b-onzhxebxsm] {
    min-width: 150px;
}

.copies-input[b-onzhxebxsm] {
    width: 70px !important;
    min-width: 70px !important;
}

.btn-group[b-onzhxebxsm] {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.alert[b-onzhxebxsm] {
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.alert-success[b-onzhxebxsm] {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.alert-error[b-onzhxebxsm] {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}
/* /Components/Shared/RecipeView.razor.rz.scp.css */
/* Section Header Actions */
.section-header-actions[b-zqted45q6u] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-sm[b-zqted45q6u] {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
}

/* Pantry Badge */
.pantry-badge[b-zqted45q6u] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    color: #22c55e;
    vertical-align: middle;
}

.ingredient-item.in-pantry .ingredient-text[b-zqted45q6u] {
    color: rgba(255, 255, 255, 0.6);
}

/* 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: linear-gradient(180deg, rgba(35, 35, 35, 0.98) 0%, rgba(28, 28, 28, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    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 rgba(255, 255, 255, 0.1);
}

.shopping-modal .modal-header h2[b-zqted45q6u] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.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 rgba(255, 255, 255, 0.1);
}

.form-group[b-zqted45q6u] {
    margin-bottom: 1rem;
}

.form-group label[b-zqted45q6u] {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

/* Ingredient Selection */
.ingredient-selection[b-zqted45q6u] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.selection-actions[b-zqted45q6u] {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-link[b-zqted45q6u] {
    background: none;
    border: none;
    color: #60a5fa;
    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: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.ingredient-select-item:hover[b-zqted45q6u] {
    background: rgba(255, 255, 255, 0.05);
}

.ingredient-select-item.in-pantry[b-zqted45q6u] {
    color: rgba(255, 255, 255, 0.5);
}

.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: #22c55e;
    margin-left: auto;
}

.selection-count[b-zqted45q6u] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    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 rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-icon:hover[b-zqted45q6u] {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

/* 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 rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.15s ease;
    padding: 0;
}

.btn-icon-sm:hover[b-zqted45q6u] {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.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;
}
/* /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, #00b294) 0%, #008577 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, #00b294) 0%, #008577 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;
    }
}
