/* /Components/Admin/AppsGrid.razor.rz.scp.css */
/* Admin Apps Grid Component Styles */

.admin-apps-container[b-ndqwbuqxw3] {
    --app-card-hover-shadow: 0 4px 8px rgba(0,0,0,0.12);
    --app-card-border-radius: 0.5rem;
    --app-icon-size: 3rem;
    --app-badge-size: 1.25rem;
}

/* Search Section */
.apps-search-section[b-ndqwbuqxw3] {
    background: rgba(248, 249, 250, 0.8);
    padding: 1.5rem;
    border-radius: var(--app-card-border-radius);
    margin-bottom: 2rem;
    margin: 0 -1rem 2rem -1rem;
}

.search-input-wrapper .input-group[b-ndqwbuqxw3] {
    border-radius: var(--app-card-border-radius);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.search-input-wrapper .input-group-text[b-ndqwbuqxw3] {
    border-color: #e9ecef;
    padding: 0.75rem 1rem;
}

.search-input-wrapper .form-control[b-ndqwbuqxw3] {
    border-color: #e9ecef;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.search-input-wrapper .form-control:focus[b-ndqwbuqxw3] {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
    background-color: white;
}

.search-input-wrapper .form-control[b-ndqwbuqxw3]::placeholder {
    color: #6c757d;
    font-style: italic;
}

/* View Mode Toggle */
.view-mode-toggle[b-ndqwbuqxw3] {
    display: flex;
    align-items: center;
}

.view-mode-label[b-ndqwbuqxw3] {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bs-secondary);
}

.view-mode-toggle .btn-group .btn[b-ndqwbuqxw3] {
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: all 0.15s ease-in-out;
}

.view-mode-toggle .btn-group .btn:first-child[b-ndqwbuqxw3] {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.view-mode-toggle .btn-group .btn:last-child[b-ndqwbuqxw3] {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.view-mode-toggle .btn-group .btn.btn-primary[b-ndqwbuqxw3] {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.3);
}

.view-mode-toggle .btn-group .btn.btn-outline-primary:hover[b-ndqwbuqxw3] {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
    transform: translateY(-1px);
}

/* Category Headers */
.category-header[b-ndqwbuqxw3] {
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 0.5rem;
}

.category-header h5[b-ndqwbuqxw3] {
    color: var(--bs-dark);
    font-weight: 600;
}

/* Grid Layouts */
.apps-grid-view[b-ndqwbuqxw3] {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    max-width: 100%;
    width: 100%;
}

.apps-grid-view .app-card-grid[b-ndqwbuqxw3] {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    max-height: 160px;
}

.apps-list-view[b-ndqwbuqxw3] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.apps-compact-view[b-ndqwbuqxw3] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

/* Responsive breakpoints for fixed columns */
@media (max-width: 991px) {
    .apps-grid-view[b-ndqwbuqxw3] {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.25rem !important;
    }
}

@media (max-width: 767px) {
    .apps-grid-view[b-ndqwbuqxw3] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
}

@media (max-width: 575px) {
    .apps-grid-view[b-ndqwbuqxw3] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .apps-grid-view .app-card-grid[b-ndqwbuqxw3] {
        aspect-ratio: 2/1;
    }
}

/* App Cards */
.app-card[b-ndqwbuqxw3] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.app-card-grid[b-ndqwbuqxw3] {
    margin-bottom: 0 !important;
}

.app-card-list[b-ndqwbuqxw3] {
    margin-bottom: 0.75rem;
    width: 100%;
}

.app-card-inner[b-ndqwbuqxw3] {
    border-radius: var(--app-card-border-radius);
    border-width: 1px;
    border-color: #e9ecef;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.app-card:hover .app-card-inner[b-ndqwbuqxw3] {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-4px);
    border-color: var(--bs-primary) !important;
}

/* Icon Section (Top Half) */
.app-icon-section[b-ndqwbuqxw3] {
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-info) 100%) !important;
}

