@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';
@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* _content/Nutrition.Web.External.UI.Interactive/Components/CustomFoodCreationModal.razor.rz.scp.css */
/* CustomFoodCreationModal.razor.css */
.modal-overlay[b-mej1412mg4] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn-b-mej1412mg4 0.2s ease-out;
}

@keyframes fadeIn-b-mej1412mg4 {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container[b-mej1412mg4] {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: slideUp-b-mej1412mg4 0.3s ease-out;
}

@keyframes slideUp-b-mej1412mg4 {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content[b-mej1412mg4] {
    padding: 1.5rem;
}

.modal-header[b-mej1412mg4] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff5e6 0%, #fff 100%);
    border-bottom: 1px solid #f0f0f0;
    border-radius: 12px 12px 0 0;
}

.modal-header h2[b-mej1412mg4] {
    margin: 0;
    color: #2d3748;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-subtitle[b-mej1412mg4] {
    margin: 0.25rem 0 0 0;
    color: #718096;
    font-size: 0.875rem;
    font-weight: 400;
}

.close-button[b-mej1412mg4] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4a5568;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

.close-button:hover[b-mej1412mg4] {
    color: #2d3748;
}

.search-results-container[b-mej1412mg4] {
    margin-top: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafb;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    animation: fadeIn-b-mej1412mg4 0.2s ease-out;
}

.search-results-grid[b-mej1412mg4] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
}

