@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-g954j4madw] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.modal-container[b-g954j4madw] {
    background: white;
    border-radius: 8px;
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-content[b-g954j4madw] {
    padding: 1.5rem;
}

.modal-header[b-g954j4madw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(to right, #f8f9ff, #f0f4ff);
    border-bottom: 1px solid #e5e7eb;
    border-radius: 8px 8px 0 0;
}

.modal-header h2[b-g954j4madw] {
    margin: 0;
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.close-button[b-g954j4madw] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4a5568;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

.close-button:hover[b-g954j4madw] {
    color: #2d3748;
}

.search-results-container[b-g954j4madw] {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 6px;
}

.search-results-grid[b-g954j4madw] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
}

.search-result-card[b-g954j4madw] {
    padding: 0.75rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.search-result-card:hover[b-g954j4madw] {
    border-color: #4299e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.similar-foods-grid[b-g954j4madw] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.similar-food-card[b-g954j4madw] {
    padding: 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.similar-food-card:hover[b-g954j4madw] {
    border-color: #4299e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.macro-info[b-g954j4madw] {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #4a5568;
}

@media (max-width: 640px) {
    .modal-container[b-g954j4madw] {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .search-results-grid[b-g954j4madw],
    .similar-foods-grid[b-g954j4madw] {
        grid-template-columns: 1fr;
    }
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/CustomFoodEditorModal.razor.rz.scp.css */
/* Base modal trigger button */
.custom-food-form .btn-outline-primary[b-oo9d8s44ef] {
    transition: all 0.2s ease;
    border-color: #3b82f6;
    color: #3b82f6;
}

.custom-food-form .btn-outline-primary:hover[b-oo9d8s44ef] {
    background-color: #3b82f6;
    color: white;
    transform: translateY(-1px);
}

/* Modal Structure */
.modal-overlay[b-oo9d8s44ef] {
    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-oo9d8s44ef] {
    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-oo9d8s44ef] {
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
}

/* Header */
.modal-header[b-oo9d8s44ef] {
    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-oo9d8s44ef] {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1f2937;
    margin: 0;
}

.close-button[b-oo9d8s44ef] {
    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-oo9d8s44ef] {
    background-color: #f3f4f6;
    color: #1f2937;
}

/* Form Groups */
.form-group[b-oo9d8s44ef] {
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0;
    border-bottom: 1px solid #f3f4f6;
}

.form-group label[b-oo9d8s44ef] {
    color: #4b5563;
    font-size: 0.875rem;
}

/* Serving Section */
.serving-inputs[b-oo9d8s44ef] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.serving-amount[b-oo9d8s44ef] {
    width: 80px !important;
}

.serving-unit[b-oo9d8s44ef] {
    flex: 1 !important;
    min-width: 180px !important;
}

/* Added Serving in grams styles */
.serving-row[b-oo9d8s44ef] {
    display: flex;
    align-items: center;
    margin-top: 8px;
    gap: 8px;
}

.serving-label[b-oo9d8s44ef] {
    color: #666;
    font-size: 14px;
    min-width: 120px;
}

.serving-input[b-oo9d8s44ef] {
    width: 120px !important;
}

[b-oo9d8s44ef] .serving-input > .mud-input-text {
    margin: 0;
}

/* Nutrition Facts Section */
.nutrition-facts[b-oo9d8s44ef] {
    padding: 0.75rem 1rem;
}

.nutrition-facts h3[b-oo9d8s44ef] {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #1f2937;
}

.thick-line[b-oo9d8s44ef] {
    height: 6px;
    background-color: #000;
    margin: 0.5rem 0;
}

.nutrient-row[b-oo9d8s44ef] {
    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-oo9d8s44ef] {
    border-bottom: none;
}

.calories-row[b-oo9d8s44ef] {
    font-weight: 500;
}

.indented[b-oo9d8s44ef] {
    padding-left: 1.25rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.numeric-input-container[b-oo9d8s44ef] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* MudBlazor Customization */
[b-oo9d8s44ef] .mud-input-control {
    margin: 0;
}

[b-oo9d8s44ef] .mud-input > input.mud-input-root {
    height: 32px;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

[b-oo9d8s44ef] .mud-input-control > .mud-input-control-input-container > div.mud-input.mud-input-text {
    margin-top: 0;
}

[b-oo9d8s44ef] .nutrient-input {
    width: 80px !important;
}

[b-oo9d8s44ef] .mud-input-control-helper-text {
    min-height: 0;
    margin: 0;
}

/* Unit Labels */
.unit[b-oo9d8s44ef] {
    color: #6b7280;
    font-size: 0.75rem;
    width: 20px;
    text-align: right;
    flex-shrink: 0;
}

/* Footer */
.modal-footer[b-oo9d8s44ef] {
    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-oo9d8s44ef] {
    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-oo9d8s44ef] {
    background-color: #f3f4f6;
    color: #1f2937;
}

.btn-add[b-oo9d8s44ef] {
    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-oo9d8s44ef] {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn-add:active[b-oo9d8s44ef] {
    transform: translateY(0);
}

/* Mobile Optimizations */
@media (max-width: 640px) {
    .modal-container[b-oo9d8s44ef] {
        margin: 0.5rem;
        max-height: calc(100vh - 1rem);
    }

    .form-group[b-oo9d8s44ef] {
        flex-direction: column;
        align-items: flex-start;
    }

    .serving-inputs[b-oo9d8s44ef] {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .serving-amount[b-oo9d8s44ef],
    .serving-unit[b-oo9d8s44ef] {
        width: 100% !important;
    }

    .serving-row[b-oo9d8s44ef] {
        width: 100%;
    }

    .serving-input[b-oo9d8s44ef] {
        flex: 1;
    }

    [b-oo9d8s44ef] .mud-input > input.mud-input-root {
        height: 40px;
    }

    .btn-cancel[b-oo9d8s44ef],
    .btn-add[b-oo9d8s44ef] {
        padding: 0.75rem 1rem;
    }
}

/* Scrollbar Styling */
.modal-content[b-oo9d8s44ef] {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.modal-content[b-oo9d8s44ef]::-webkit-scrollbar {
    width: 6px;
}

.modal-content[b-oo9d8s44ef]::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.modal-content[b-oo9d8s44ef]::-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-lmqe7fyl3u] {
    margin-bottom: 1.5rem;
}

/* Quick Access Section */
.quick-access-scroll[b-lmqe7fyl3u] {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0.25rem 0;
    scrollbar-width: thin;
    -ms-overflow-style: none;
}

.quick-access-scroll[b-lmqe7fyl3u]::-webkit-scrollbar {
    height: 4px;
}

.quick-access-scroll[b-lmqe7fyl3u]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.quick-access-scroll[b-lmqe7fyl3u]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
}

.quick-access-item[b-lmqe7fyl3u] {
    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-lmqe7fyl3u] {
    background-color: #ffe0b2;
}

.quick-access-item .brand-name[b-lmqe7fyl3u] {
    color: #666;
    margin-left: 0.5rem;
    font-size: 0.8em;
}

.quick-access-more[b-lmqe7fyl3u] {
    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-lmqe7fyl3u] {
    background-color: #e9ecef;
}

/* Expanded Grid View */
.custom-foods-grid[b-lmqe7fyl3u] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.food-card[b-lmqe7fyl3u] {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.food-card:hover[b-lmqe7fyl3u] {
    border-color: #f08a12;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.food-card-header[b-lmqe7fyl3u] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.food-card-header i[b-lmqe7fyl3u] {
    color: #f08a12;
    font-size: 0.875rem;
}

.food-card .food-name[b-lmqe7fyl3u] {
    font-weight: 500;
    color: #212529;
}

.food-card .brand-name[b-lmqe7fyl3u] {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.food-card .nutrition-info[b-lmqe7fyl3u] {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #495057;
    margin-bottom: 0.25rem;
}

/* Custom Foods Badge */
.custom-foods-badge[b-lmqe7fyl3u] {
    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-lmqe7fyl3u] {
        grid-template-columns: 1fr;
    }

    .food-card[b-lmqe7fyl3u] {
        padding: 0.75rem;
    }
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/CustomFoodNutritionForm.razor.rz.scp.css */
/* CustomFoodNutritionForm.razor.css */

h3[b-t1jxj1h5v2], h4[b-t1jxj1h5v2] {
    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-t1jxj1h5v2] .mud-input {
    margin-bottom: 0.5rem;
}

[b-t1jxj1h5v2] .validation-message {
    color: #F44336; /* MudBlazor default error color */
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

@media (max-width: 600px) {
    [b-t1jxj1h5v2] .mud-grid {
        margin-top: 1rem;
    }

    [b-t1jxj1h5v2] .mud-grid-item {
        padding: 0.5rem;
    }
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/DailyMealPlanner.razor.rz.scp.css */
.weight-btn[b-9qz1bicbky] {
    padding: 0.5rem 1rem;
    margin: 1rem;
    font-size: 1rem;
}

.weight-pulse[b-9qz1bicbky] {
    animation: pulse-b-9qz1bicbky 2s infinite;
}

@keyframes pulse-b-9qz1bicbky {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.weight-btn:disabled[b-9qz1bicbky] {
    opacity: 0.65;
    cursor: not-allowed;
}

[b-9qz1bicbky] .mud-success-text {
    font-weight: 500;
    position: relative;
}

[b-9qz1bicbky] .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-19c1ze0nsp] {
    color: #007bff;
    border-color: #007bff;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover[b-19c1ze0nsp], .btn-outline-primary:focus[b-19c1ze0nsp] {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    transform: translateY(-2px);
}

.transition[b-19c1ze0nsp] {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .btn-lg[b-19c1ze0nsp] {
        font-size: 1rem;
        padding: 0.5rem 1rem !important;
    }
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/FoodSelection.razor.rz.scp.css */
/* FoodSelection.razor.css */
[b-y9v2hni0kb] .page-title {
    color: #f08a12;
    font-weight: 500;
    text-align: center;
    margin: 1.5rem 0;
}

/* Select2 Styling */
[b-y9v2hni0kb] .select2-wrapper {
    position: relative;
    width: 100%;
}

[b-y9v2hni0kb] .select2-container {
    width: 100% !important;
    display: block;
}

[b-y9v2hni0kb] .select2-container .select2-selection--multiple {
    min-height: 45px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 4px 8px;
}

/* Custom Foods Badge */
[b-y9v2hni0kb] .custom-foods-badge {
    color: #f08a12;
    background-color: #fff3e6;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    display: inline-block;
}

/* Serving Grid Styling */
[b-y9v2hni0kb] .serving-grid {
    display: flex;
    flex-direction: column;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

[b-y9v2hni0kb] .serving-row {
    display: grid;
    grid-template-columns: 200px auto;
    padding: 16px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

[b-y9v2hni0kb] .serving-row:hover {
    background-color: #f8f9fa;
}

[b-y9v2hni0kb] .serving-row:last-child {
    border-bottom: none;
}

[b-y9v2hni0kb] .food-name {
    font-weight: 500;
    color: #495057;
    padding: 8px 0;
}

[b-y9v2hni0kb] .serving-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Loading State */
[b-y9v2hni0kb] .loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

[b-y9v2hni0kb] .loading-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    [b-y9v2hni0kb] .serving-row {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    [b-y9v2hni0kb] .serving-controls {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding-top: 8px;
    }

    [b-y9v2hni0kb] .food-name {
        margin-bottom: 0;
        padding: 4px 0;
    }

    [b-y9v2hni0kb] .form-select {
        font-size: 14px;
        padding: 6px 8px;
    }
}
/* _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-yk8nxpe0s5] {
    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-yk8nxpe0s5] {
    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-22wtpxddrg] {
    background-color: white;
    border-radius: 1rem;
    padding: 3rem;
    overflow: hidden;
    transition: all 0.3s ease;
}



/* Video Section Styles */
.video-section[b-22wtpxddrg] {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: fadeInUp-b-22wtpxddrg 0.8s ease-out;
}

@keyframes fadeInUp-b-22wtpxddrg {
    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-22wtpxddrg] {
        animation: none;
    }
    
    .video-container[b-22wtpxddrg],
    .intro-video[b-22wtpxddrg],
    .video-container[b-22wtpxddrg]::before {
        transition: none;
    }
    
    .video-container:hover[b-22wtpxddrg] {
        transform: none;
    }
    
    .intro-video:hover[b-22wtpxddrg] {
        transform: none;
    }
}

.video-container[b-22wtpxddrg] {
    position: relative;
    width: 100%;
    max-width: 800px;
    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-22wtpxddrg]::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-22wtpxddrg]::before {
    opacity: 1;
}

.video-container:hover[b-22wtpxddrg] {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.video-container .ratio[b-22wtpxddrg] {
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #000;
    position: relative;
    z-index: 2;
}

.video-wrapper[b-22wtpxddrg] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.intro-video[b-22wtpxddrg] {
    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-22wtpxddrg] {
    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-22wtpxddrg] {
    opacity: 0 !important;
    pointer-events: none;
}

.poster-image[b-22wtpxddrg] {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
    opacity: 0.8;
}



.intro-video:focus[b-22wtpxddrg] {
    outline: 3px solid rgba(240, 138, 18, 0.5);
    outline-offset: 2px;
}

/* Enhanced Feature List Styles */
.feature-list[b-22wtpxddrg] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item[b-22wtpxddrg] {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0.5rem 0;
    transition: transform 0.2s ease-in-out;
}

.feature-item:hover[b-22wtpxddrg] {
    transform: translateY(-3px);
}

.feature-icon[b-22wtpxddrg] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #f0f0f0, #fafafa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #f08a12;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(240, 138, 18, 0.2);
}

.feature-content[b-22wtpxddrg] {
    flex: 1;
}

.feature-content h3[b-22wtpxddrg] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.feature-content p[b-22wtpxddrg] {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Button */
.cta-container[b-22wtpxddrg] {
    text-align: center;
}

.cta-button[b-22wtpxddrg] {
    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-22wtpxddrg], .cta-button:focus[b-22wtpxddrg] {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(240, 138, 18, 0.35);
}

.cta-button:active[b-22wtpxddrg] {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(240, 138, 18, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .intro-card[b-22wtpxddrg] {
        padding: 2.5rem;
    }

    .video-container[b-22wtpxddrg] {
        max-width: 100%;
        padding: 0.4rem;
    }

    .video-section[b-22wtpxddrg] {
        margin-bottom: 2.5rem;
    }

    .feature-item[b-22wtpxddrg] {
        gap: 1.25rem;
    }

    .feature-icon[b-22wtpxddrg] {
        width: 56px;
        height: 56px;
        font-size: 1.35rem;
    }
}

@media (max-width: 768px) {
    .intro-card[b-22wtpxddrg] {
        padding: 2rem;
    }

    .video-container[b-22wtpxddrg] {
        padding: 0.3rem;
        border-radius: 0.75rem;
    }

    .video-container .ratio[b-22wtpxddrg] {
        border-radius: 0.5rem;
    }

    .video-section[b-22wtpxddrg] {
        margin-bottom: 2rem;
    }

    .feature-content h3[b-22wtpxddrg] {
        font-size: 1.15rem;
    }

    .feature-content p[b-22wtpxddrg] {
        font-size: 0.95rem;
    }

    .cta-button[b-22wtpxddrg] {
        width: 100%;
        padding: 1.2rem 1.5rem; /* Increased height by ~20% */
    }
}

@media (max-width: 576px) {
    .intro-card[b-22wtpxddrg] {
        padding: 1.5rem;
    }

    .video-container[b-22wtpxddrg] {
        padding: 0.25rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .video-container .ratio[b-22wtpxddrg] {
        border-radius: 0.375rem;
    }

    .video-container:hover[b-22wtpxddrg] {
        transform: none;
    }

    .intro-video:hover[b-22wtpxddrg] {
        transform: none;
    }

    .video-section[b-22wtpxddrg] {
        margin-bottom: 1.5rem;
    }

    .feature-item[b-22wtpxddrg] {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .feature-icon[b-22wtpxddrg] {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }
}

/* Enhanced Hero Section */
.hero-section[b-22wtpxddrg] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
}

.hero-title[b-22wtpxddrg] {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle[b-22wtpxddrg] {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .hero-title[b-22wtpxddrg] {
        font-size: 2.5rem;
    }
    
    .hero-subtitle[b-22wtpxddrg] {
        font-size: 1.2rem;
    }
}

/* Benefits Section */
.benefits-section[b-22wtpxddrg] {
    background: #f8f9fa;
    padding: 4rem 0;
}

.benefit-card[b-22wtpxddrg] {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.benefit-card:hover[b-22wtpxddrg] {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.benefit-card i[b-22wtpxddrg] {
    margin-bottom: 1rem;
}

.benefit-card h3[b-22wtpxddrg] {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-card p[b-22wtpxddrg] {
    color: #6c757d;
    line-height: 1.6;
}

/* Video section styling */
.video-section[b-22wtpxddrg] {
    margin-bottom: 3rem;
}

.video-container[b-22wtpxddrg] {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Feature list enhancements */
.feature-list[b-22wtpxddrg] {
    margin-bottom: 3rem;
}

.feature-item[b-22wtpxddrg] {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover[b-22wtpxddrg] {
    transform: translateY(-5px);
}

.feature-icon[b-22wtpxddrg] {
    margin-right: 2rem;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.feature-content h2[b-22wtpxddrg] {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-content p[b-22wtpxddrg] {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* CTA section */
.cta-container[b-22wtpxddrg] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.cta-button[b-22wtpxddrg] {
    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-22wtpxddrg] {
    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-22wtpxddrg] {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon[b-22wtpxddrg] {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cta-container[b-22wtpxddrg] {
        padding: 2rem 1rem;
    }
    
    .cta-button[b-22wtpxddrg] {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/ModalComponent.razor.rz.scp.css */
.modal-dialog-centered[b-tpcjc4oqa4] {
    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-63awjucjj7] {
    font-size: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.nutrient-total .nutrient-value[b-63awjucjj7] {
    font-weight: bold;
    margin-right: 4px;
}

.nutrient-total i[b-63awjucjj7],
.nutrient-total-compact i[b-63awjucjj7] {
    cursor: help;
    margin-left: 4px;
}

/* Compact Icon Styles */
.nutrient-total-compact[b-63awjucjj7] {
    font-size: 0.9rem;
    font-weight: bold;
}

.nutrient-total-compact .compact-icon[b-63awjucjj7] {
    font-size: 0.7rem;
    vertical-align: super;
    margin-left: 2px;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/Pages/ForgotPassword.razor.rz.scp.css */
.card[b-gbp9ww77i5] {
    border-color: #e0e0e0;
    border-radius: 4px;
}

.card-title[b-gbp9ww77i5] {
    color: #f08a12;
}

.form-control.custom-input[b-gbp9ww77i5] {
    width: 100%;
    padding: 0.375rem 0.75rem;
    border-color: #e0e0e0;
}

.form-control.custom-input:focus[b-gbp9ww77i5] {
    box-shadow: none;
    border-color: #f08a12;
}

.btn-primary[b-gbp9ww77i5] {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover[b-gbp9ww77i5] {
    background-color: #0056b3;
    border-color: #0056b3;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/Pages/Login.razor.rz.scp.css */
.card[b-2opmr1f3eg] {
    border: none;
    border-radius: 15px;
}

.card-body[b-2opmr1f3eg] {
    padding: 2rem;
}

.form-control[b-2opmr1f3eg], .input-group-text[b-2opmr1f3eg], .btn[b-2opmr1f3eg] {
    border-radius: 8px;
}

.form-control:focus[b-2opmr1f3eg] {
    box-shadow: 0 0 0 0.2rem rgba(240, 138, 18, 0.25);
    border-color: #f08a12;
}

.btn-primary[b-2opmr1f3eg] {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover[b-2opmr1f3eg], .btn-primary:focus[b-2opmr1f3eg] {
    background-color: #0056b3;
    border-color: #0056b3;
}

.text-primary[b-2opmr1f3eg] {
    color: #f08a12 !important;
}

.text-primary:hover[b-2opmr1f3eg] {
    color: #d67a0d !important;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/Pages/ResetPassword.razor.rz.scp.css */
.input-group-text[b-oqcr6iaihk] {
    background-color: transparent;
    border-right: none;
}
.input-group .form-control[b-oqcr6iaihk] {
    border-left: none;
}
.input-group .btn[b-oqcr6iaihk] {
    border-left: none;
}
.card[b-oqcr6iaihk] {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.card-title[b-oqcr6iaihk] {
    color: #f08a12;
}
.btn-primary[b-oqcr6iaihk] {
    background-color: #007bff;
    border-color: #007bff;
}
.btn-primary:hover[b-oqcr6iaihk] {
    background-color: #0056b3;
    border-color: #0056b3;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/ProcessSteps.razor.rz.scp.css */
.step-container[b-hal7whub7l] {
    width: 6rem !important;
}

.step-circle[b-hal7whub7l]::before {
    width: calc(6rem + 1rem - 1.5rem) !important;
}


/* _content/Nutrition.Web.External.UI.Interactive/Components/ProfileDashboard.razor.rz.scp.css */
.accordion-button[b-wj95dsecgw] {
    z-index: 10 !important;
    position: relative !important;
}

.accordion-button:not(.collapsed)[b-wj95dsecgw] {
    background-color: #f8f9fa;
    color: #0d6efd;
}
.accordion-button:focus[b-wj95dsecgw] {
    box-shadow: none;
}
.material-symbols-outlined[b-wj95dsecgw] {
    font-size: 1rem;
}

/* _content/Nutrition.Web.External.UI.Interactive/Components/WeightCheckIn.razor.rz.scp.css */
.form-control[b-ma3db1t46k] {
    background-color: #fff;
    border-color: #dee2e6;
}

.form-control[b-ma3db1t46k]::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

.form-control:focus[b-ma3db1t46k] {
    box-shadow: none;
    border-color: #0d6efd;
}

.btn-outline-secondary[b-ma3db1t46k] {
    background-color: #fff;
    border-color: #dee2e6;
}

.btn-outline-secondary:hover[b-ma3db1t46k] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
}
/* _content/Nutrition.Web.External.UI.Interactive/Components/WeightProgressVisualization.razor.rz.scp.css */
.weight-progress-container[b-5444vsqvwu] {
    max-width: 900px;
    margin: 0 auto;
}

[b-5444vsqvwu] .card {
    transition: all 0.3s ease;
    border-width: 2px;
}

[b-5444vsqvwu] .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-container[b-5444vsqvwu] {
    position: relative;
    padding: 20px 0;
    margin: 20px 0;
}

.timeline-track[b-5444vsqvwu] {
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    position: relative;
}

.timeline-progress[b-5444vsqvwu] {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #198754;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.timeline-markers[b-5444vsqvwu] {
    position: relative;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.marker[b-5444vsqvwu] {
    font-size: 0.75rem;
    color: #6c757d;
}

.checkin-points[b-5444vsqvwu] {
    position: absolute;
    top: -4px; /* Align with the timeline track */
    left: 0;
    right: 0;
    height: 12px; /* Match dot height */
}



.checkin-dot[b-5444vsqvwu]::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-5444vsqvwu]::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

.checkin-dot[b-5444vsqvwu] {
    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-5444vsqvwu]::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-5444vsqvwu]::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}


.frequency-stats .h5[b-5444vsqvwu] {
    color: #198754;
}

.checkin-dot-sample[b-5444vsqvwu] {
    width: 12px;
    height: 12px;
    background-color: #198754;
    border-radius: 50%;
    display: inline-block;
}


.progress-message-container[b-5444vsqvwu] {
    margin: 2rem 0 0; 
}



.progress-message-container .alert[b-5444vsqvwu] {
    margin-bottom: 0;
    border-left-width: 4px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
}


.progress-message-container .alert-info[b-5444vsqvwu] {
    background-color: rgba(13, 202, 240, 0.15);
    color: #055160;
}

.progress-message-container .alert-success[b-5444vsqvwu] {
    background-color: rgba(25, 135, 84, 0.15);
    color: #0a3622;
}

.progress-message-content[b-5444vsqvwu] {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 0.5rem;
}


.progress-message-content i[b-5444vsqvwu] {
    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-5444vsqvwu] {
        padding: 0.875rem 1rem;
    }
}

[b-5444vsqvwu] .card {
    transition: all 0.3s ease;
    border-width: 2px;
}

[b-5444vsqvwu] .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-qhwm939lnj] {
    width: 100%;
    min-height: 400px;
}