.app-icon-large[b-ndqwbuqxw3] {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.app-icon-large i[b-ndqwbuqxw3] {
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Content Section (Bottom Half) */
.app-content-section[b-ndqwbuqxw3] {
    height: 40%;
    padding: 0.75rem 0.5rem 0.5rem 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.app-content-section .card-title[b-ndqwbuqxw3] {
    font-size: 0.85rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 0.25rem !important;
}

.app-content-section .card-text[b-ndqwbuqxw3] {
    font-size: 0.75rem;
    line-height: 1.2;
    opacity: 0.7;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* Badge Corner */
.app-badge-corner[b-ndqwbuqxw3] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50%;
    min-width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* List View Styling */
.app-card-list .app-card-inner[b-ndqwbuqxw3] {
    border-radius: var(--app-card-border-radius);
}

.app-card-list .app-card-inner .card-body[b-ndqwbuqxw3] {
    padding: 1.25rem 1.5rem;
    flex-direction: row;
    align-items: center;
}

/* List View Icon Small */
.app-icon-small[b-ndqwbuqxw3] {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.app-card-list:hover .app-icon-small[b-ndqwbuqxw3] {
    transform: scale(1.05);
    background-color: rgba(var(--bs-primary-rgb), 0.15);
}

/* App Badges */
.app-badge[b-ndqwbuqxw3] {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: var(--app-badge-size);
    height: var(--app-badge-size);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50%;
    animation: pulse-b-ndqwbuqxw3 2s infinite;
}

@keyframes pulse-b-ndqwbuqxw3 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* App Content */
.app-content .card-title[b-ndqwbuqxw3] {
    color: var(--bs-dark);
    font-weight: 600;
    font-size: 1rem;
}

.app-content .card-text[b-ndqwbuqxw3] {
    font-size: 0.875rem;
    line-height: 1.4;
    flex-grow: 1;
}

.app-arrow[b-ndqwbuqxw3] {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.app-card-list:hover .app-arrow[b-ndqwbuqxw3] {
    opacity: 1;
}

/* Color Variations for Icon Sections */
.app-icon-section.bg-primary[b-ndqwbuqxw3] {
    background: linear-gradient(135deg, #0d6efd 0%, #3d8bfd 100%) !important;
}

.app-icon-section.bg-success[b-ndqwbuqxw3] {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%) !important;
}

.app-icon-section.bg-warning[b-ndqwbuqxw3] {
    background: linear-gradient(135deg, #ffc107 0%, #ffda6a 100%) !important;
}

.app-icon-section.bg-warning .app-icon-large[b-ndqwbuqxw3] {
    color: #212529 !important;
}

.app-icon-section.bg-danger[b-ndqwbuqxw3] {
    background: linear-gradient(135deg, #dc3545 0%, #f5c2c7 100%) !important;
}

.app-icon-section.bg-info[b-ndqwbuqxw3] {
    background: linear-gradient(135deg, #0dcaf0 0%, #9eeaf9 100%) !important;
}

.app-icon-section.bg-secondary[b-ndqwbuqxw3] {
    background: linear-gradient(135deg, #6c757d 0%, #adb5bd 100%) !important;
}

.app-icon-section.bg-dark[b-ndqwbuqxw3] {
    background: linear-gradient(135deg, #212529 0%, #495057 100%) !important;
}

/* Enhanced Hover Effects */
.app-card:hover .app-icon-section[b-ndqwbuqxw3] {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.app-card:hover .app-content-section[b-ndqwbuqxw3] {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Empty State */
.admin-apps-container .text-center.py-5[b-ndqwbuqxw3] {
    background-color: var(--bs-light);
    border-radius: var(--app-card-border-radius);
    border: 2px dashed #dee2e6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .apps-search-section[b-ndqwbuqxw3] {
        padding: 1rem;
    }
    
    .apps-compact-view[b-ndqwbuqxw3] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .app-content-section[b-ndqwbuqxw3] {
        padding: 0.75rem 0.5rem 0.5rem 0.5rem;
    }
    
    .app-content-section .card-title[b-ndqwbuqxw3] {
        font-size: 0.85rem;
    }
    
    .app-content-section .card-text[b-ndqwbuqxw3] {
        font-size: 0.75rem;
    }
    
    .app-card-list .app-card-inner .card-body[b-ndqwbuqxw3] {
        padding: 1rem;
    }
    
    .category-header[b-ndqwbuqxw3] {
        margin-bottom: 1rem !important;
    }
    
    .search-input-wrapper .input-group[b-ndqwbuqxw3] {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .apps-search-section[b-ndqwbuqxw3] {
        padding: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .search-input-wrapper .form-control[b-ndqwbuqxw3] {
        font-size: 0.9rem;
        padding: 0.6rem 0.9rem;
    }
    
    .search-input-wrapper .input-group-text[b-ndqwbuqxw3] {
        padding: 0.6rem 0.9rem;
    }
    
    .view-mode-toggle .btn-group[b-ndqwbuqxw3] {
        width: 100%;
        justify-content: center;
    }
    
    .app-icon-large i[b-ndqwbuqxw3] {
        font-size: 2rem !important;
    }
    
    .app-content-section[b-ndqwbuqxw3] {
        padding: 0.4rem 0.3rem 0.3rem 0.3rem;
    }
    
    .app-content-section .card-title[b-ndqwbuqxw3] {
        font-size: 0.75rem;
    }
    
    .app-content-section .card-text[b-ndqwbuqxw3] {
        font-size: 0.65rem;
        -webkit-line-clamp: 1;
    }
    
    .apps-grid-view .app-card-grid[b-ndqwbuqxw3] {
        max-height: 120px;
    }
}

/* Loading State */
.admin-apps-container .spinner-border[b-ndqwbuqxw3] {
    width: 3rem;
    height: 3rem;
}

/* Focus States for Accessibility */
.app-card:focus-within .app-card-inner[b-ndqwbuqxw3] {
    box-shadow: var(--app-card-hover-shadow);
    transform: translateY(-2px);
    border-color: var(--bs-primary) !important;
}

.apps-search-section .form-control:focus[b-ndqwbuqxw3] {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .app-card-inner[b-ndqwbuqxw3] {
        border-width: 3px;
    }
    
    .app-card:hover .app-card-inner[b-ndqwbuqxw3] {
        border-width: 3px;
    }
    
    .app-icon[b-ndqwbuqxw3] {
        border: 2px solid currentColor;
    }
}
/* /Components/Forms/MediaUploadSection.razor.rz.scp.css */
.media-upload-section[b-yqai38y0ne] {
    padding: 0;
}

.upload-area[b-yqai38y0ne] {
    margin-bottom: 1.25rem;
}

.upload-label[b-yqai38y0ne] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    border: 2px dashed #d1d5db;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    cursor: pointer;
    transition: all 0.25s ease;
}

.upload-label:hover[b-yqai38y0ne] {
    border-color: var(--primary-color, #3b82f6);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    transform: translateY(-2px);
}

.upload-label i[b-yqai38y0ne] {
    font-size: 2.5rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.upload-label:hover i[b-yqai38y0ne] {
    color: var(--primary-color, #3b82f6);
}

.upload-label p[b-yqai38y0ne] {
    margin: 0.5rem 0 0.25rem 0;
    font-weight: 600;
    color: #374151;
}

.upload-label small[b-yqai38y0ne] {
    color: #94a3b8;
    font-size: 0.8125rem;
}

.media-preview-grid[b-yqai38y0ne] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.media-preview-item[b-yqai38y0ne] {
    position: relative;
    aspect-ratio: 1;
    border-radius: 0.875rem;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    background: #f9fafb;
}

.media-preview-item:hover[b-yqai38y0ne] {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.media-preview-item.primary[b-yqai38y0ne] {
    border-color: var(--primary-color, #3b82f6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.media-preview-item.pending[b-yqai38y0ne] {
    border-style: dashed;
}

.preview-image[b-yqai38y0ne],
.preview-video[b-yqai38y0ne] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-placeholder[b-yqai38y0ne] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 1rem;
}

.preview-placeholder i[b-yqai38y0ne] {
    font-size: 2.5rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.preview-placeholder p[b-yqai38y0ne] {
    margin: 0;
    font-size: 0.6875rem;
    color: #6b7280;
    text-align: center;
    word-break: break-word;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.media-overlay[b-yqai38y0ne] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.media-preview-item:hover .media-overlay[b-yqai38y0ne] {
    opacity: 1;
}

.media-overlay .btn[b-yqai38y0ne] {
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 0.5rem 0.625rem;
}

.media-overlay .btn-light[b-yqai38y0ne] {
    background: rgba(255, 255, 255, 0.9);
    border: none;
}

.media-overlay .btn-light:hover[b-yqai38y0ne] {
    background: white;
}

.media-overlay .btn-danger[b-yqai38y0ne] {
    background: rgba(239, 68, 68, 0.9);
    border: none;
    color: white;
}

.media-overlay .btn-danger:hover[b-yqai38y0ne] {
    background: #ef4444;
}

.primary-badge[b-yqai38y0ne],
.pending-badge[b-yqai38y0ne] {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.primary-badge[b-yqai38y0ne] {
    background: linear-gradient(135deg, var(--primary-color, #3b82f6) 0%, #2563eb 100%);
    color: white;
}

.pending-badge[b-yqai38y0ne] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}
/* /Components/Forms/TagsInput.razor.rz.scp.css */
.tags-input-container[b-ewf34r0oam] {
    position: relative;
}

.tags-display[b-ewf34r0oam] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.75rem;
    background: white;
    min-height: 52px;
    transition: all 0.2s ease;
}

.tags-display:hover[b-ewf34r0oam] {
    border-color: #cbd5e1;
}

.tags-display:focus-within[b-ewf34r0oam] {
    border-color: var(--primary-color, #3b82f6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}

.tag-badge[b-ewf34r0oam] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.5rem 0.375rem 0.75rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0369a1;
    border: 1px solid #bae6fd;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
    animation: tagAppear-b-ewf34r0oam 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: all 0.15s ease;
}

.tag-badge:hover[b-ewf34r0oam] {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-color: #7dd3fc;
}

/* Alternate tag colors for variety */
.tag-badge:nth-child(3n+2)[b-ewf34r0oam] {
    background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
    color: #86198f;
    border-color: #f0abfc;
}

.tag-badge:nth-child(3n+2):hover[b-ewf34r0oam] {
    background: linear-gradient(135deg, #fae8ff 0%, #f0abfc 100%);
    border-color: #e879f9;
}

.tag-badge:nth-child(3n+3)[b-ewf34r0oam] {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #047857;
    border-color: #6ee7b7;
}

.tag-badge:nth-child(3n+3):hover[b-ewf34r0oam] {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: #34d399;
}

@keyframes tagAppear-b-ewf34r0oam {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-4px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.tag-remove[b-ewf34r0oam] {
    background: transparent;
    border: none;
    color: currentColor;
    opacity: 0.6;
    cursor: pointer;
    padding: 0;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.875rem;
    transition: all 0.15s ease;
}

.tag-remove:hover[b-ewf34r0oam] {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
}

.tag-input[b-ewf34r0oam] {
    flex: 1;
    min-width: 150px;
    border: none;
    outline: none;
    padding: 0.375rem 0.25rem;
    background: transparent;
    font-size: 0.9375rem;
    color: #334155;
}

.tag-input[b-ewf34r0oam]::placeholder {
    color: #94a3b8;
}

.tag-suggestions[b-ewf34r0oam] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    max-height: 220px;
    overflow-y: auto;
    z-index: 20;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: dropdownAppear-b-ewf34r0oam 0.2s ease;
}

@keyframes dropdownAppear-b-ewf34r0oam {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestion-item[b-ewf34r0oam] {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 0.9375rem;
    color: #374151;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.suggestion-item[b-ewf34r0oam]::before {
    content: '#';
    color: #94a3b8;
    font-weight: 500;
}

.suggestion-item:first-child[b-ewf34r0oam] {
    border-radius: 0.625rem 0.625rem 0 0;
}

.suggestion-item:last-child[b-ewf34r0oam] {
    border-radius: 0 0 0.625rem 0.625rem;
}

.suggestion-item:hover[b-ewf34r0oam] {
    background: linear-gradient(90deg, #f0f9ff 0%, #f8fafc 100%);
    color: #0369a1;
}

.suggestion-item:hover[b-ewf34r0oam]::before {
    color: #0ea5e9;
}
/* /Components/Shared/DataTable.razor.rz.scp.css */
/* BlazeFast DataTable Component Styles */
/* Uses CSS custom properties for theming support */

.blazefast-data-table[b-j73atqcous] {
    --table-border-color: var(--bs-border-color, #dee2e6);
    --table-hover-color: var(--bs-light, #f8f9fa);
    --table-header-bg: var(--bs-light, #f8f9fa);
    --table-text-color: var(--bs-body-color, #212529);
    --table-muted-color: var(--bs-secondary, #6c757d);
}

/* Sortable column styling */
.blazefast-sortable-column[b-j73atqcous] {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.blazefast-sortable-column:hover[b-j73atqcous] {
    background-color: rgba(var(--primary-color-rgb, 13, 110, 253), 0.1);
}

/* Table header styling */
.blazefast-table-header th[b-j73atqcous] {
    border-bottom: 2px solid var(--table-border-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--table-header-bg);
    color: var(--table-text-color);
}

/* Table body styling */
.blazefast-table-body td[b-j73atqcous] {
    vertical-align: middle;
    border-bottom: 1px solid var(--table-border-color);
    color: var(--table-text-color);
}

.blazefast-table-row:hover[b-j73atqcous] {
    background-color: var(--table-hover-color);
}

/* Empty state styling */
.blazefast-empty-state[b-j73atqcous] {
    text-align: center;
    padding: 3rem 1rem;
}

/* Table info styling */
.blazefast-table-info[b-j73atqcous] {
    color: var(--table-muted-color);
    font-size: 0.875rem;
}

/* Pagination styling using theme variables */
.blazefast-pagination .page-link[b-j73atqcous] {
    border: 1px solid var(--table-border-color);
    color: var(--table-muted-color);
    background-color: var(--bs-body-bg, #ffffff);
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.blazefast-pagination .page-item.active .page-link[b-j73atqcous] {
    background-color: var(--primary-color, #0d6efd);
    border-color: var(--primary-color, #0d6efd);
    color: white;
}

.blazefast-pagination .page-link:hover:not(.disabled)[b-j73atqcous] {
    background-color: var(--bs-light, #e9ecef);
    border-color: var(--table-border-color);
    color: var(--primary-color, #0d6efd);
}

.blazefast-pagination .page-item.disabled .page-link[b-j73atqcous] {
    color: var(--table-muted-color);
    pointer-events: none;
    background-color: var(--bs-body-bg, #ffffff);
    border-color: var(--table-border-color);
    opacity: 0.6;
}

/* Loading spinner theming */
.blazefast-data-table .spinner-border[b-j73atqcous] {
    color: var(--primary-color, #0d6efd);
}

/* Responsive table adjustments */
@media (max-width: 768px) {
    .blazefast-table-header th[b-j73atqcous] {
        font-size: 0.8125rem;
        padding: 0.5rem 0.25rem;
    }
    
    .blazefast-table-body td[b-j73atqcous] {
        padding: 0.5rem 0.25rem;
        font-size: 0.875rem;
    }
    
    .blazefast-table-info[b-j73atqcous] {
        font-size: 0.8125rem;
    }
}

/* Dark mode support through CSS custom properties */
@media (prefers-color-scheme: dark) {
    .blazefast-data-table[b-j73atqcous] {
        --table-border-color: var(--bs-border-color-dark, #495057);
        --table-hover-color: var(--bs-dark, #495057);
        --table-header-bg: var(--bs-dark, #343a40);
        --table-text-color: var(--bs-body-color-dark, #ffffff);
        --table-muted-color: var(--bs-secondary-dark, #adb5bd);
    }
}
/* /Components/Shared/LoadingSpinner.razor.rz.scp.css */
/* BlazeFast Loading Spinner Component Styles */
/* Uses CSS custom properties for theming support */

.blazefast-loading-spinner[b-g0ekrd1bwm] {
    /* Use theme variables for consistent styling */
    --spinner-primary-color: var(--primary-color, #0d6efd);
    --spinner-text-color: var(--bs-secondary, #6c757d);
}

.blazefast-loading-spinner .spinner-border[b-g0ekrd1bwm] {
    /* Custom sizing for large spinner */
    width: 2rem;
    height: 2rem;
    border-width: 0.25em;
}

.blazefast-loading-spinner .spinner-border.spinner-border-lg[b-g0ekrd1bwm] {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

/* Theme-aware spinner colors */
.blazefast-loading-spinner .text-primary[b-g0ekrd1bwm] {
    color: var(--spinner-primary-color) !important;
}

.blazefast-loading-spinner .text-secondary[b-g0ekrd1bwm] {
    color: var(--bs-secondary, #6c757d) !important;
}

.blazefast-loading-spinner .text-success[b-g0ekrd1bwm] {
    color: var(--success-color, #198754) !important;
}

.blazefast-loading-spinner .text-warning[b-g0ekrd1bwm] {
    color: var(--warning-color, #ffc107) !important;
}

.blazefast-loading-spinner .text-danger[b-g0ekrd1bwm] {
    color: var(--danger-color, #dc3545) !important;
}

.blazefast-loading-spinner .text-info[b-g0ekrd1bwm] {
    color: var(--info-color, #0dcaf0) !important;
}

/* Animation performance optimization */
.blazefast-loading-spinner .spinner-border[b-g0ekrd1bwm] {
    animation-duration: 0.75s;
    will-change: transform;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .blazefast-loading-spinner .spinner-border[b-g0ekrd1bwm] {
        animation-duration: 1.5s;
    }
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .blazefast-loading-spinner[b-g0ekrd1bwm] {
        --spinner-text-color: var(--bs-secondary-dark, #adb5bd);
    }
}
/* /Pages/Admin/Invitations.razor.rz.scp.css */
.upload-area[b-wr34bgan4b] {
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover[b-wr34bgan4b] {
    border-color: #0d6efd !important;
    background-color: #f8f9ff;
}

.table th[b-wr34bgan4b] {
    font-weight: 600;
    font-size: 0.875rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge[b-wr34bgan4b] {
    font-size: 0.75rem;
    font-weight: 500;
}

.btn-group-sm .btn[b-wr34bgan4b] {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

.page-link[b-wr34bgan4b] {
    padding: 0.375rem 0.75rem;
}

.pagination-sm .page-link[b-wr34bgan4b] {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}
/* /Pages/Apps/Dashboard/Components/ActivityFeed.razor.rz.scp.css */
.activity-feed[b-lobygv8di3] {
    max-height: 400px;
    overflow-y: auto;
}

.activity-item[b-lobygv8di3] {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f3f5;
}

.activity-item:last-child[b-lobygv8di3] {
    border-bottom: none;
}

.activity-icon[b-lobygv8di3] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    flex-shrink: 0;
}

.activity-content[b-lobygv8di3] {
    flex: 1;
    min-width: 0;
}

.activity-title[b-lobygv8di3] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-description[b-lobygv8di3] {
    font-size: 0.875rem;
    color: #212529;
    margin-top: 0.125rem;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
}

.activity-description:hover[b-lobygv8di3] {
    color: var(--bs-primary);
    text-decoration: underline;
}

.activity-time[b-lobygv8di3] {
    font-size: 0.75rem;
    color: #adb5bd;
    margin-top: 0.25rem;
}
/* /Pages/Apps/Dashboard/Components/MealPlanStatsCard.razor.rz.scp.css */
.time-stat[b-7o47rxfn8x] {
    text-align: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
}

.time-value[b-7o47rxfn8x] {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.time-label[b-7o47rxfn8x] {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.meal-type-grid[b-7o47rxfn8x] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.meal-type-item[b-7o47rxfn8x] {
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    text-align: center;
}

.meal-type-item i[b-7o47rxfn8x] {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.meal-type-label[b-7o47rxfn8x] {
    font-size: 0.75rem;
    color: #6c757d;
}

.meal-type-count[b-7o47rxfn8x] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.planning-streak-card[b-7o47rxfn8x] {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    border-radius: 0.5rem;
    border: 2px solid rgba(220, 53, 69, 0.2);
}

.streak-icon[b-7o47rxfn8x] {
    width: 48px;
    height: 48px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.streak-icon i[b-7o47rxfn8x] {
    font-size: 1.5rem;
    color: var(--bs-danger);
}

.streak-value[b-7o47rxfn8x] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #212529;
}

.streak-message[b-7o47rxfn8x] {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.25rem;
}
/* /Pages/Apps/Dashboard/Components/QuickNavCard.razor.rz.scp.css */
.quick-nav-card[b-dlv0vitnx5] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s, box-shadow 0.2s;
}

.quick-nav-card:hover[b-dlv0vitnx5] {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    color: inherit;
}

.quick-nav-icon[b-dlv0vitnx5] {
    width: 40px;
    height: 40px;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.quick-nav-card.primary .quick-nav-icon[b-dlv0vitnx5] {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--bs-primary);
}

.quick-nav-card.success .quick-nav-icon[b-dlv0vitnx5] {
    background-color: rgba(25, 135, 84, 0.1);
    color: var(--bs-success);
}

.quick-nav-card.info .quick-nav-icon[b-dlv0vitnx5] {
    background-color: rgba(13, 202, 240, 0.1);
    color: var(--bs-info);
}

.quick-nav-card.warning .quick-nav-icon[b-dlv0vitnx5] {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--bs-warning);
}

.quick-nav-card.purple .quick-nav-icon[b-dlv0vitnx5] {
    background-color: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

.quick-nav-content[b-dlv0vitnx5] {
    flex: 1;
}

.quick-nav-title[b-dlv0vitnx5] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #212529;
}

.quick-nav-count[b-dlv0vitnx5] {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.125rem;
}

.quick-nav-arrow[b-dlv0vitnx5] {
    color: #adb5bd;
    font-size: 1rem;
}
/* /Pages/Apps/Dashboard/Components/RecipeStatsCard.razor.rz.scp.css */
.difficulty-stat[b-gh90rykt0c] {
    text-align: center;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
}

.difficulty-value[b-gh90rykt0c] {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.difficulty-label[b-gh90rykt0c] {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.recipe-thumb[b-gh90rykt0c] {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 0.375rem;
}

.recipe-thumb-placeholder[b-gh90rykt0c] {
    width: 48px;
    height: 48px;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 1.25rem;
}

.tag-cloud[b-gh90rykt0c] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}
/* /Pages/Apps/Dashboard/Components/StatCard.razor.rz.scp.css */
.stat-card[b-5llpplcog1] {
    background: white;
    border-radius: 0.5rem;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover[b-5llpplcog1] {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.stat-card-icon[b-5llpplcog1] {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-card.primary .stat-card-icon[b-5llpplcog1] {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--bs-primary);
}

.stat-card.success .stat-card-icon[b-5llpplcog1] {
    background-color: rgba(25, 135, 84, 0.1);
    color: var(--bs-success);
}

.stat-card.warning .stat-card-icon[b-5llpplcog1] {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--bs-warning);
}

.stat-card.danger .stat-card-icon[b-5llpplcog1] {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--bs-danger);
}

.stat-card.info .stat-card-icon[b-5llpplcog1] {
    background-color: rgba(13, 202, 240, 0.1);
    color: var(--bs-info);
}

.stat-card-content[b-5llpplcog1] {
    flex: 1;
}

.stat-card-value[b-5llpplcog1] {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
}

.stat-card-label[b-5llpplcog1] {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.stat-card-suffix[b-5llpplcog1] {
    font-size: 0.75rem;
    color: #198754;
    margin-top: 0.25rem;
    font-weight: 500;
}
/* /Pages/Apps/Dashboard/Components/UpcomingMeals.razor.rz.scp.css */
.upcoming-meal-thumb[b-n74atxmhxk] {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 0.375rem;
}

.upcoming-meal-thumb-placeholder[b-n74atxmhxk] {
    width: 56px;
    height: 56px;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 1.25rem;
}

.upcoming-meal-meta[b-n74atxmhxk] {
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
/* /Pages/Apps/Recipes/RecipeCard.razor.rz.scp.css */
.recipe-card[b-k3id6adgly] {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.recipe-card:hover[b-k3id6adgly] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.recipe-card-image[b-k3id6adgly] {
    position: relative;
    padding-top: 65%;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    overflow: hidden;
}

.recipe-card-image img[b-k3id6adgly] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recipe-card:hover .recipe-card-image img[b-k3id6adgly] {
    transform: scale(1.05);
}

.placeholder-image[b-k3id6adgly] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #94a3b8;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.recipe-time-badge[b-k3id6adgly] {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    backdrop-filter: blur(4px);
}

.recipe-card-body[b-k3id6adgly] {
    padding: 1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.recipe-title[b-k3id6adgly] {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recipe-description[b-k3id6adgly] {
    color: #64748b;
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    flex: 1;
}

.recipe-tags[b-k3id6adgly] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.recipe-tag[b-k3id6adgly] {
    background-color: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.625rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.recipe-tag-more[b-k3id6adgly] {
    background-color: #e2e8f0;
    color: #64748b;
}

.recipe-card-footer[b-k3id6adgly] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid #f1f5f9;
    background-color: #fafbfc;
}

.recipe-meta[b-k3id6adgly] {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #64748b;
}

.meta-item[b-k3id6adgly] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.meta-rating[b-k3id6adgly] {
    color: #f59e0b;
    font-weight: 600;
}

.recipe-card-actions[b-k3id6adgly] {
    display: flex;
    gap: 0.25rem;
}

.btn-action[b-k3id6adgly] {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #94a3b8;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-action:hover[b-k3id6adgly] {
    background-color: #e2e8f0;
    color: #475569;
}

.btn-action-danger:hover[b-k3id6adgly] {
    background-color: #fee2e2;
    color: #dc2626;
}
/* /Pages/Apps/Recipes/RecipeForm.razor.rz.scp.css */
.recipe-form-container[b-82a7zdpioo] {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header with frosted glass effect */
.form-header[b-82a7zdpioo] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.form-header .btn-light[b-82a7zdpioo] {
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #64748b;
    transition: all 0.2s ease;
}

.form-header .btn-light:hover[b-82a7zdpioo] {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #334155;
    transform: translateX(-2px);
}

.form-header h1[b-82a7zdpioo] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}

/* Loading state */
.loading-container[b-82a7zdpioo] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.loading-container p[b-82a7zdpioo] {
    color: #64748b;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Form sections with modern card design */
.form-section[b-82a7zdpioo] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.form-section[b-82a7zdpioo]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light, #60a5fa) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.form-section:focus-within[b-82a7zdpioo] {
    border-color: #cbd5e1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.form-section:focus-within[b-82a7zdpioo]::before {
    opacity: 1;
}

.form-section h3[b-82a7zdpioo] {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Add item button - positioned at bottom of sections */
.btn-add-item[b-82a7zdpioo] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    background: transparent;
    border: 2px dashed #d1d5db;
    border-radius: 0.75rem;
    color: #64748b;
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-item:hover[b-82a7zdpioo] {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f9ff 0%, #eff6ff 100%);
    color: var(--primary-color);
}

.btn-add-item:active[b-82a7zdpioo] {
    transform: scale(0.99);
}

.btn-add-item i[b-82a7zdpioo] {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.btn-add-item:hover i[b-82a7zdpioo] {
    transform: scale(1.1);
}

/* Form labels and inputs */
.form-label[b-82a7zdpioo] {
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-label.required[b-82a7zdpioo]::after {
    content: " *";
    color: #ef4444;
    font-weight: 600;
}

[b-82a7zdpioo] .form-control,
[b-82a7zdpioo] .form-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 0.625rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    background: #fafafa;
}

[b-82a7zdpioo] .form-control:hover,
[b-82a7zdpioo] .form-select:hover {
    border-color: #cbd5e1;
    background: white;
}

[b-82a7zdpioo] .form-control:focus,
[b-82a7zdpioo] .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: white;
}

[b-82a7zdpioo] .form-control::placeholder {
    color: #94a3b8;
}

/* Checkbox styling */
[b-82a7zdpioo] .form-check-input {
    width: 1.125rem;
    height: 1.125rem;
    border: 1.5px solid #d1d5db;
    border-radius: 0.375rem;
    transition: all 0.15s ease;
}

[b-82a7zdpioo] .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

[b-82a7zdpioo] .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-check-label[b-82a7zdpioo] {
    color: #475569;
    font-size: 0.9375rem;
    padding-left: 0.25rem;
}

/* Alert styling */
[b-82a7zdpioo] .alert-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 0.75rem;
    color: #0369a1;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
}

/* Form actions - sticky footer */
.form-actions[b-82a7zdpioo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    position: sticky;
    bottom: 1rem;
    margin-top: 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
}

.action-buttons[b-82a7zdpioo] {
    display: flex;
    gap: 0.75rem;
}

.action-buttons .btn-secondary[b-82a7zdpioo] {
    background: white;
    border: 1.5px solid #e2e8f0;
    color: #64748b;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    border-radius: 0.625rem;
    transition: all 0.2s ease;
}

.action-buttons .btn-secondary:hover[b-82a7zdpioo] {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #475569;
}

.action-buttons .btn-primary[b-82a7zdpioo] {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
    border: none;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 0.625rem;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
    transition: all 0.2s ease;
}

.action-buttons .btn-primary:hover:not(:disabled)[b-82a7zdpioo] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.action-buttons .btn-primary:disabled[b-82a7zdpioo] {
    background: #cbd5e1;
    cursor: not-allowed;
    box-shadow: none;
}

/* Ingredient Item Styles */
.ingredient-item[b-82a7zdpioo] {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 0.625rem;
    transition: all 0.2s ease;
}

.ingredient-item:hover[b-82a7zdpioo] {
    background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
    border-color: #d1d5db;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

/* Instruction Item Styles */
.instruction-item[b-82a7zdpioo] {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 0.625rem;
    transition: all 0.2s ease;
}

.instruction-item:hover[b-82a7zdpioo] {
    background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
    border-color: #d1d5db;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.instruction-header[b-82a7zdpioo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.step-number[b-82a7zdpioo] {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.875rem;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.instruction-controls[b-82a7zdpioo] {
    display: flex;
    gap: 0.375rem;
}

.instruction-controls .btn[b-82a7zdpioo] {
    padding: 0.375rem 0.5rem;
    border-radius: 0.5rem;
}

/* Auto Save Indicator Styles */
.auto-save-indicator[b-82a7zdpioo] {
    font-size: 0.8125rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auto-save-indicator .saving[b-82a7zdpioo],
.auto-save-indicator .saved[b-82a7zdpioo] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auto-save-indicator .saved[b-82a7zdpioo] {
    color: var(--success-color);
}

/* Row styling for time inputs */
[b-82a7zdpioo] .row {
    --bs-gutter-x: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .recipe-form-container[b-82a7zdpioo] {
        padding: 1rem;
    }

    .form-header[b-82a7zdpioo] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .form-header h1[b-82a7zdpioo] {
        font-size: 1.5rem;
    }

    .form-section[b-82a7zdpioo] {
        padding: 1.25rem;
        border-radius: 0.75rem;
    }

    .section-header[b-82a7zdpioo] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .form-actions[b-82a7zdpioo] {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        position: relative;
        bottom: 0;
    }

    .action-buttons[b-82a7zdpioo] {
        width: 100%;
        flex-direction: column-reverse;
    }

    .action-buttons button[b-82a7zdpioo] {
        width: 100%;
        justify-content: center;
    }

    .media-preview-grid[b-82a7zdpioo] {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

/* Subtle animations */
@media (prefers-reduced-motion: no-preference) {
    .form-section[b-82a7zdpioo] {
        animation: fadeSlideIn-b-82a7zdpioo 0.3s ease;
    }

    @keyframes fadeSlideIn-b-82a7zdpioo {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
/* /Pages/Apps/Recipes/RecipeList.razor.rz.scp.css */
.recipe-list-container[b-9j2j5z47c0] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.recipe-header[b-9j2j5z47c0] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.recipe-header h1[b-9j2j5z47c0] {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.header-actions[b-9j2j5z47c0] {
    display: flex;
    gap: 0.75rem;
}

.recipe-toolbar[b-9j2j5z47c0] {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border-radius: 0.75rem;
}

.search-section[b-9j2j5z47c0] {
    flex: 1;
    min-width: 280px;
}

.search-input-wrapper[b-9j2j5z47c0] {
    position: relative;
}

.search-icon[b-9j2j5z47c0] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-input[b-9j2j5z47c0] {
    padding-left: 2.75rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.search-input:focus[b-9j2j5z47c0] {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-section[b-9j2j5z47c0] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.sort-section[b-9j2j5z47c0] {
    min-width: 180px;
}

.sort-section .form-select[b-9j2j5z47c0] {
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}

.view-toggle .btn[b-9j2j5z47c0] {
    padding: 0.5rem 0.75rem;
}

.recipe-grid[b-9j2j5z47c0] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.recipe-list[b-9j2j5z47c0] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Empty State */
.empty-state[b-9j2j5z47c0] {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 1rem;
    margin-top: 2rem;
}

.empty-state-icon[b-9j2j5z47c0] {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #6366f1;
}

.empty-state h3[b-9j2j5z47c0] {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-state p[b-9j2j5z47c0] {
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.empty-state-actions[b-9j2j5z47c0] {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

/* Loading Container */
.loading-container[b-9j2j5z47c0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .recipe-toolbar[b-9j2j5z47c0] {
        flex-direction: column;
    }

    .filter-section[b-9j2j5z47c0] {
        width: 100%;
        justify-content: space-between;
    }

    .recipe-grid[b-9j2j5z47c0] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Apps/Recipes/RecipeListItem.razor.rz.scp.css */
.recipe-list-item[b-id0dr35nmo] {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.recipe-list-item:hover[b-id0dr35nmo] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.recipe-list-image[b-id0dr35nmo] {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 0.75rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.recipe-list-image img[b-id0dr35nmo] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recipe-list-item:hover .recipe-list-image img[b-id0dr35nmo] {
    transform: scale(1.05);
}

.placeholder-image-small[b-id0dr35nmo] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #94a3b8;
}

.recipe-list-content[b-id0dr35nmo] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.recipe-list-header[b-id0dr35nmo] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.recipe-list-title[b-id0dr35nmo] {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
}

.recipe-list-rating[b-id0dr35nmo] {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.9rem;
}

.recipe-list-description[b-id0dr35nmo] {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.recipe-list-meta[b-id0dr35nmo] {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.meta-item[b-id0dr35nmo] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.recipe-list-tags[b-id0dr35nmo] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.recipe-tag[b-id0dr35nmo] {
    background-color: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.625rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.recipe-tag-more[b-id0dr35nmo] {
    background-color: #e2e8f0;
    color: #64748b;
}

.recipe-list-actions[b-id0dr35nmo] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
    justify-content: center;
}

.btn-action[b-id0dr35nmo] {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #94a3b8;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-action:hover[b-id0dr35nmo] {
    background-color: #e2e8f0;
    color: #475569;
}

.btn-action-danger:hover[b-id0dr35nmo] {
    background-color: #fee2e2;
    color: #dc2626;
}

@media (max-width: 768px) {
    .recipe-list-item[b-id0dr35nmo] {
        flex-direction: column;
    }

    .recipe-list-image[b-id0dr35nmo] {
        width: 100%;
        height: 200px;
    }

    .recipe-list-actions[b-id0dr35nmo] {
        flex-direction: row;
        justify-content: flex-end;
    }
}
/* /Pages/Apps/Recipes/RecipeView.razor.rz.scp.css */
/* Loading State */
.recipe-view-loading[b-2ary1sizhv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 1rem;
}

/* Error State */
.recipe-view-error[b-2ary1sizhv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 2rem;
}

.recipe-view-error .error-icon[b-2ary1sizhv] {
    width: 80px;
    height: 80px;
    background: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.recipe-view-error h3[b-2ary1sizhv] {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

/* Recipe View Container */
.recipe-view[b-2ary1sizhv] {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

/* Hero Section */
.recipe-hero[b-2ary1sizhv] {
    position: relative;
    height: 450px;
    border-radius: 0 0 2rem 2rem;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.recipe-hero-image[b-2ary1sizhv] {
    position: absolute;
    inset: 0;
}

.recipe-hero-image img[b-2ary1sizhv] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-out;
}

.recipe-hero:hover .recipe-hero-image img[b-2ary1sizhv] {
    transform: scale(1.05);
}

.recipe-hero-placeholder[b-2ary1sizhv] {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

.recipe-hero-overlay[b-2ary1sizhv] {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 35%, transparent 60%),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.4) 0%, transparent 25%),
        linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.recipe-hero-content[b-2ary1sizhv] {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.btn-back[b-2ary1sizhv] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.25rem;
    color: #fff;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-back:hover[b-2ary1sizhv] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.recipe-hero-actions[b-2ary1sizhv] {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.75rem;
}

.recipe-hero-actions .btn[b-2ary1sizhv] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.recipe-hero-actions .btn:hover[b-2ary1sizhv] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.recipe-hero-info[b-2ary1sizhv] {
    margin-top: auto;
    color: #fff;
}

.recipe-hero-info .recipe-tags[b-2ary1sizhv] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.recipe-hero-info .recipe-tag[b-2ary1sizhv] {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
    text-transform: lowercase;
}

.recipe-hero-info .recipe-tag:hover[b-2ary1sizhv] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.recipe-hero-info .recipe-title[b-2ary1sizhv] {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 4px 24px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.recipe-hero-info .recipe-description[b-2ary1sizhv] {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 650px;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.recipe-source-link[b-2ary1sizhv] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 2rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.recipe-source-link:hover[b-2ary1sizhv] {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.recipe-source-link i[b-2ary1sizhv] {
    font-size: 1rem;
    opacity: 0.8;
}

/* Stats Section */
.recipe-stats[b-2ary1sizhv] {
    display: flex;
    gap: 1rem;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card[b-2ary1sizhv] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    min-width: 140px;
}

.stat-card i[b-2ary1sizhv] {
    font-size: 1.5rem;
    color: #6366f1;
}

.stat-card.stat-rating i[b-2ary1sizhv] {
    color: #f59e0b;
}

.stat-content[b-2ary1sizhv] {
    display: flex;
    flex-direction: column;
}

.stat-value[b-2ary1sizhv] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.stat-label[b-2ary1sizhv] {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Main Content Layout */
.recipe-content[b-2ary1sizhv] {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    padding: 0 1.5rem;
}

.recipe-main[b-2ary1sizhv] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Recipe Sections */
.recipe-section[b-2ary1sizhv] {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.recipe-section h2[b-2ary1sizhv] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
}

.recipe-section h2 i[b-2ary1sizhv] {
    color: #6366f1;
}

/* Ingredients Section */
.ingredients-section .section-header[b-2ary1sizhv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
}

.ingredients-section .section-header h2[b-2ary1sizhv] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.servings-adjuster[b-2ary1sizhv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.servings-display[b-2ary1sizhv] {
    min-width: 80px;
    text-align: center;
    font-weight: 500;
    color: #475569;
}

.ingredients-list[b-2ary1sizhv] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ingredient-item[b-2ary1sizhv] {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.15s ease;
}

.ingredient-item:last-child[b-2ary1sizhv] {
    border-bottom: none;
}

.ingredient-item:hover[b-2ary1sizhv] {
    background: #f8fafc;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.ingredient-item.checked[b-2ary1sizhv] {
    opacity: 0.5;
    text-decoration: line-through;
}

.ingredient-checkbox[b-2ary1sizhv] {
    color: #6366f1;
    flex-shrink: 0;
}

.ingredient-quantity[b-2ary1sizhv] {
    font-weight: 600;
    color: #1e293b;
    min-width: 50px;
}

.ingredient-unit[b-2ary1sizhv] {
    color: #64748b;
    min-width: 60px;
}

.ingredient-name[b-2ary1sizhv] {
    color: #334155;
    flex: 1;
}

.ingredient-notes[b-2ary1sizhv] {
    color: #94a3b8;
    font-style: italic;
    font-size: 0.9rem;
}

/* Instructions Section */
.instructions-list[b-2ary1sizhv] {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.instruction-item[b-2ary1sizhv] {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.15s ease;
}

.instruction-item:last-child[b-2ary1sizhv] {
    border-bottom: none;
}

.instruction-item:hover[b-2ary1sizhv] {
    background: #f8fafc;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.instruction-item.completed .instruction-content p[b-2ary1sizhv] {
    text-decoration: line-through;
    opacity: 0.5;
}

.instruction-item.completed .step-number[b-2ary1sizhv] {
    background: #22c55e;
    color: #fff;
}

.instruction-step[b-2ary1sizhv] {
    flex-shrink: 0;
}

.step-number[b-2ary1sizhv] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6366f1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.15s ease;
}

.instruction-content[b-2ary1sizhv] {
    flex: 1;
}

.instruction-content p[b-2ary1sizhv] {
    margin: 0;
    color: #334155;
    line-height: 1.6;
}

.instruction-time[b-2ary1sizhv] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
}

/* Sidebar */
.recipe-sidebar[b-2ary1sizhv] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card[b-2ary1sizhv] {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sidebar-card h3[b-2ary1sizhv] {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

/* Info Card */
.info-list[b-2ary1sizhv] {
    margin: 0;
}

.info-item[b-2ary1sizhv] {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-item:last-child[b-2ary1sizhv] {
    border-bottom: none;
}

.info-item dt[b-2ary1sizhv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-weight: normal;
    font-size: 0.9rem;
}

.info-item dt i[b-2ary1sizhv] {
    color: #94a3b8;
}

.info-item dd[b-2ary1sizhv] {
    margin: 0;
    font-weight: 500;
    color: #334155;
    font-size: 0.9rem;
}

/* Media Gallery */
.media-gallery[b-2ary1sizhv] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.gallery-item[b-2ary1sizhv] {
    aspect-ratio: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img[b-2ary1sizhv] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.gallery-item:hover img[b-2ary1sizhv] {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .recipe-content[b-2ary1sizhv] {
        grid-template-columns: 1fr;
    }

    .recipe-sidebar[b-2ary1sizhv] {
        order: -1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card[b-2ary1sizhv] {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .recipe-hero[b-2ary1sizhv] {
        height: 350px;
        border-radius: 0 0 1.5rem 1.5rem;
    }

    .recipe-hero-info .recipe-title[b-2ary1sizhv] {
        font-size: 1.75rem;
        letter-spacing: -0.01em;
    }

    .recipe-hero-info .recipe-description[b-2ary1sizhv] {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .recipe-hero-info .recipe-tag[b-2ary1sizhv] {
        padding: 0.3rem 0.75rem;
        font-size: 0.75rem;
    }

    .recipe-stats[b-2ary1sizhv] {
        padding: 0 1rem;
    }

    .stat-card[b-2ary1sizhv] {
        min-width: 120px;
        padding: 0.75rem 1rem;
    }

    .recipe-content[b-2ary1sizhv] {
        padding: 0 1rem;
    }

    .sidebar-card[b-2ary1sizhv] {
        min-width: 100%;
    }
}

/* Print Styles */
@media print {
    .btn-back[b-2ary1sizhv],
    .recipe-hero-actions[b-2ary1sizhv],
    .recipe-sidebar[b-2ary1sizhv],
    .servings-adjuster[b-2ary1sizhv] {
        display: none !important;
    }

    .recipe-hero[b-2ary1sizhv] {
        height: auto;
        border-radius: 0;
    }

    .recipe-hero-image[b-2ary1sizhv] {
        position: relative;
        height: 300px;
    }

    .recipe-hero-overlay[b-2ary1sizhv] {
        display: none;
    }

    .recipe-hero-content[b-2ary1sizhv] {
        position: relative;
        color: #000;
        padding: 1rem 0;
    }

    .recipe-hero-info .recipe-tag[b-2ary1sizhv] {
        background: #e2e8f0;
        color: #334155;
    }

    .recipe-content[b-2ary1sizhv] {
        display: block;
    }

    .recipe-section[b-2ary1sizhv] {
        box-shadow: none;
        border: 1px solid #e2e8f0;
        break-inside: avoid;
    }
}
/* /Pages/User/Dashboard.razor.rz.scp.css */
.bg-gradient-primary[b-sga87z6rcg] {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.feature-icon[b-sga87z6rcg] {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-timeline[b-sga87z6rcg] {
    max-height: 300px;
    overflow-y: auto;
}

.activity-item[b-sga87z6rcg] {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.activity-item:last-child[b-sga87z6rcg] {
    border-bottom: none;
}

.activity-icon[b-sga87z6rcg] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 50%;
    flex-shrink: 0;
}

.activity-title[b-sga87z6rcg] {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.activity-time[b-sga87z6rcg] {
    font-size: 0.875rem;
}

.help-link[b-sga87z6rcg] {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.help-link:hover[b-sga87z6rcg] {
    color: #0d6efd;
}

.info-item[b-sga87z6rcg] {
    font-size: 0.9rem;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.app-container[b-qoob6mtzob] {
    display: flex;
    min-height: 100vh;
    background-color: #f8fafc;
}

.sidebar-container[b-qoob6mtzob] {
    width: 280px;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.main-container[b-qoob6mtzob] {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-header[b-qoob6mtzob] {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content[b-qoob6mtzob] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.breadcrumb-section[b-qoob6mtzob] {
    font-size: 0.875rem;
    color: #64748b;
}

.header-actions[b-qoob6mtzob] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-actions .btn[b-qoob6mtzob] {
    border-radius: 8px;
}

.header-actions .dropdown-toggle[b-qoob6mtzob]::after {
    display: none;
}

.header-user-avatar[b-qoob6mtzob] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bs-primary, #0d6efd);
    color: var(--bs-white, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid var(--bs-gray-200, #e9ecef);
}

.content-area[b-qoob6mtzob] {
    flex: 1;
    padding: 2rem;
    background-color: #f8fafc;
    overflow-y: auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .sidebar-container[b-qoob6mtzob] {
        transform: translateX(-100%);
        width: 280px;
    }

    .sidebar-container.mobile-open[b-qoob6mtzob] {
        transform: translateX(0);
    }

    .main-container[b-qoob6mtzob] {
        margin-left: 0;
    }

    .top-header[b-qoob6mtzob] {
        padding: 0 1rem;
    }

    .content-area[b-qoob6mtzob] {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .header-content[b-qoob6mtzob] {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .header-actions[b-qoob6mtzob] {
        gap: 0.5rem;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.sidebar-header[b-4o8tsbgiee] {
    padding: 1.5rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-section[b-4o8tsbgiee] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-link[b-4o8tsbgiee] {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.25rem;
}

.brand-icon[b-4o8tsbgiee] {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: white;
    font-size: 1.125rem;
}

.brand-logo[b-4o8tsbgiee] {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
    margin-right: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brand-text[b-4o8tsbgiee] {
    color: #ffffff;
    font-weight: 700;
}

.mobile-toggle[b-4o8tsbgiee] {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    padding: 0.5rem;
    border-radius: 6px;
    display: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.mobile-toggle:hover[b-4o8tsbgiee] {
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-content[b-4o8tsbgiee] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 120px);
    padding: 0;
}

.nav-menu[b-4o8tsbgiee] {
    flex: 1;
    padding: 1.5rem 0;
    overflow-y: auto;
}

.nav-group[b-4o8tsbgiee] {
    margin-bottom: 2rem;
}

.nav-group:last-child[b-4o8tsbgiee] {
    margin-bottom: 1rem;
}

.nav-group-title[b-4o8tsbgiee] {
    color: var(--bs-gray-400, #6c757d);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem 1rem 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.nav-group-items[b-4o8tsbgiee] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 0.75rem;
}

.nav-item[b-4o8tsbgiee] {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    color: var(--bs-gray-300, #dee2e6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.25s ease;
    border-radius: var(--bs-border-radius, 0.375rem);
    position: relative;
    margin-bottom: 0.125rem;
}

.nav-item-primary[b-4o8tsbgiee] {
    margin: 0 0.75rem 1.5rem;
    background: var(--bs-primary, #0d6efd);
    color: var(--bs-white, #ffffff);
    font-weight: 600;
    padding: 1rem;
    border-radius: calc(var(--bs-border-radius, 0.375rem) * 2);
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb, 13, 110, 253), 0.3);
}

.nav-item-primary:hover[b-4o8tsbgiee] {
    background: var(--bs-primary-dark, #0a58ca);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(var(--bs-primary-rgb, 13, 110, 253), 0.4);
    color: var(--bs-white, #ffffff);
    text-decoration: none;
}

.nav-item-primary i[b-4o8tsbgiee] {
    color: var(--bs-white, #ffffff);
    margin-right: 0.75rem;
    font-size: 1.125rem;
}

.nav-item i[b-4o8tsbgiee] {
    width: 20px;
    margin-right: 0.75rem;
    font-size: 1rem;
    color: var(--bs-gray-400, #6c757d);
    transition: color 0.25s ease;
}

.nav-text[b-4o8tsbgiee] {
    flex: 1;
}

.nav-item:hover[b-4o8tsbgiee] {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--bs-white, #ffffff);
    text-decoration: none;
    transform: translateX(4px);
}

.nav-item:hover i[b-4o8tsbgiee] {
    color: var(--bs-primary-light, #6ea8fe);
}

.nav-item.active[b-4o8tsbgiee] {
    background: rgba(var(--bs-primary-rgb, 13, 110, 253), 0.15);
    color: var(--bs-white, #ffffff);
    border-left: 3px solid var(--bs-primary, #0d6efd);
    padding-left: calc(1rem - 3px);
}

.nav-item.active i[b-4o8tsbgiee] {
    color: var(--bs-primary-light, #6ea8fe);
}

.sidebar-footer[b-4o8tsbgiee] {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.user-info[b-4o8tsbgiee] {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: background-color 0.2s;
}

.user-info:hover[b-4o8tsbgiee] {
    background-color: rgba(255, 255, 255, 0.1);
}

.user-avatar[b-4o8tsbgiee] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: var(--bs-primary, #0d6efd);
    color: var(--bs-white, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.user-details[b-4o8tsbgiee] {
    flex: 1;
}

.user-name[b-4o8tsbgiee] {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
}

.user-role[b-4o8tsbgiee] {
    color: #94a3b8;
    font-size: 0.75rem;
    line-height: 1.2;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .mobile-toggle[b-4o8tsbgiee] {
        display: block;
    }

    .sidebar-content.collapsed[b-4o8tsbgiee] {
        display: none;
    }

    .sidebar-content.expanded[b-4o8tsbgiee] {
        display: flex;
    }
}

@media (min-width: 769px) {
    .sidebar-content[b-4o8tsbgiee] {
        display: flex !important;
    }

    .mobile-toggle[b-4o8tsbgiee] {
        display: none;
    }
}

/* Navigation Subgroups */
.nav-subgroup[b-4o8tsbgiee] {
    margin: 0.5rem 0 1rem 0;
    padding-left: 0.5rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-subgroup-title[b-4o8tsbgiee] {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.5rem;
}

.nav-subgroup-title i[b-4o8tsbgiee] {
    width: 14px;
    margin-right: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.nav-subgroup-title span[b-4o8tsbgiee] {
    color: rgba(255, 255, 255, 0.6);
}

.nav-subitem[b-4o8tsbgiee] {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    margin-bottom: 0.0625rem;
    margin-left: 0.5rem;
    border-radius: 6px;
}

.nav-subitem i[b-4o8tsbgiee] {
    width: 16px;
    margin-right: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.nav-subitem:hover[b-4o8tsbgiee] {
    background-color: rgba(255, 255, 255, 0.06);
    transform: translateX(2px);
}

.nav-subitem:hover i[b-4o8tsbgiee] {
    opacity: 1;
    color: var(--bs-primary-light, #6ea8fe);
}

.nav-subitem.active[b-4o8tsbgiee] {
    background: rgba(var(--bs-primary-rgb, 13, 110, 253), 0.1);
    border-left: 2px solid var(--bs-primary, #0d6efd);
    padding-left: calc(0.75rem - 2px);
}