.search-result-card[b-mej1412mg4] {
    padding: 0.75rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.search-result-card:hover[b-mej1412mg4] {
    border-color: #4299e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.similar-foods-grid[b-mej1412mg4] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.similar-food-card[b-mej1412mg4] {
    padding: 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.similar-food-card:hover[b-mej1412mg4] {
    border-color: #4299e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.macro-info[b-mej1412mg4] {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #4a5568;
}

/* Progress Steps */
.progress-steps[b-mej1412mg4] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1.5rem 2rem;
    padding: 1rem 0;
}

.step[b-mej1412mg4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.step.active[b-mej1412mg4] {
    opacity: 1;
}

.step-number[b-mej1412mg4] {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #e2e8f0;
    color: #718096;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.step.active .step-number[b-mej1412mg4] {
    background: #f08a12;
    color: white;
    box-shadow: 0 2px 4px rgba(240, 138, 18, 0.3);
}

.step-label[b-mej1412mg4] {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 500;
}

.step-connector[b-mej1412mg4] {
    width: 4rem;
    height: 2px;
    background: #e2e8f0;
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease;
}

.step-connector.active[b-mej1412mg4] {
    background: #f08a12;
}

/* Form Styles */
.form-section[b-mej1412mg4] {
    padding: 0 1.5rem;
}

.form-group[b-mej1412mg4] {
    margin-bottom: 1.5rem;
}

.form-label[b-mej1412mg4] {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-label i[b-mej1412mg4] {
    color: #f08a12;
    font-size: 1rem;
}

.required[b-mej1412mg4] {
    color: #e53e3e;
    margin-left: 0.25rem;
}

.input-wrapper[b-mej1412mg4] {
    position: relative;
}

/* Custom input styling for MudTextField */
[b-mej1412mg4] .custom-input .mud-input-root {
    border-radius: 8px;
    transition: all 0.2s ease;
}

[b-mej1412mg4] .custom-input .mud-input-root:hover {
    border-color: #f08a12;
}

[b-mej1412mg4] .custom-input .mud-input-root.mud-input-root-outlined.Mui-focused .mud-input-outlined-border {
    border-color: #f08a12;
    border-width: 2px;
}

[b-mej1412mg4] .custom-input .mud-input-helper-text {
    font-size: 0.75rem;
    color: #718096;
    margin-top: 0.25rem;
}

/* Action Buttons */
.modal-actions[b-mej1412mg4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    margin: 2rem -1.5rem -1.5rem;
    border-radius: 0 0 12px 12px;
    border-top: 1px solid #e2e8f0;
}

.btn-cancel[b-mej1412mg4] {
    background: none;
    border: none;
    color: #718096;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-cancel:hover[b-mej1412mg4] {
    color: #2d3748;
}

.btn-continue[b-mej1412mg4] {
    background: #f08a12;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(240, 138, 18, 0.2);
}

.btn-continue:hover:not(.disabled)[b-mej1412mg4] {
    background: #d97910;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(240, 138, 18, 0.3);
}

.btn-continue.disabled[b-mej1412mg4] {
    background: #cbd5e0;
    cursor: not-allowed;
    box-shadow: none;
}

@media (max-width: 640px) {
    .modal-container[b-mej1412mg4] {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .modal-header[b-mej1412mg4] {
        border-radius: 0;
    }
    
    .progress-steps[b-mej1412mg4] {
        margin: 0 1rem 1.5rem;
    }
    
    .step-label[b-mej1412mg4] {
        font-size: 0.7rem;
    }
    
    .form-section[b-mej1412mg4] {
        padding: 0 1rem;
    }
    
    .modal-actions[b-mej1412mg4] {
        flex-direction: column-reverse;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .btn-cancel[b-mej1412mg4],
    .btn-continue[b-mej1412mg4] {
        width: 100%;
        justify-content: center;
    }

    .search-results-grid[b-mej1412mg4],
    .similar-foods-grid[b-mej1412mg4] {
        grid-template-columns: 1fr;
    }
}

/* Unauthenticated button styles */
.custom-food-btn.unauthenticated[b-mej1412mg4] {
    background-color: #e2e8f0;
    color: #4a5568;
    border-color: #cbd5e0;
}

.custom-food-btn.unauthenticated:hover[b-mej1412mg4] {
    background-color: #cbd5e0;
    border-color: #a0aec0;
    color: #2d3748;
}

/* Authentication Modal Styles */
.auth-modal-container[b-mej1412mg4] {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
    animation: slideUp-b-mej1412mg4 0.3s ease-out;
}

.auth-modal-content[b-mej1412mg4] {
    padding: 0;
}

.auth-modal-header[b-mej1412mg4] {
    text-align: center;
    padding: 2rem 2rem 1.5rem;
    position: relative;
}

.auth-modal-header h2[b-mej1412mg4] {
    margin: 1rem 0 0.5rem;
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.auth-modal-header .modal-close-button[b-mej1412mg4] {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.auth-icon[b-mej1412mg4] {
    color: #f08a12;
    font-size: 3rem !important;
}

.auth-modal-body[b-mej1412mg4] {
    padding: 0 2rem 2rem;
}

.value-props[b-mej1412mg4] {
    background-color: #f7fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.value-prop-item[b-mej1412mg4] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 0.95rem;
}

.value-prop-item:last-child[b-mej1412mg4] {
    margin-bottom: 0;
}

.value-prop-item .mud-icon-root[b-mej1412mg4] {
    font-size: 1.25rem !important;
}

.auth-actions[b-mej1412mg4] {
    text-align: center;
}

.auth-actions .mud-button[b-mej1412mg4] {
    text-transform: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.auth-actions .mud-button-filled[b-mej1412mg4] {
    background-color: #f08a12 !important;
    box-shadow: 0 2px 4px rgba(240, 138, 18, 0.3);
}

.auth-actions .mud-button-filled:hover[b-mej1412mg4] {
    background-color: #d97910 !important;
    box-shadow: 0 4px 8px rgba(240, 138, 18, 0.4);
}

.auth-actions .mud-button-outlined[b-mej1412mg4] {
    border-color: #f08a12 !important;
    color: #f08a12 !important;
}

.auth-actions .mud-button-outlined:hover[b-mej1412mg4] {
    background-color: rgba(240, 138, 18, 0.08) !important;
}

@media (max-width: 640px) {
    .auth-modal-container[b-mej1412mg4] {
        width: 95%;
        margin: 1rem;
    }
    
    .auth-modal-header[b-mej1412mg4] {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .auth-modal-body[b-mej1412mg4] {
        padding: 0 1.5rem 1.5rem;
    }
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/CustomFoodEditorModal.razor.rz.scp.css */
/* Base modal trigger button */
.custom-food-form .btn-outline-primary[b-0eyw5x0s68] {
    transition: all 0.2s ease;
    border-color: #3b82f6;
    color: #3b82f6;
}

.custom-food-form .btn-outline-primary:hover[b-0eyw5x0s68] {
    background-color: #3b82f6;
    color: white;
    transform: translateY(-1px);
}

/* Modal Structure */
.modal-overlay[b-0eyw5x0s68] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.modal-container[b-0eyw5x0s68] {
    width: 100%;
    max-width: 420px;
    margin: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.modal-content[b-0eyw5x0s68] {
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
}

/* Header */
.modal-header[b-0eyw5x0s68] {
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.modal-header h2[b-0eyw5x0s68] {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1f2937;
    margin: 0;
}

.close-button[b-0eyw5x0s68] {
    padding: 0.25rem;
    font-size: 1.25rem;
    border: none;
    background: none;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.close-button:hover[b-0eyw5x0s68] {
    background-color: #f3f4f6;
    color: #1f2937;
}

/* Form Groups */
.form-group[b-0eyw5x0s68] {
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0;
    border-bottom: 1px solid #f3f4f6;
}

.form-group label[b-0eyw5x0s68] {
    color: #4b5563;
    font-size: 0.875rem;
}

/* Serving Section */
.serving-inputs[b-0eyw5x0s68] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.serving-amount[b-0eyw5x0s68] {
    width: 80px !important;
}

.serving-unit[b-0eyw5x0s68] {
    flex: 1 !important;
    min-width: 180px !important;
}

/* Added Serving in grams styles */
.serving-row[b-0eyw5x0s68] {
    display: flex;
    align-items: center;
    margin-top: 8px;
    gap: 8px;
}

.serving-label[b-0eyw5x0s68] {
    color: #666;
    font-size: 14px;
    min-width: 120px;
}

.serving-input[b-0eyw5x0s68] {
    width: 120px !important;
}

[b-0eyw5x0s68] .serving-input > .mud-input-text {
    margin: 0;
}

/* Nutrition Facts Section */
.nutrition-facts[b-0eyw5x0s68] {
    padding: 0.75rem 1rem;
}

.nutrition-facts h3[b-0eyw5x0s68] {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #1f2937;
}

.thick-line[b-0eyw5x0s68] {
    height: 6px;
    background-color: #000;
    margin: 0.5rem 0;
}

.nutrient-row[b-0eyw5x0s68] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    min-height: 32px;
    border-bottom: 1px solid #f3f4f6;
}

.nutrient-row:last-child[b-0eyw5x0s68] {
    border-bottom: none;
}

.calories-row[b-0eyw5x0s68] {
    font-weight: 500;
}

.indented[b-0eyw5x0s68] {
    padding-left: 1.25rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.numeric-input-container[b-0eyw5x0s68] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* MudBlazor Customization */
[b-0eyw5x0s68] .mud-input-control {
    margin: 0;
}

[b-0eyw5x0s68] .mud-input > input.mud-input-root {
    height: 32px;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

[b-0eyw5x0s68] .mud-input-control > .mud-input-control-input-container > div.mud-input.mud-input-text {
    margin-top: 0;
}

[b-0eyw5x0s68] .nutrient-input {
    width: 80px !important;
}

[b-0eyw5x0s68] .mud-input-control-helper-text {
    min-height: 0;
    margin: 0;
}

/* Unit Labels */
.unit[b-0eyw5x0s68] {
    color: #6b7280;
    font-size: 0.75rem;
    width: 20px;
    text-align: right;
    flex-shrink: 0;
}

/* Footer */
.modal-footer[b-0eyw5x0s68] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid #e5e7eb;
    background: white;
    position: sticky;
    bottom: 0;
    z-index: 1;
}

.btn-cancel[b-0eyw5x0s68] {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-cancel:hover[b-0eyw5x0s68] {
    background-color: #f3f4f6;
    color: #1f2937;
}

.btn-add[b-0eyw5x0s68] {
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-add:hover[b-0eyw5x0s68] {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn-add:active[b-0eyw5x0s68] {
    transform: translateY(0);
}

/* Mobile Optimizations */
@media (max-width: 640px) {
    .modal-container[b-0eyw5x0s68] {
        margin: 0.5rem;
        max-height: calc(100vh - 1rem);
    }

    .form-group[b-0eyw5x0s68] {
        flex-direction: column;
        align-items: flex-start;
    }

    .serving-inputs[b-0eyw5x0s68] {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .serving-amount[b-0eyw5x0s68],
    .serving-unit[b-0eyw5x0s68] {
        width: 100% !important;
    }

    .serving-row[b-0eyw5x0s68] {
        width: 100%;
    }

    .serving-input[b-0eyw5x0s68] {
        flex: 1;
    }

    [b-0eyw5x0s68] .mud-input > input.mud-input-root {
        height: 40px;
    }

    .btn-cancel[b-0eyw5x0s68],
    .btn-add[b-0eyw5x0s68] {
        padding: 0.75rem 1rem;
    }
}

/* Scrollbar Styling */
.modal-content[b-0eyw5x0s68] {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.modal-content[b-0eyw5x0s68]::-webkit-scrollbar {
    width: 6px;
}

.modal-content[b-0eyw5x0s68]::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.modal-content[b-0eyw5x0s68]::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 3px;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/CustomFoodList.razor.rz.scp.css */
/* CustomFoodsList.razor.css */
.custom-foods-container[b-9qgdfse3xn] {
    margin-bottom: 1.5rem;
}

/* Quick Access Section */
.quick-access-scroll[b-9qgdfse3xn] {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0.25rem 0;
    scrollbar-width: thin;
    -ms-overflow-style: none;
}

.quick-access-scroll[b-9qgdfse3xn]::-webkit-scrollbar {
    height: 4px;
}

.quick-access-scroll[b-9qgdfse3xn]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.quick-access-scroll[b-9qgdfse3xn]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
}

.quick-access-item[b-9qgdfse3xn] {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #fff3e6;
    border: 1px solid #ffe0b2;
    border-radius: 2rem;
    color: #f08a12;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-access-item:hover[b-9qgdfse3xn] {
    background-color: #ffe0b2;
}

.quick-access-item .brand-name[b-9qgdfse3xn] {
    color: #666;
    margin-left: 0.5rem;
    font-size: 0.8em;
}

.quick-access-more[b-9qgdfse3xn] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-access-more:hover[b-9qgdfse3xn] {
    background-color: #e9ecef;
}

/* Expanded Grid View */
.custom-foods-grid[b-9qgdfse3xn] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.food-card[b-9qgdfse3xn] {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.food-card:hover[b-9qgdfse3xn] {
    border-color: #f08a12;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.food-card-header[b-9qgdfse3xn] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.food-card-header i[b-9qgdfse3xn] {
    color: #f08a12;
    font-size: 0.875rem;
}

.food-card .food-name[b-9qgdfse3xn] {
    font-weight: 500;
    color: #212529;
}

.food-card .brand-name[b-9qgdfse3xn] {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.food-card .nutrition-info[b-9qgdfse3xn] {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #495057;
    margin-bottom: 0.25rem;
}

/* Custom Foods Badge */
.custom-foods-badge[b-9qgdfse3xn] {
    color: #f08a12;
    background-color: #fff3e6;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-foods-grid[b-9qgdfse3xn] {
        grid-template-columns: 1fr;
    }

    .food-card[b-9qgdfse3xn] {
        padding: 0.75rem;
    }
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/CustomFoodNutritionForm.razor.rz.scp.css */
/* CustomFoodNutritionForm.razor.css */

h3[b-kjh1jqy6a6], h4[b-kjh1jqy6a6] {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[b-kjh1jqy6a6] .mud-input {
    margin-bottom: 0.5rem;
}

[b-kjh1jqy6a6] .validation-message {
    color: #F44336; /* MudBlazor default error color */
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

@media (max-width: 600px) {
    [b-kjh1jqy6a6] .mud-grid {
        margin-top: 1rem;
    }

    [b-kjh1jqy6a6] .mud-grid-item {
        padding: 0.5rem;
    }
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/DailyMealPlanner.razor.rz.scp.css */
/* Quick Add Section Styles */
.quick-add-section[b-u6in61agci] {
    margin-bottom: 2rem;
}

.quick-add-section .card[b-u6in61agci] {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: box-shadow 0.3s ease;
}

.quick-add-section .card:hover[b-u6in61agci] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quick-add-section .card-title[b-u6in61agci] {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.quick-add-section .form-control-lg[b-u6in61agci] {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.quick-add-section .input-group .btn[b-u6in61agci] {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.quick-add-section .alert-info[b-u6in61agci] {
    background-color: #e3f2fd;
    border: 1px solid #90caf9;
    color: #1565c0;
}

.quick-add-section .btn-outline-secondary[b-u6in61agci] {
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.9rem;
}

.quick-add-section .btn-outline-secondary:hover[b-u6in61agci] {
    background-color: #f5f5f5;
}

/* Weight Button Styles */
.weight-btn[b-u6in61agci] {
    padding: 0.5rem 1rem;
    margin: 1rem;
    font-size: 1rem;
}

.weight-pulse[b-u6in61agci] {
    animation: pulse-b-u6in61agci 2s infinite;
}

@keyframes pulse-b-u6in61agci {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.weight-btn:disabled[b-u6in61agci] {
    opacity: 0.65;
    cursor: not-allowed;
}

[b-u6in61agci] .mud-success-text {
    font-weight: 500;
    position: relative;
}

[b-u6in61agci] .mud-success-text::after {
    content: '•';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #198754;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/DietQuestionnaire.razor.rz.scp.css */
.btn-outline-primary[b-squ1sqnr7s] {
    color: #007bff;
    border-color: #007bff;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover[b-squ1sqnr7s], .btn-outline-primary:focus[b-squ1sqnr7s] {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    transform: translateY(-2px);
}

.transition[b-squ1sqnr7s] {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .btn-lg[b-squ1sqnr7s] {
        font-size: 1rem;
        padding: 0.5rem 1rem !important;
    }
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/FoodSelection/FoodSelection.razor.rz.scp.css */
/* FoodSelection.razor.css */
/* Note: Design tokens are imported globally in _Layout.cshtml */
/* This file uses CSS variables defined in design-tokens.css */

[b-vvgjwt9bzs] .page-title {
    color: var(--fs-primary);
    font-weight: var(--fs-font-weight-medium);
    text-align: center;
    margin: var(--fs-spacing-4xl) auto var(--fs-spacing-3xl);
    font-size: var(--fs-font-size-2xl);
    line-height: var(--fs-line-height-normal);
    max-width: 800px;
}


/* Select2 Styling - Using shared classes from FoodSelection.shared.css */
[b-vvgjwt9bzs] .select2-wrapper {
    position: relative;
    width: 100%;
}

[b-vvgjwt9bzs] .select2-container {
    width: 100% !important;
    display: block;
}

[b-vvgjwt9bzs] .select2-container .select2-selection--multiple {
    min-height: var(--fs-input-height);
    border: 1px solid var(--fs-border-default);
    border-radius: var(--fs-radius-md);
    padding: var(--fs-spacing-xs) var(--fs-spacing-sm);
}

/* Food Tags Styling - Inheriting from shared styles */
[b-vvgjwt9bzs] .select2-selection__choice {
    background-color: var(--fs-primary-light) !important;
    border: 1px solid var(--fs-primary-border) !important;
    color: var(--fs-primary) !important;
    font-weight: var(--fs-font-weight-semibold);
    padding: var(--fs-tag-padding-y) var(--fs-tag-padding-x) !important;
    border-radius: var(--fs-radius-pill) !important;
    margin: var(--fs-spacing-xs) !important;
    animation: fs-tag-appear 0.3s ease-out;
    transition: var(--fs-transition-all);
    position: relative;
}

[b-vvgjwt9bzs] .select2-selection__choice:hover {
    background-color: var(--fs-primary-bg) !important;
    transform: translateY(-1px);
    box-shadow: var(--fs-shadow-sm);
}

[b-vvgjwt9bzs] .select2-selection__choice__remove {
    color: var(--fs-primary) !important;
    font-weight: bold;
    margin-right: var(--fs-spacing-sm) !important;
    font-size: 1.1rem;
    opacity: 0.7;
    transition: var(--fs-transition-fast);
}

[b-vvgjwt9bzs] .select2-selection__choice:hover .select2-selection__choice__remove {
    opacity: 1;
}

/* Animation now defined in shared styles as fs-tag-appear */

/* Custom Foods Badge */
[b-vvgjwt9bzs] .custom-foods-badge {
    color: var(--fs-accent);
    background-color: var(--fs-accent-light);
    padding: var(--fs-spacing-xs) var(--fs-spacing-md);
    border-radius: var(--fs-radius-pill);
    font-size: var(--fs-font-size-xs);
    display: inline-block;
}

/* Custom Food Section */
[b-vvgjwt9bzs] .custom-food-section {
    margin-top: 1rem;
    text-align: center;
}

/* Custom Food Button - Using accent color */
[b-vvgjwt9bzs] .custom-food-btn {
    background-color: var(--fs-accent);
    color: var(--fs-text-inverse);
    border: 2px solid var(--fs-accent);
    padding: var(--fs-button-padding-y) var(--fs-button-padding-x);
    border-radius: var(--fs-radius-pill);
    font-size: var(--fs-font-size-base);
    font-weight: var(--fs-font-weight-semibold);
    transition: var(--fs-transition-all);
    box-shadow: var(--fs-shadow-accent);
    display: inline-flex;
    align-items: center;
    gap: var(--fs-spacing-sm);
}

[b-vvgjwt9bzs] .custom-food-btn:hover {
    background-color: var(--fs-accent-hover);
    border-color: var(--fs-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(240, 138, 18, 0.3);
}

[b-vvgjwt9bzs] .custom-food-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(240, 138, 18, 0.2);
}

[b-vvgjwt9bzs] .custom-food-btn i {
    transition: transform 0.3s ease;
}

[b-vvgjwt9bzs] .custom-food-btn:hover .fa-plus {
    transform: rotate(90deg);
}

/* Bootstrap Tooltip Customization for Custom Food Button */
[b-vvgjwt9bzs] .tooltip {
    transition: opacity 0.15s ease-in-out !important;
}

[b-vvgjwt9bzs] .tooltip.show {
    opacity: 1;
}

[b-vvgjwt9bzs] .custom-food-btn + .tooltip .tooltip-inner {
    background-color: #495057;
    color: white;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    max-width: 250px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

[b-vvgjwt9bzs] .custom-food-btn + .tooltip .tooltip-arrow::before {
    border-top-color: #495057;
}


/* Calculate Button - Now using primary color */
[b-vvgjwt9bzs] .btn-calculate {
    background-color: var(--fs-primary);
    border-color: var(--fs-primary);
    font-weight: var(--fs-font-weight-medium);
    transition: var(--fs-transition-all);
    box-shadow: var(--fs-shadow-sm);
}

[b-vvgjwt9bzs] .btn-calculate:hover {
    background-color: var(--fs-primary-hover);
    border-color: var(--fs-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--fs-shadow-primary);
}

/* Excitement Text */
[b-vvgjwt9bzs] .excitement-text {
    color: var(--fs-text-secondary);
    margin-top: var(--fs-spacing-sm) !important;
    font-style: italic;
}


/* Quick Add Buttons */
[b-vvgjwt9bzs] .quick-add-section {
    padding-top: var(--fs-spacing-sm);
}

[b-vvgjwt9bzs] .quick-add-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--fs-spacing-sm);
}

[b-vvgjwt9bzs] .quick-add-btn {
    background-color: var(--fs-bg-secondary);
    border: 1px solid var(--fs-border-default);
    color: var(--fs-text-primary);
    padding: var(--fs-spacing-sm) var(--fs-spacing-md);
    border-radius: var(--fs-radius-pill);
    font-size: var(--fs-font-size-sm);
    font-weight: var(--fs-font-weight-medium);
    transition: var(--fs-transition-all);
    cursor: pointer;
    position: relative;
    padding-left: var(--fs-spacing-2xl);
}

[b-vvgjwt9bzs] .quick-add-btn::before {
    content: '+';
    position: absolute;
    left: 0.75rem;
    font-size: 1rem;
    font-weight: bold;
    color: #6c757d;
    transition: color 0.2s ease;
}

[b-vvgjwt9bzs] .quick-add-btn:hover {
    background-color: var(--fs-primary-light);
    border-color: var(--fs-primary);
    color: var(--fs-primary);
    transform: translateY(-1px);
    box-shadow: var(--fs-shadow-sm);
}

[b-vvgjwt9bzs] .quick-add-btn:hover::before {
    color: var(--fs-primary);
}

[b-vvgjwt9bzs] .quick-add-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(240, 138, 18, 0.1);
}

/* Serving Grid Styling */
[b-vvgjwt9bzs] .serving-grid {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--fs-border-default);
    border-radius: var(--fs-radius-md);
    overflow: hidden;
    background-color: var(--fs-bg-secondary);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

[b-vvgjwt9bzs] .serving-row {
    display: grid;
    grid-template-columns: 200px auto;
    padding: var(--fs-spacing-lg);
    background-color: var(--fs-bg-primary);
    border-bottom: 1px solid var(--fs-border-default);
    transition: var(--fs-transition-colors);
}

[b-vvgjwt9bzs] .serving-row:hover {
    background-color: var(--fs-bg-hover);
}

[b-vvgjwt9bzs] .serving-row:last-child {
    border-bottom: none;
}

[b-vvgjwt9bzs] .food-name {
    font-weight: var(--fs-font-weight-medium);
    color: var(--fs-text-primary);
    padding: var(--fs-spacing-sm) 0;
}

[b-vvgjwt9bzs] .serving-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--fs-spacing-md);
}

/* Loading State - Using shared styles */
[b-vvgjwt9bzs] .loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--fs-loading-overlay-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--fs-z-modal);
}

[b-vvgjwt9bzs] .loading-content {
    background: var(--fs-bg-primary);
    padding: var(--fs-spacing-2xl);
    border-radius: var(--fs-radius-md);
    box-shadow: var(--fs-shadow-md);
    display: flex;
    align-items: center;
    gap: var(--fs-spacing-lg);
}

/* Helper text styling */
[b-vvgjwt9bzs] .helper-text-desktop {
    font-size: var(--fs-font-size-sm);
    font-style: italic;
    color: var(--fs-text-secondary);
}

[b-vvgjwt9bzs] .helper-text-mobile {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Page title mobile */
    [b-vvgjwt9bzs] .page-title {
        font-size: var(--fs-font-size-xl);
        margin: var(--fs-spacing-2xl) auto var(--fs-spacing-3xl);
        padding: 0 var(--fs-spacing-lg);
    }
    
    /* Custom Food Button Mobile */
    [b-vvgjwt9bzs] .custom-food-btn {
        width: 100%;
        justify-content: center;
        padding: var(--fs-spacing-md) var(--fs-spacing-2xl);
        font-size: var(--fs-font-size-lg);
    }
    
    [b-vvgjwt9bzs] .serving-row {
        grid-template-columns: 1fr;
        padding: var(--fs-spacing-md);
    }

    [b-vvgjwt9bzs] .serving-controls {
        grid-template-columns: 1fr 1fr;
        gap: var(--fs-spacing-sm);
        padding-top: var(--fs-spacing-sm);
    }

    [b-vvgjwt9bzs] .food-name {
        margin-bottom: 0;
        padding: var(--fs-spacing-xs) 0;
    }

    [b-vvgjwt9bzs] .form-select {
        font-size: 14px;
        padding: 6px 8px;
    }
    
    
    
    /* Hide desktop helper text on mobile */
    [b-vvgjwt9bzs] .helper-text-desktop {
        display: none !important;
    }
    
    /* Show and style mobile helper text */
    [b-vvgjwt9bzs] .helper-text-mobile {
        display: block !important;
        font-size: var(--fs-font-size-sm);
        color: var(--fs-text-primary);
        background-color: var(--fs-primary-light);
        border: 1px solid var(--fs-primary);
        padding: var(--fs-spacing-md);
        border-radius: var(--fs-radius-sm);
        margin: var(--fs-spacing-sm) 0 var(--fs-spacing-lg);
        text-align: center;
        font-weight: var(--fs-font-weight-medium);
    }
    
    [b-vvgjwt9bzs] .helper-text-mobile i {
        color: var(--fs-primary);
    }
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/FoodServingSelections.razor.rz.scp.css */
/* _content/Nutrition.Web.External.UI.Interactive/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-487hlzfy6k] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-487hlzfy6k] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/MainPageIntro.razor.rz.scp.css */
.intro-card[b-7jnk2kmb7n] {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem 3rem;
    overflow: hidden;
    transition: all 0.3s ease;
}



/* Video Section Styles */
.video-section[b-7jnk2kmb7n] {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: fadeInUp-b-7jnk2kmb7n 0.8s ease-out;
}

@keyframes fadeInUp-b-7jnk2kmb7n {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .video-section[b-7jnk2kmb7n] {
        animation: none;
    }
    
    .video-container[b-7jnk2kmb7n],
    .intro-video[b-7jnk2kmb7n],
    .video-container[b-7jnk2kmb7n]::before {
        transition: none;
    }
    
    .video-container:hover[b-7jnk2kmb7n] {
        transform: none;
    }
    
    .intro-video:hover[b-7jnk2kmb7n] {
        transform: none;
    }
}

.video-container[b-7jnk2kmb7n] {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 1rem auto 2rem;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.video-container[b-7jnk2kmb7n]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 138, 18, 0.1) 0%, rgba(245, 167, 66, 0.05) 100%);
    border-radius: 1rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.video-container:hover[b-7jnk2kmb7n]::before {
    opacity: 1;
}

.video-container:hover[b-7jnk2kmb7n] {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.video-container .ratio[b-7jnk2kmb7n] {
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #000;
    position: relative;
    z-index: 2;
}

.video-wrapper[b-7jnk2kmb7n] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.intro-video[b-7jnk2kmb7n] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 0.75rem;
    background-color: #000;
    z-index: 2;
    pointer-events: auto;
}

.video-poster-overlay[b-7jnk2kmb7n] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0.75rem;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.video-poster-overlay.hidden[b-7jnk2kmb7n] {
    opacity: 0 !important;
    pointer-events: none;
}

.poster-image[b-7jnk2kmb7n] {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
    opacity: 0.8;
}



.intro-video:focus[b-7jnk2kmb7n] {
    outline: 3px solid rgba(240, 138, 18, 0.5);
    outline-offset: 2px;
}

/* Enhanced Feature List Styles */
.feature-list[b-7jnk2kmb7n] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item[b-7jnk2kmb7n] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    transition: transform 0.2s ease-in-out;
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
}

.feature-item:hover[b-7jnk2kmb7n] {
    transform: translateY(-3px);
}

.feature-icon[b-7jnk2kmb7n] {
    display: none;
}

.feature-content[b-7jnk2kmb7n] {
    text-align: center;
}

.feature-content h2[b-7jnk2kmb7n] {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.feature-content p[b-7jnk2kmb7n] {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* CTA Button */
.cta-container[b-7jnk2kmb7n] {
    text-align: center;
}

.cta-button[b-7jnk2kmb7n] {
    background: linear-gradient(to right, #f08a12, #f5a742);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem; /* Increased height by ~20% */
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(240, 138, 18, 0.3); /* Enhanced subtle shadow */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover[b-7jnk2kmb7n], .cta-button:focus[b-7jnk2kmb7n] {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(240, 138, 18, 0.35);
}

.cta-button:active[b-7jnk2kmb7n] {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(240, 138, 18, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .intro-card[b-7jnk2kmb7n] {
        padding: 2.5rem;
    }

    .video-container[b-7jnk2kmb7n] {
        max-width: 100%;
        padding: 0.4rem;
    }

    .video-section[b-7jnk2kmb7n] {
        margin-bottom: 2.5rem;
    }

    .feature-item[b-7jnk2kmb7n] {
        gap: 1.25rem;
    }

}

@media (max-width: 768px) {
    .intro-card[b-7jnk2kmb7n] {
        padding: 1rem 1.5rem;
    }

    .video-container[b-7jnk2kmb7n] {
        width: 100%;
        margin: 1rem auto 2rem;
        padding: 0.3rem;
        border-radius: 0.75rem;
    }

    .video-container .ratio[b-7jnk2kmb7n] {
        border-radius: 0.5rem;
    }

    .video-section[b-7jnk2kmb7n] {
        margin-bottom: 1.5rem;
    }

    .feature-content h3[b-7jnk2kmb7n] {
        font-size: 1.15rem;
    }

    .feature-content p[b-7jnk2kmb7n] {
        font-size: 0.95rem;
    }

    .cta-button[b-7jnk2kmb7n] {
        width: 100%;
        padding: 1.2rem 1.5rem; /* Increased height by ~20% */
    }
}

@media (max-width: 576px) {
    .intro-card[b-7jnk2kmb7n] {
        padding: 0.75rem 1rem;
    }

    .video-container[b-7jnk2kmb7n] {
        width: 100%;
        margin: 0.5rem auto 1.5rem;
        padding: 0.25rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .video-container .ratio[b-7jnk2kmb7n] {
        border-radius: 0.375rem;
    }

    .video-container:hover[b-7jnk2kmb7n] {
        transform: none;
    }

    .intro-video:hover[b-7jnk2kmb7n] {
        transform: none;
    }

    .video-section[b-7jnk2kmb7n] {
        margin-bottom: 1rem;
    }

    .feature-item[b-7jnk2kmb7n] {
        padding: 1rem 1.5rem;
        max-width: 100%;
    }
    
    .feature-content h2[b-7jnk2kmb7n] {
        font-size: 1.1rem;
    }
    
    .feature-content p[b-7jnk2kmb7n] {
        font-size: 0.9rem;
    }

}

/* Enhanced Hero Section */
.hero-section[b-7jnk2kmb7n] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

.hero-title[b-7jnk2kmb7n] {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle[b-7jnk2kmb7n] {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .hero-title[b-7jnk2kmb7n] {
        font-size: 2.5rem;
    }
    
    .hero-subtitle[b-7jnk2kmb7n] {
        font-size: 1.2rem;
    }
}

/* Benefits Section */
.benefits-section[b-7jnk2kmb7n] {
    background: #f8f9fa;
    padding: 4rem 0;
}

.benefit-card[b-7jnk2kmb7n] {
    background: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    min-height: 250px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.benefit-card:hover[b-7jnk2kmb7n] {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.benefit-card i[b-7jnk2kmb7n] {
    margin-bottom: 1rem;
}

.benefit-card h3[b-7jnk2kmb7n] {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.5;
}

.benefit-card p[b-7jnk2kmb7n] {
    color: #6c757d;
    line-height: 1.6;
}

/* Video section styling */
.video-section[b-7jnk2kmb7n] {
    margin-bottom: 3rem;
}

.video-container[b-7jnk2kmb7n] {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


/* CTA section */
.cta-container[b-7jnk2kmb7n] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
}

/* CTA subtext styling for better readability */
.cta-subtext[b-7jnk2kmb7n] {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.025em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button[b-7jnk2kmb7n] {
    background: white;
    color: #667eea;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover[b-7jnk2kmb7n] {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    color: #5a67d8;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .feature-item[b-7jnk2kmb7n] {
        flex-direction: column;
        text-align: center;
    }
    
    
    .cta-container[b-7jnk2kmb7n] {
        padding: 2rem 1rem;
    }
    
    .cta-button[b-7jnk2kmb7n] {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/MealCombinations.razor.rz.scp.css */
/* Animation for pulse effect */
@keyframes pulse-b-6dsqfa968g {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

.pulse-animation[b-6dsqfa968g] {
    animation: pulse-b-6dsqfa968g 2s ease-in-out infinite;
}

/* Button hover effects */
.hover-fill[b-6dsqfa968g] {
    transition: all 0.3s ease;
    border-width: 2px !important;
}

.hover-fill:hover[b-6dsqfa968g] {
    background-color: white !important;
    color: #FFA726 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 167, 38, 0.3) !important;
}

/* Macro badge colors */
.calories-badge[b-6dsqfa968g] {
    background-color: #FF6B35 !important;
    color: white !important;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
}

.protein-badge[b-6dsqfa968g] {
    background-color: #4A90E2 !important;
    color: white !important;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
}

.fat-badge[b-6dsqfa968g] {
    background-color: #27AE60 !important;
    color: white !important;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
}

.carbs-badge[b-6dsqfa968g] {
    background-color: #9B59B6 !important;
    color: white !important;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
}

/* Grid pattern background */
.grid-pattern[b-6dsqfa968g] {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 40 0 L 0 0 0 40' fill='none' stroke='%23f0f0f0' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)' /%3E%3C/svg%3E");
    background-position: center;
    background-size: 40px 40px;
}

/* Orange text color */
.text-orange[b-6dsqfa968g] {
    color: #FF6B35 !important;
}

/* Hover background for excluded foods */
.hover-bg[b-6dsqfa968g] {
    transition: background-color 0.2s ease;
    cursor: default;
}

.hover-bg:hover[b-6dsqfa968g] {
    background-color: rgba(0, 0, 0, 0.03);
}

/* Card hover effects */
.card[b-6dsqfa968g] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover[b-6dsqfa968g] {
    transform: scale(1.01);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08) !important;
}

/* Subtle elevation for cards */
.elevation-subtle[b-6dsqfa968g] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04) !important;
}

/* Enhanced spacing */
.card-body-spacious[b-6dsqfa968g] {
    padding: 2rem !important;
}

/* Typography improvements */
.section-title[b-6dsqfa968g] {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px;
}

.text-secondary-light[b-6dsqfa968g] {
    color: #6c757d !important;
    opacity: 0.8;
}

/* Gradient border effect */
.gradient-border[b-6dsqfa968g] {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.gradient-border[b-6dsqfa968g]::before {
    content: '';
    position: absolute;
    top: -2px; right: -2px; bottom: -2px; left: -2px;
    background: linear-gradient(135deg, #4A90E2 0%, #9B59B6 100%);
    border-radius: 16px;
    z-index: -1;
}

/* Disable hover effects for gradient border cards */
.gradient-border.card:hover[b-6dsqfa968g] {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04) !important;
}

/* Global styles for meal items inside gradient border - using ::deep to pierce component boundaries */
[b-6dsqfa968g] .gradient-border .meal-item-card {
    background-color: rgba(255, 255, 255, 0.95) !important;
}

[b-6dsqfa968g] .gradient-border .meal-item-card:hover {
    background-color: rgba(255, 255, 255, 1) !important;
    border-color: #E0E0E0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

/* Smooth transitions */
*[b-6dsqfa968g] {
    transition: color 0.2s ease, background-color 0.2s ease;
}

/* Responsive macro badges */
@media (max-width: 768px) {
    .calories-badge[b-6dsqfa968g], .protein-badge[b-6dsqfa968g], .fat-badge[b-6dsqfa968g], .carbs-badge[b-6dsqfa968g] {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Food item formatting - keeping these as they might be used elsewhere */
.food-item-line[b-6dsqfa968g] {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #333;
}

.food-bullet[b-6dsqfa968g] {
    width: 6px;
    height: 6px;
    background-color: #666;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Text color utilities for macro targets */
.text-purple[b-6dsqfa968g] {
    color: #9B59B6 !important;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/MealItem.razor.rz.scp.css */
/* Meal-specific styles - macro badge colors are in macro-badges.css */

/* Ensure badges have proper sizing in meal items */
.meal-macro-badges[b-43ugh0r680] {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    justify-content: flex-end;
    margin-bottom: 1rem;
    width: 100%;
}

.meal-macro-badges .badge[b-43ugh0r680] {
    border-radius: 8px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.meal-macro-badges .badge:hover[b-43ugh0r680] {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
}

/* Button styles */
.meal-select-button[b-43ugh0r680] {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.meal-details-toggle[b-43ugh0r680] {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.meal-details-toggle:hover[b-43ugh0r680] {
    text-decoration: underline;
}

/* Responsive adjustments for meal badges container */
@media (max-width: 1400px) {
    .meal-macro-badges[b-43ugh0r680] {
        gap: 5px;
    }
}

@media (max-width: 1200px) {
    .meal-macro-badges[b-43ugh0r680] {
        gap: 4px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .meal-macro-badges[b-43ugh0r680] {
        gap: 3px;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 576px) {
    .meal-macro-badges[b-43ugh0r680] {
        gap: 2px;
        margin-bottom: 0.5rem;
    }
}

/* Fix alignment issues on mobile */
@media (max-width: 767px) {
    .meal-item-mobile-align[b-43ugh0r680] {
        text-align: left !important;
    }
    
    .meal-macro-badges[b-43ugh0r680] {
        justify-content: flex-start !important;
        margin-top: 0.5rem;
    }
}

/* Food name styling in nutrition facts view */
.meal-food-name[b-43ugh0r680] {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    display: inline-block;
    margin-bottom: 0.25rem;
}

/* Larger screens - make food names bigger */
@media (min-width: 992px) {
    .meal-food-name[b-43ugh0r680] {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 1200px) {
    .meal-food-name[b-43ugh0r680] {
        font-size: 1.35rem;
    }
}

@media (min-width: 1400px) {
    .meal-food-name[b-43ugh0r680] {
        font-size: 1.5rem;
    }
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/MealsList.razor.rz.scp.css */
/* Meal item card styles */
.meal-item-card[b-txb2ju40kq] {
    border: 1px solid #e0e0e0 !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    margin-bottom: 1.5rem !important;
    transition: all 0.2s ease;
}

.meal-item-card:hover[b-txb2ju40kq] {
    border-color: #4A90E2 !important;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.1) !important;
}

.meal-option-list[b-txb2ju40kq] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.meal-option-list li[b-txb2ju40kq] {
    background: transparent !important;
    border: none !important;
    padding: 1rem 0 !important;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/ModalComponent.razor.rz.scp.css */
.modal-dialog-centered[b-f3evy2cvw8] {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/NutrientTotal.razor.rz.scp.css */
/* Nutrient Total Styles */
.nutrient-total[b-hto15g2y51] {
    font-size: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.nutrient-total .nutrient-value[b-hto15g2y51] {
    font-weight: bold;
    margin-right: 4px;
}

.nutrient-total i[b-hto15g2y51],
.nutrient-total-compact i[b-hto15g2y51] {
    cursor: help;
    margin-left: 4px;
}

/* Compact Icon Styles */
.nutrient-total-compact[b-hto15g2y51] {
    font-size: 0.9rem;
    font-weight: bold;
}

.nutrient-total-compact .compact-icon[b-hto15g2y51] {
    font-size: 0.7rem;
    vertical-align: super;
    margin-left: 2px;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/NutritionFacts/NutritionFactsResult.razor.rz.scp.css */
.nutrition-facts-display .nutrition-facts-table[b-76ypq84p0j] {
    font-family: Arial, sans-serif;
}

.nutrient-row[b-76ypq84p0j] {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
    border-bottom: 1px solid #f0f0f0;
}

.nutrient-row.small[b-76ypq84p0j] {
    font-size: 0.875rem;
}

.nutrient-row.indent-1[b-76ypq84p0j] {
    padding-left: 20px;
}

.nutrient-row.indent-2[b-76ypq84p0j] {
    padding-left: 40px;
}

.nutrient-label[b-76ypq84p0j] {
    font-weight: 500;
}

.nutrient-value[b-76ypq84p0j] {
    font-weight: 400;
}

.calories-section h5[b-76ypq84p0j] {
    font-weight: 700;
    margin: 0;
}

.serving-info[b-76ypq84p0j] {
    font-size: 0.95rem;
}

.vitamins-minerals-section[b-76ypq84p0j],
.additional-nutrients-section[b-76ypq84p0j] {
    margin-top: 10px;
}

.metadata-section[b-76ypq84p0j] {
    margin-top: 10px;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/NutritionFacts/ProductDataValidator.razor.rz.scp.css */
.product-data-validator[b-flbrca9khs] {
    max-height: 90vh;
    overflow-y: auto;
}

/* Nutrition Summary Panel */
.nutrition-summary-panel[b-flbrca9khs] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
    margin: -1rem -1rem 1rem -1rem;
}

.nutrition-summary-panel.border-warning[b-flbrca9khs] {
    border-color: #ffc107;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

.nutrition-summary-panel.border-success[b-flbrca9khs] {
    border-color: #28a745;
}

.summary-header[b-flbrca9khs] {
    margin-bottom: 1rem;
    text-align: center;
}

.summary-header h6[b-flbrca9khs] {
    color: #212529;
    font-weight: 600;
}

/* Nutrition Grid */
.summary-grid[b-flbrca9khs] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.nutrient-item[b-flbrca9khs] {
    background: white;
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease;
}

.nutrient-item.has-value[b-flbrca9khs] {
    border-color: #28a745;
    background: #f0fff4;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.15);
}

.nutrient-label[b-flbrca9khs] {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.nutrient-value[b-flbrca9khs] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
}

.nutrient-item.has-value .nutrient-value[b-flbrca9khs] {
    color: #28a745;
}

/* Compact view for nutrition fields */
.compact-nutrition-view .mb-2:not(.has-user-input)[b-flbrca9khs] {
    display: none;
}

.compact-nutrition-view .mb-2 input:not(:placeholder-shown)[b-flbrca9khs] {
    border-color: #28a745;
    background-color: #f0fff4;
}

/* Enhanced form inputs */
.form-control:focus[b-flbrca9khs] {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control:not(:placeholder-shown)[b-flbrca9khs] {
    border-color: #28a745;
    background-color: #f8fff9;
}

/* Modal adjustments */
[b-flbrca9khs] .modal-body {
    padding: 0;
}

[b-flbrca9khs] .modal-body > .product-data-validator {
    padding: 1rem;
}

/* Extraction info alert improvements */
.alert[b-flbrca9khs] {
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .summary-grid[b-flbrca9khs] {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .nutrient-item[b-flbrca9khs] {
        padding: 0.5rem;
    }
    
    .nutrient-value[b-flbrca9khs] {
        font-size: 1.1rem;
    }
    
    .nutrition-summary-panel[b-flbrca9khs] {
        position: relative;
        margin: 0 0 1rem 0;
    }
}

/* Action buttons improvements */
.btn-group-custom[b-flbrca9khs] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Loading animation for auto-calculate */
.btn-outline-info:active[b-flbrca9khs] {
    transform: scale(0.95);
}

/* Visual feedback for low confidence fields */
.low-confidence-field[b-flbrca9khs] {
    border-color: #ffc107 !important;
    background-color: #fff8e1 !important;
}

/* Highlight extracted values */
@keyframes highlight-pulse-b-flbrca9khs {
    0% {
        background-color: #fff3cd;
    }
    50% {
        background-color: #ffeaa7;
    }
    100% {
        background-color: #fff3cd;
    }
}

.extracted-value[b-flbrca9khs] {
    animation: highlight-pulse-b-flbrca9khs 2s ease-in-out;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/NutritionFacts/ProductImageScanner.razor.rz.scp.css */
/* Upload Area Styles */
.upload-area[b-qmyamh312l] {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-area:hover[b-qmyamh312l] {
    border-color: #007bff;
    background-color: #f8f9fa;
}

.upload-area.drag-over[b-qmyamh312l] {
    border-color: #28a745;
    background-color: #e8f5e9;
}

.upload-label[b-qmyamh312l] {
    cursor: pointer;
    color: #495057;
    width: 100%;
    margin: 0;
}

/* Image Preview Styles */
.image-preview img[b-qmyamh312l] {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.image-info[b-qmyamh312l] {
    padding: 5px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Card Body Adjustments */
.card-body[b-qmyamh312l] {
    padding-bottom: 2rem;
}

/* Ensure buttons are always visible */
.product-image-scanner .btn[b-qmyamh312l] {
    z-index: 10;
    position: relative;
}

/* Action Buttons Container */
.mt-3.mb-4.d-flex.gap-2[b-qmyamh312l] {
    background-color: #f8f9fa;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 15px !important;
    margin-bottom: 25px !important;
}

/* Modern minimal design for extraction results */
.extraction-results-overlay[b-qmyamh312l] {
    position: relative;
    margin-top: 1rem;
    animation: slideInUp-b-qmyamh312l 0.3s ease-out;
}

.extraction-results-card[b-qmyamh312l] {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.extraction-results-card:hover[b-qmyamh312l] {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.results-header[b-qmyamh312l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.status-indicator[b-qmyamh312l] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #198754;
    font-weight: 600;
}

.status-indicator i[b-qmyamh312l] {
    font-size: 1.2rem;
}

.confidence-badge[b-qmyamh312l] {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.confidence-excellent[b-qmyamh312l] {
    background: linear-gradient(135deg, #198754, #20c997);
}

.confidence-good[b-qmyamh312l] {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
}

.confidence-fair[b-qmyamh312l] {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
}

.confidence-low[b-qmyamh312l] {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.confidence-unknown[b-qmyamh312l] {
    background: linear-gradient(135deg, #6c757d, #adb5bd);
}

.nutrition-summary[b-qmyamh312l] {
    margin-bottom: 1.5rem;
}

.product-info[b-qmyamh312l] {
    margin-bottom: 1rem;
}

.product-info h6[b-qmyamh312l] {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
}

.product-info .brand[b-qmyamh312l] {
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
}

.macro-grid[b-qmyamh312l] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.macro-item[b-qmyamh312l] {
    text-align: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.macro-item:hover[b-qmyamh312l] {
    border-color: #0d6efd;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.macro-value[b-qmyamh312l] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 0.25rem;
}

.macro-label[b-qmyamh312l] {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.serving-info[b-qmyamh312l] {
    text-align: center;
    font-size: 0.875rem;
    color: #6c757d;
    background: rgba(13, 110, 253, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.action-buttons[b-qmyamh312l] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.action-buttons .btn[b-qmyamh312l] {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
    border: 2px solid;
}

.btn-apply[b-qmyamh312l] {
    background: linear-gradient(135deg, #198754, #20c997);
    border-color: #198754;
    flex: 1;
    min-width: 140px;
}

.btn-apply:hover[b-qmyamh312l] {
    background: linear-gradient(135deg, #157347, #1a9b72);
    border-color: #157347;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(25, 135, 84, 0.3);
}

.btn-details[b-qmyamh312l] {
    border-color: #6c757d;
    color: #6c757d;
    background: white;
}

.btn-details:hover[b-qmyamh312l] {
    background: #6c757d;
    color: white;
    transform: translateY(-1px);
}

.btn-retry[b-qmyamh312l] {
    border-color: #fd7e14;
    color: #fd7e14;
    background: white;
}

.btn-retry:hover[b-qmyamh312l] {
    background: #fd7e14;
    color: white;
    border-color: #fd7e14;
    transform: translateY(-1px);
}

/* Animation for slide-in effect */
@keyframes slideInUp-b-qmyamh312l {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .extraction-results-card[b-qmyamh312l] {
        padding: 1rem;
    }
    
    .macro-grid[b-qmyamh312l] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .action-buttons[b-qmyamh312l] {
        flex-direction: column;
    }
    
    .action-buttons .btn[b-qmyamh312l] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .results-header[b-qmyamh312l] {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .macro-grid[b-qmyamh312l] {
        grid-template-columns: 1fr 1fr;
    }
    
    .macro-value[b-qmyamh312l] {
        font-size: 1.25rem;
    }
}

/* Clean Extraction Results Styles */
.extraction-results-clean[b-qmyamh312l] {
    animation: fadeInUp-b-qmyamh312l 0.5s ease-out;
    padding: 0;
}

.results-header-clean[b-qmyamh312l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #dee2e6;
}

.status-section[b-qmyamh312l] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-icon[b-qmyamh312l] {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #198754, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.status-text h5[b-qmyamh312l] {
    margin: 0;
    color: #212529;
    font-weight: 600;
}

.status-text small[b-qmyamh312l] {
    color: #6c757d;
}

.confidence-badge-clean[b-qmyamh312l] {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    text-align: center;
}

.product-card[b-qmyamh312l] {
    background: white;
    padding: 2rem;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}

.product-header[b-qmyamh312l] {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #f1f3f4;
    padding-bottom: 1.5rem;
}

.product-name[b-qmyamh312l] {
    margin: 0 0 0.5rem 0;
    color: #212529;
    font-weight: 700;
    font-size: 1.75rem;
}

.product-brand[b-qmyamh312l] {
    display: block;
    color: #6c757d;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.serving-size[b-qmyamh312l] {
    color: #495057;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    display: inline-block;
}

.nutrition-grid[b-qmyamh312l] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.nutrition-item[b-qmyamh312l] {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nutrition-item[b-qmyamh312l]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.nutrition-item.calories[b-qmyamh312l]::before {
    background: linear-gradient(90deg, #fd7e14, #ffc107);
}

.nutrition-item.fat[b-qmyamh312l]::before {
    background: linear-gradient(90deg, #dc3545, #fd7e14);
}

.nutrition-item.carbs[b-qmyamh312l]::before {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
}

.nutrition-item.protein[b-qmyamh312l]::before {
    background: linear-gradient(90deg, #198754, #20c997);
}

.nutrition-item:hover[b-qmyamh312l] {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.nutrition-item:hover[b-qmyamh312l]::before {
    height: 6px;
}

.nutrition-value[b-qmyamh312l] {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.nutrition-item.calories .nutrition-value[b-qmyamh312l] {
    color: #fd7e14;
}

.nutrition-item.fat .nutrition-value[b-qmyamh312l] {
    color: #dc3545;
}

.nutrition-item.carbs .nutrition-value[b-qmyamh312l] {
    color: #0d6efd;
}

.nutrition-item.protein .nutrition-value[b-qmyamh312l] {
    color: #198754;
}

.nutrition-value .unit[b-qmyamh312l] {
    font-size: 1.25rem;
    font-weight: 500;
    color: #6c757d;
    margin-left: 0.25rem;
}

.nutrition-label[b-qmyamh312l] {
    font-size: 1rem;
    color: #495057;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-section[b-qmyamh312l] {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
    border: 1px solid #dee2e6;
    border-top: none;
    text-align: center;
}

.btn-primary-action[b-qmyamh312l] {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 1rem;
    min-width: 200px;
    border: none;
    background: linear-gradient(135deg, #198754, #20c997);
    transition: all 0.3s ease;
}

.btn-primary-action:hover[b-qmyamh312l] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 135, 84, 0.4);
    background: linear-gradient(135deg, #157347, #1a9b72);
}

.secondary-actions[b-qmyamh312l] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-actions .btn[b-qmyamh312l] {
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.secondary-actions .btn:hover[b-qmyamh312l] {
    transform: translateY(-1px);
}

/* Animation for fade in */
@keyframes fadeInUp-b-qmyamh312l {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for clean results */
@media (max-width: 768px) {
    .results-header-clean[b-qmyamh312l] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }
    
    .product-card[b-qmyamh312l] {
        padding: 1.5rem;
    }
    
    .nutrition-grid[b-qmyamh312l] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .nutrition-item[b-qmyamh312l] {
        padding: 1rem;
    }
    
    .nutrition-value[b-qmyamh312l] {
        font-size: 2rem;
    }
    
    .product-name[b-qmyamh312l] {
        font-size: 1.5rem;
    }
    
    .action-section[b-qmyamh312l] {
        padding: 1.5rem;
    }
    
    .secondary-actions[b-qmyamh312l] {
        flex-direction: column;
    }
    
    .secondary-actions .btn[b-qmyamh312l] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nutrition-grid[b-qmyamh312l] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .nutrition-value[b-qmyamh312l] {
        font-size: 1.75rem;
    }
    
    .product-name[b-qmyamh312l] {
        font-size: 1.25rem;
    }
}

/* Debug information styling */
.debug-info[b-qmyamh312l] {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    background: #f8f9fa !important;
    border: 1px dashed #dee2e6 !important;
    border-radius: 4px;
    opacity: 0.8;
}

/* Compact Extraction Results Styles */
.extraction-results-compact[b-qmyamh312l] {
    animation: fadeInUp-b-qmyamh312l 0.3s ease-out;
}

.results-header-compact[b-qmyamh312l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    border: 1px solid #dee2e6;
}

.results-header-compact .status-section[b-qmyamh312l] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.results-header-compact .status-icon[b-qmyamh312l] {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #198754, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.results-header-compact .status-text h6[b-qmyamh312l] {
    margin: 0;
    color: #212529;
    font-weight: 600;
    font-size: 1rem;
}

.results-header-compact .status-text small[b-qmyamh312l] {
    color: #6c757d;
    font-size: 0.8rem;
}

.confidence-badge-compact[b-qmyamh312l] {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    color: white;
    text-align: center;
}

.action-section-compact[b-qmyamh312l] {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

/* Responsive adjustments for compact results */
@media (max-width: 768px) {
    .results-header-compact[b-qmyamh312l] {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 0.75rem;
    }
    
    .action-section-compact[b-qmyamh312l] {
        flex-direction: column;
        padding: 0.75rem;
    }
    
    .action-section-compact .btn[b-qmyamh312l] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .results-header-compact .status-icon[b-qmyamh312l] {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .confidence-badge-compact[b-qmyamh312l] {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/OptimizedMealPlanner.razor.rz.scp.css */
/* ============================================
   Quick Add Section - Minimalist Design
   ============================================ */
/* Note: Design tokens are imported globally in _Layout.cshtml */
/* This file uses CSS variables defined in design-tokens.css */

.quick-add-container[b-gabdcbsyue] {
    margin: 0 0 var(--fs-spacing-2xl) 0;
    padding: 0;
}

/* Primary Input Row */
.quick-add-primary[b-gabdcbsyue] {
    display: flex;
    flex-direction: column;
    gap: var(--fs-spacing-md);
}

.quick-add-input-group[b-gabdcbsyue] {
    display: flex;
    gap: var(--fs-spacing-md);
    align-items: center;
    background: var(--fs-bg-primary) !important;
    border: 2px solid var(--fs-border-default);
    border-radius: var(--fs-radius-lg);
    padding: var(--fs-spacing-xs);
    transition: var(--fs-transition-all);
    position: relative;
}

.quick-add-input-group:focus-within[b-gabdcbsyue] {
    border-color: var(--fs-border-focus);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Main Input Field */
.quick-add-input[b-gabdcbsyue] {
    flex: 1;
    border: none;
    outline: none;
    padding: var(--fs-spacing-md) var(--fs-spacing-lg);
    font-size: var(--fs-font-size-base);
    font-weight: var(--fs-font-weight-normal);
    font-family: var(--fs-font-family);
    background: transparent !important;
    color: var(--fs-text-primary) !important;
}

.quick-add-input[b-gabdcbsyue]::placeholder {
    color: var(--fs-text-secondary) !important;
    font-weight: var(--fs-font-weight-normal);
}

/* Meal Selector Wrapper */
.meal-selector-wrapper[b-gabdcbsyue] {
    display: flex;
    align-items: center;
    gap: var(--fs-spacing-xs);
    position: relative;
}

/* Meal Selector Label */
.meal-selector-label[b-gabdcbsyue] {
    font-size: var(--fs-font-size-sm);
    font-weight: var(--fs-font-weight-bold);
    color: var(--fs-primary-active) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    white-space: nowrap;
}

/* Meal Selector - HIGHLY VISIBLE */
.quick-add-meal-select[b-gabdcbsyue] {
    /* Strong visible border */
    border: 2px solid var(--fs-primary) !important;
    border-radius: var(--fs-radius-md);
    outline: none;
    
    /* Distinct background color */
    background: linear-gradient(to bottom, var(--fs-primary-light), var(--fs-primary-bg)) !important;
    
    /* Clear text and spacing */
    padding: var(--fs-spacing-sm) 36px var(--fs-spacing-sm) var(--fs-spacing-md);
    font-size: var(--fs-font-size-base);
    color: var(--fs-primary-active) !important;
    cursor: pointer;
    font-weight: var(--fs-font-weight-semibold);
    min-width: 120px;
    
    /* Remove native dropdown arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    /* Custom dropdown arrow - more visible */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    
    /* Add shadow for depth */
    box-shadow: var(--fs-shadow-sm);
    
    /* Smooth transitions */
    transition: var(--fs-transition-all);
}

.quick-add-meal-select option[b-gabdcbsyue] {
    background: white !important;
    color: #1e40af !important;
    font-weight: 500;
    padding: 8px;
}

.quick-add-meal-select:hover[b-gabdcbsyue] {
    background: linear-gradient(to bottom, var(--fs-primary-bg), #bfdbfe) !important;
    border-color: var(--fs-primary-hover) !important;
    box-shadow: var(--fs-shadow-primary);
    transform: translateY(-1px);
}

.quick-add-meal-select:focus[b-gabdcbsyue] {
    background: linear-gradient(to bottom, var(--fs-primary-bg), #bfdbfe) !important;
    border-color: var(--fs-primary-hover) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2), var(--fs-shadow-primary);
}

/* Add Button - Prominent but Clean */
.quick-add-button[b-gabdcbsyue] {
    display: flex;
    align-items: center;
    gap: var(--fs-spacing-xs);
    padding: var(--fs-spacing-md) var(--fs-spacing-xl);
    background: var(--fs-primary) !important;
    color: var(--fs-text-inverse) !important;
    border: none;
    border-radius: var(--fs-radius-md);
    font-size: var(--fs-font-size-sm);
    font-weight: var(--fs-font-weight-semibold);
    cursor: pointer;
    transition: var(--fs-transition-all);
    white-space: nowrap;
}

.quick-add-button:disabled[b-gabdcbsyue] {
    background: var(--fs-bg-tertiary) !important;
    color: var(--fs-text-muted) !important;
    cursor: not-allowed;
}

.quick-add-button:not(:disabled):hover[b-gabdcbsyue] {
    background: var(--fs-primary-hover) !important;
    transform: translateY(-1px);
}

.quick-add-button:not(:disabled):active[b-gabdcbsyue] {
    transform: translateY(0);
}

.quick-add-button.active[b-gabdcbsyue] {
    background: var(--fs-primary) !important;
}

.button-icon[b-gabdcbsyue] {
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
}

.button-text[b-gabdcbsyue] {
    display: none;
}

/* Options - Subtle */
.quick-add-options[b-gabdcbsyue] {
    display: flex;
    padding: 0 var(--fs-spacing-xs);
}

.bypass-option[b-gabdcbsyue] {
    display: flex;
    align-items: center;
    gap: var(--fs-spacing-xs);
    cursor: pointer;
    font-size: var(--fs-font-size-sm);
    color: var(--fs-text-secondary);
    user-select: none;
}

.bypass-option input[type="checkbox"][b-gabdcbsyue] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    accent-color: #000;
}

.bypass-option:hover[b-gabdcbsyue] {
    color: var(--fs-text-primary);
}

/* Parsed Preview - Inline and Subtle */
.parsed-preview[b-gabdcbsyue] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--fs-spacing-sm) var(--fs-spacing-md);
    margin-top: var(--fs-spacing-sm);
    background: var(--fs-bg-secondary);
    border-radius: var(--fs-radius-sm);
    font-size: var(--fs-font-size-sm);
    color: var(--fs-text-secondary);
    animation: slideDown-b-gabdcbsyue var(--fs-transition-base);
}

.preview-text[b-gabdcbsyue] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.preview-clear[b-gabdcbsyue] {
    background: none;
    border: none;
    color: var(--fs-text-muted);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0 var(--fs-spacing-xs);
    transition: var(--fs-transition-colors);
}

.preview-clear:hover[b-gabdcbsyue] {
    color: var(--fs-text-primary);
}

/* Recent Foods - Minimal Pills */
.recent-foods[b-gabdcbsyue] {
    display: flex;
    gap: var(--fs-spacing-xs);
    margin-top: var(--fs-spacing-lg);
    padding: 0 2px;
    flex-wrap: wrap;
}

.recent-pill[b-gabdcbsyue] {
    padding: var(--fs-spacing-xs) var(--fs-spacing-md);
    background: transparent;
    border: 1px solid var(--fs-border-default);
    border-radius: var(--fs-radius-pill);
    font-size: var(--fs-font-size-sm);
    color: var(--fs-text-secondary);
    cursor: pointer;
    transition: var(--fs-transition-all);
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recent-pill:hover[b-gabdcbsyue] {
    background: var(--fs-bg-secondary);
    border-color: var(--fs-border-hover);
    color: var(--fs-text-primary);
    transform: translateY(-1px);
}

.recent-pill:active[b-gabdcbsyue] {
    transform: translateY(0);
}

/* Animation */
@keyframes slideDown-b-gabdcbsyue {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .quick-add-container[b-gabdcbsyue] {
        margin-bottom: 20px;
    }
    
    .quick-add-input-group[b-gabdcbsyue] {
        flex-wrap: wrap;
        padding: var(--fs-spacing-sm);
        gap: var(--fs-spacing-sm);
    }
    
    .quick-add-input[b-gabdcbsyue] {
        width: 100%;
        padding: var(--fs-spacing-md);
        font-size: 16px; /* Prevents zoom on iOS */
        border-bottom: 1px solid var(--fs-border-default);
    }
    
    /* Meal selector wrapper on mobile - full width second row */
    .meal-selector-wrapper[b-gabdcbsyue] {
        width: 100%;
        order: 2;
        background: linear-gradient(135deg, var(--fs-primary-light), var(--fs-primary-bg));
        padding: var(--fs-spacing-sm) var(--fs-spacing-md);
        border-radius: var(--fs-radius-md);
        border: 2px solid var(--fs-primary);
        box-shadow: var(--fs-shadow-sm);
    }
    
    .meal-selector-label[b-gabdcbsyue] {
        font-size: var(--fs-font-size-sm);
        margin-right: var(--fs-spacing-sm);
    }
    
    .quick-add-meal-select[b-gabdcbsyue] {
        flex: 1;
        border: 2px solid var(--fs-primary) !important;
        padding: var(--fs-spacing-md) 36px var(--fs-spacing-md) var(--fs-spacing-md);
        font-size: 16px; /* Prevents zoom on iOS */
        min-width: auto;
        background: var(--fs-bg-primary) !important;
    }
    
    .quick-add-button[b-gabdcbsyue] {
        flex: 0 0 auto;
        order: 3;
        padding: var(--fs-spacing-md) var(--fs-spacing-2xl);
        width: 100%;
    }
    
    .button-text[b-gabdcbsyue] {
        display: inline;
    }
    
    .quick-add-options[b-gabdcbsyue] {
        padding: var(--fs-spacing-sm) var(--fs-spacing-md) 0;
    }
    
    .recent-foods[b-gabdcbsyue] {
        gap: var(--fs-spacing-sm);
        margin-top: var(--fs-spacing-md);
    }
    
    .recent-pill[b-gabdcbsyue] {
        padding: var(--fs-spacing-sm) var(--fs-spacing-md);
        font-size: var(--fs-font-size-sm);
    }
}

@media (min-width: 769px) {
    .button-text[b-gabdcbsyue] {
        display: inline;
    }
    
    .quick-add-meal-select[b-gabdcbsyue] {
        min-width: 140px;
        max-width: 180px;
    }
    
    /* Ensure meal selector is prominent on desktop too */
    .meal-selector-wrapper[b-gabdcbsyue] {
        flex-shrink: 0;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .quick-add-button[b-gabdcbsyue] {
        padding: var(--fs-spacing-md) var(--fs-spacing-2xl);
        font-size: var(--fs-font-size-base);
    }
    
    .recent-pill[b-gabdcbsyue] {
        padding: var(--fs-spacing-sm) var(--fs-spacing-lg);
        font-size: var(--fs-font-size-sm);
    }
}

/* Dark Mode Support - Disabled for now to ensure readability */
/* Uncomment and adjust if dark mode is explicitly needed
@media (prefers-color-scheme: dark) {
    // Dark mode styles here
}
*/

/* ============================================
   Existing Styles - Meal Planner
   ============================================ */

.optimized-meal-planner[b-gabdcbsyue] {
    padding-bottom: var(--fs-spacing-3xl);
}

.section-title[b-gabdcbsyue] {
    font-size: var(--fs-font-size-xl);
    font-weight: var(--fs-font-weight-semibold);
    color: var(--fs-text-primary);
}

.meals-container[b-gabdcbsyue] {
    margin-top: var(--fs-spacing-lg);
}

.snacks-section[b-gabdcbsyue] {
    margin-top: var(--fs-spacing-3xl);
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/Pages/ForgotPassword.razor.rz.scp.css */
.card[b-5rrbwpkma7] {
    border-color: #e0e0e0;
    border-radius: 4px;
}

.card-title[b-5rrbwpkma7] {
    color: #f08a12;
}

.form-control.custom-input[b-5rrbwpkma7] {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border-color: #e0e0e0;
}

.form-control.custom-input:focus[b-5rrbwpkma7] {
    box-shadow: none;
    border-color: #f08a12;
}

.btn-primary[b-5rrbwpkma7] {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover[b-5rrbwpkma7] {
    background-color: #0056b3;
    border-color: #0056b3;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/Pages/Login.razor.rz.scp.css */
.card[b-w5fw11g297] {
    border: none;
    border-radius: 15px;
}

.card-body[b-w5fw11g297] {
    padding: 2rem;
}

.form-control[b-w5fw11g297], .input-group-text[b-w5fw11g297], .btn[b-w5fw11g297] {
    border-radius: 8px;
}

.form-control:focus[b-w5fw11g297] {
    box-shadow: 0 0 0 0.2rem rgba(240, 138, 18, 0.25);
    border-color: #f08a12;
}

.btn-primary[b-w5fw11g297] {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover[b-w5fw11g297], .btn-primary:focus[b-w5fw11g297] {
    background-color: #0056b3;
    border-color: #0056b3;
}

.text-primary[b-w5fw11g297] {
    color: #f08a12 !important;
}

.text-primary:hover[b-w5fw11g297] {
    color: #d67a0d !important;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/Pages/ResetPassword.razor.rz.scp.css */
.input-group-text[b-r6v1ac9lqi] {
    background-color: transparent;
    border-right: none;
}
.input-group .form-control[b-r6v1ac9lqi] {
    border-left: none;
}
.input-group .btn[b-r6v1ac9lqi] {
    border-left: none;
}
.card[b-r6v1ac9lqi] {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.card-title[b-r6v1ac9lqi] {
    color: #f08a12;
}
.btn-primary[b-r6v1ac9lqi] {
    background-color: #007bff;
    border-color: #007bff;
}
.btn-primary:hover[b-r6v1ac9lqi] {
    background-color: #0056b3;
    border-color: #0056b3;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/ProcessSteps.razor.rz.scp.css */
.step-container[b-0womma3c33] {
    width: 6rem !important;
}

.step-circle[b-0womma3c33]::before {
    width: calc(6rem + 1rem - 1.5rem) !important;
}


/* _content/Nutrition.Web.External.UI.Interactive/Components/ProfileDashboard.razor.rz.scp.css */
.accordion-button[b-o10r308d37] {
    z-index: 10 !important;
    position: relative !important;
}

.accordion-button:not(.collapsed)[b-o10r308d37] {
    background-color: #f8f9fa;
    color: #0d6efd;
}
.accordion-button:focus[b-o10r308d37] {
    box-shadow: none;
}
.material-symbols-outlined[b-o10r308d37] {
    font-size: 1rem;
}

/* Skeleton Loading Styles */
.profile-skeleton[b-o10r308d37] {
    animation: pulse-b-o10r308d37 1.5s ease-in-out infinite alternate;
}

.skeleton-header[b-o10r308d37] {
    height: 55px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-o10r308d37 1.5s infinite;
    border-radius: 8px;
    margin-bottom: 8px;
}

.skeleton-meal-header[b-o10r308d37] {
    height: 40px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-o10r308d37 1.5s infinite;
    border-radius: 6px;
}

.skeleton-meal-steps[b-o10r308d37] {
    height: 80px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-o10r308d37 1.5s infinite;
    border-radius: 6px;
}

@keyframes shimmer-b-o10r308d37 {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse-b-o10r308d37 {
    0% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* Profile Summary Cards */
.profile-summary-cards[b-o10r308d37] {
    margin-bottom: 2rem;
}

.info-card[b-o10r308d37] {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.info-card:hover[b-o10r308d37] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-card-icon[b-o10r308d37] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.2rem;
}

.info-card-content[b-o10r308d37] {
    flex: 1;
}

.info-card-label[b-o10r308d37] {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.info-card-value[b-o10r308d37] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
}

.info-card.loading-secondary[b-o10r308d37] {
    transition: opacity 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-card[b-o10r308d37] {
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .info-card-icon[b-o10r308d37] {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .info-card-value[b-o10r308d37] {
        font-size: 1.1rem;
    }
}

/* _content/Nutrition.Web.External.UI.Interactive/Components/WeightCheckIn.razor.rz.scp.css */
.form-control[b-u7lp6bhr84] {
    background-color: #fff;
    border-color: #dee2e6;
}

.form-control[b-u7lp6bhr84]::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

.form-control:focus[b-u7lp6bhr84] {
    box-shadow: none;
    border-color: #0d6efd;
}

.btn-outline-secondary[b-u7lp6bhr84] {
    background-color: #fff;
    border-color: #dee2e6;
}

.btn-outline-secondary:hover[b-u7lp6bhr84] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/WeightProgressVisualization.razor.rz.scp.css */
.weight-progress-container[b-2334xaqzam] {
    max-width: 900px;
    margin: 0 auto;
}

[b-2334xaqzam] .card {
    transition: all 0.3s ease;
    border-width: 2px;
}

[b-2334xaqzam] .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-container[b-2334xaqzam] {
    position: relative;
    padding: 20px 0;
    margin: 20px 0;
}

.timeline-track[b-2334xaqzam] {
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    position: relative;
}

.timeline-progress[b-2334xaqzam] {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #198754;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.timeline-markers[b-2334xaqzam] {
    position: relative;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.marker[b-2334xaqzam] {
    font-size: 0.75rem;
    color: #6c757d;
}

.checkin-points[b-2334xaqzam] {
    position: absolute;
    top: -4px; /* Align with the timeline track */
    left: 0;
    right: 0;
    height: 12px; /* Match dot height */
}



.checkin-dot[b-2334xaqzam]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px); /* Increased spacing from dot */
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 0.75rem;
    background: rgba(33, 37, 41, 0.95); /* Slightly more opaque */
    color: white;
    font-size: 0.875rem;
    border-radius: 0.375rem;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 1070;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}


.checkin-dot:hover[b-2334xaqzam]::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

.checkin-dot[b-2334xaqzam] {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #198754;
    border-radius: 50%;
    /* Remove top property since we positioned the parent correctly */
    transform: translateX(-50%); /* Center the dot on its position */
    transition: transform 0.2s ease;
    cursor: help;
}

.checkin-dot[b-2334xaqzam]::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px); /* Positioned closer to dot */
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px; /* Slightly smaller arrow */
    border-style: solid;
    border-color: rgba(33, 37, 41, 0.95) transparent transparent transparent;
    opacity: 0;
    transition: all 0.2s ease;
    pointer-events: none;
}

.checkin-dot:hover[b-2334xaqzam]::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}


.frequency-stats .h5[b-2334xaqzam] {
    color: #198754;
}

.checkin-dot-sample[b-2334xaqzam] {
    width: 12px;
    height: 12px;
    background-color: #198754;
    border-radius: 50%;
    display: inline-block;
}


.progress-message-container[b-2334xaqzam] {
    margin: 2rem 0 0; 
}



.progress-message-container .alert[b-2334xaqzam] {
    margin-bottom: 0;
    border-left-width: 4px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
}


.progress-message-container .alert-info[b-2334xaqzam] {
    background-color: rgba(13, 202, 240, 0.15);
    color: #055160;
}

.progress-message-container .alert-success[b-2334xaqzam] {
    background-color: rgba(25, 135, 84, 0.15);
    color: #0a3622;
}

.progress-message-content[b-2334xaqzam] {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 0.5rem;
}


.progress-message-content i[b-2334xaqzam] {
    flex-shrink: 0;
    font-size: 1.1rem;
    margin-right: 0.75rem;  /* Add consistent spacing after icon */
}

/* Ensure responsive behavior */
@media (max-width: 768px) {
    .progress-message-container .alert[b-2334xaqzam] {
        padding: 0.875rem 1rem;
    }
}

[b-2334xaqzam] .card {
    transition: all 0.3s ease;
    border-width: 2px;
}

[b-2334xaqzam] .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/WeightTrendChart.razor.rz.scp.css */
.chart-container[b-07n4jr6k1s] {
    width: 100%;
    min-height: 400px;
}
