/* /Components/VoiceRecordingComponent.razor.rz.scp.css */
.voice-recording-container[b-aw4tvws2jg] {
    width: 100%;
    margin: 16px 0;
}

.voice-recording-panel[b-aw4tvws2jg] {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    padding: 16px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recording-controls[b-aw4tvws2jg] {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.record-button[b-aw4tvws2jg],
.cancel-button[b-aw4tvws2jg] {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 160px;
    justify-content: center;
}

.record-button[b-aw4tvws2jg] {
    background: linear-gradient(135deg, #5568d3 0%, #6b3d8f 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(85, 104, 211, 0.4);
}

.record-button:hover:not(:disabled)[b-aw4tvws2jg] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(85, 104, 211, 0.6);
}

.record-button:active:not(:disabled)[b-aw4tvws2jg] {
    transform: translateY(0);
}

.record-button.recording[b-aw4tvws2jg] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
    animation: pulse-b-aw4tvws2jg 1.5s infinite;
}

@keyframes pulse-b-aw4tvws2jg {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(245, 87, 108, 0.8);
    }
}

.record-button.processing[b-aw4tvws2jg] {
    opacity: 0.7;
    cursor: not-allowed;
}

.record-button:disabled[b-aw4tvws2jg],
.cancel-button:disabled[b-aw4tvws2jg] {
    opacity: 0.5;
    cursor: not-allowed;
}

.record-icon[b-aw4tvws2jg],
.cancel-button[b-aw4tvws2jg]::before {
    font-size: 18px;
}

.cancel-button[b-aw4tvws2jg] {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    color: #ffffff;
    padding: 10px 16px;
    min-width: 130px;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.cancel-button:hover:not(:disabled)[b-aw4tvws2jg] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
}

.duration-display[b-aw4tvws2jg] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
}

.duration-value[b-aw4tvws2jg] {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Monaco', 'Courier New', monospace;
    color: #333;
    letter-spacing: 2px;
}

.recording-indicator[b-aw4tvws2jg] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f5576c;
    font-weight: 600;
    font-size: 14px;
    animation: blink-b-aw4tvws2jg 1s infinite;
}

@keyframes blink-b-aw4tvws2jg {
    0%, 49%, 100% {
        opacity: 1;
    }
    50%, 99% {
        opacity: 0.4;
    }
}

.error-message[b-aw4tvws2jg] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px 16px;
    background-color: #ffebee;
    border-left: 4px solid #f44336;
    border-radius: 4px;
    color: #c62828;
    font-size: 14px;
    font-weight: 500;
}

.error-icon[b-aw4tvws2jg] {
    font-size: 18px;
}

.unavailable-message[b-aw4tvws2jg] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px 16px;
    background-color: #fff3e0;
    border-left: 4px solid #ff9800;
    border-radius: 4px;
    color: #bf360c;
    font-size: 14px;
    font-weight: 500;
}

.success-message[b-aw4tvws2jg] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px 16px;
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    border-radius: 4px;
    color: #2e7d32;
    font-size: 14px;
    font-weight: 500;
}

.success-icon[b-aw4tvws2jg] {
    font-size: 18px;
}

.recording-info[b-aw4tvws2jg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    font-size: 13px;
}

.info-item[b-aw4tvws2jg] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label[b-aw4tvws2jg] {
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.info-value[b-aw4tvws2jg] {
    color: #333;
    font-weight: 500;
    font-family: 'Monaco', 'Courier New', monospace;
}

.transcription-status[b-aw4tvws2jg] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px 16px;
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    border-radius: 4px;
    color: #1565c0;
    font-size: 14px;
    font-weight: 500;
}

.transcribing-indicator[b-aw4tvws2jg] {
    display: inline-block;
    font-size: 18px;
    animation: pulse-transcribe-b-aw4tvws2jg 1.5s infinite;
}

@keyframes pulse-transcribe-b-aw4tvws2jg {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.transcription-result[b-aw4tvws2jg] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding: 12px 16px;
    background-color: #f1f8e9;
    border-left: 4px solid #8bc34a;
    border-radius: 4px;
}

.transcription-label[b-aw4tvws2jg] {
    color: #558b2f;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.transcription-text[b-aw4tvws2jg] {
    color: #33691e;
    font-size: 14px;
    line-height: 1.5;
    padding: 8px 0;
    font-style: italic;
    border-top: 1px solid rgba(51, 105, 30, 0.2);
    padding-top: 8px;
}

@media (max-width: 640px) {
    .voice-recording-panel[b-aw4tvws2jg] {
        padding: 12px;
    }

    .recording-controls[b-aw4tvws2jg] {
        flex-direction: column;
        width: 100%;
    }

    .record-button[b-aw4tvws2jg],
    .cancel-button[b-aw4tvws2jg] {
        width: 100%;
    }

    .record-icon[b-aw4tvws2jg] {
        font-size: 20px;
    }

    .duration-display[b-aw4tvws2jg] {
        flex-direction: column;
        gap: 8px;
    }

    .duration-value[b-aw4tvws2jg] {
        font-size: 28px;
    }

    .recording-info[b-aw4tvws2jg] {
        grid-template-columns: 1fr;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-q0g41gk7nx] {
    position: relative;
    display: flex;
    flex-direction: row; /* Change to row to allow sidebar and content alignment */
    width: 100%;
    height: 100vh; /* Ensure it fills the entire screen */
    padding: 0;
    box-sizing: border-box;
    background: none;
}

.main-layout[b-q0g41gk7nx] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to the left */
    justify-content: flex-start; /* Start from the top */
    width: 100%;
    height: 100%; /* Ensure it fills the remaining space */
    padding: 20px; /* Add padding to content */
    background: none;
}

.sidebar[b-q0g41gk7nx] {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center buttons horizontally */
    justify-content: center; /* Center buttons vertically */
    width: 80px; /* Adjust as needed */
    background-color: #f8f9fa; /* Optional: sidebar background */
    box-shadow: 2px 0 5px rgba(0,0,0,0.05);
    min-width: 60px;
}

/* Blazor error UI */
#blazor-error-ui[b-q0g41gk7nx] {
    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-q0g41gk7nx] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Media Query for responsiveness */
@media (max-width: 768px) {
    .page[b-q0g41gk7nx] {
        flex-direction: column; /* Stack the sidebar and content vertically */
        padding: 0;
    }

    main[b-q0g41gk7nx] {
        padding: 8px;
    }
}
/* /Pages/Appointments.razor.rz.scp.css */
[b-ty4kbyty0b].appointments-container {
    display: flex;
    flex-direction: column;
    height: 110vh;
    padding-bottom: 10px;
    box-sizing: border-box;
    background-color: transparent;
    overflow-y: hidden;
}

/* Appointment Cards Area (Top) */
[b-ty4kbyty0b].appointment-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    justify-content: flex-start;
    flex: 0 0 25%;
    padding: 0px;
    overflow-x: auto;
    max-height: 160px;
}

    [b-ty4kbyty0b] .appointment-cards::-webkit-scrollbar {
        display: none;
    }

/* Individual Card */
[b-ty4kbyty0b].appointment-cards-item.appointment-card {
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 293px;
    height: 154px;
    flex: 0 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

[b-ty4kbyty0b].appointment-card.name {
    font-size: 17px;
    color: #171717;
}

[b-ty4kbyty0b].appointment-card h3 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 11px;
    color: #8E8E8E;
}

[b-ty4kbyty0b].profile-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

[b-ty4kbyty0b].client-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

    [b-ty4kbyty0b].client-details h2 {
        font-size: 14px;
        font-weight: 600;
        margin: 0;
        color: #333;
    }

    [b-ty4kbyty0b].client-details p {
        font-size: 11px;
        color: #8E8E8E;
        margin: 0;
    }

[b-ty4kbyty0b] .appointment-card .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
    background: transparent;
    border: none;
}

[b-ty4kbyty0b] .appointment-card .reason-section {
    text-align: left;
    margin-left: 14px;
}

    [b-ty4kbyty0b] .appointment-card .reason-section h3 {
        font-size: 10px;
        margin: 0;
        font-weight: 500;
        color: #8E8E8E;
    }

[b-ty4kbyty0b] .appointment-card .reason {
    font-weight: 600;
    font-size: 12px;
    margin: 4px 0 0 0;
    color: #171717;
}

[b-ty4kbyty0b] .appointment-card .card-footer {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 8px;
    background: transparent;
    border: none;
}

    [b-ty4kbyty0b] .appointment-card .card-footer .icon {
        margin-right: 4px;
        font-size: 12px;
    }

    [b-ty4kbyty0b] .appointment-card .card-footer .date,
    [b-ty4kbyty0b] .appointment-card .card-footer .time {
        display: flex;
        align-items: center;
        font-size: 11px;
        color: #8E8E8E;
    }

[b-ty4kbyty0b] .appointment-cards-listview .k-listview-content {
    display: flex;
    flex-direction: row;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 130px;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

    [b-ty4kbyty0b] .appointment-cards-listview .k-listview-content::-webkit-scrollbar {
        display: none;
    }

[b-ty4kbyty0b] .appointment-cards .k-listview {
    background-color: transparent !important;
    overflow: visible;
    border: none !important;
    box-shadow: none !important;
}

/* Remove any Telerik ListView item borders */
[b-ty4kbyty0b] .k-listview-item {
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}


/* Calendar Container */
[b-ty4kbyty0b] .calendar-container {
    flex: 1 1 auto;
    max-height: 65%;
    height: auto;
    overflow-y: hidden;
    margin: 10px 20px 20px 20px;
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[b-ty4kbyty0b] .month-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 8px;
    color: #464646;
}

.month[b-ty4kbyty0b] {
    padding-top: 8px;
    font-size: 18px;
    font-weight: 600;
}

[b-ty4kbyty0b] .month-selector button {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.arrows[b-ty4kbyty0b] {
    color: #DDDDDD;
}

[b-ty4kbyty0b] .day-labels {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: left;
    margin-bottom: 6px;
    padding-left: 30px;
    font-size: 18px;
    color: #8E8E8E;
}

[b-ty4kbyty0b] .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    justify-items: stretch;
}

/* Individual Day Cell */
[b-ty4kbyty0b] .calendar-day {
    background: transparent;
    border-top: 1px solid #E0E0E0;
    border-left: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    aspect-ratio: 2 / 1;
    text-align: left;
    padding-left: 30px;
    padding-top: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 18px;
    height: 70px;
    font-weight: 500;
}

    /* Remove left border for first column */
    [b-ty4kbyty0b] .calendar-day:nth-child(7n + 1) {
        border-left: none;
    }

    /* Remove right border for last column */
    [b-ty4kbyty0b] .calendar-day:nth-child(7n) {
        border-right: none;
    }

    /* Remove top border for first row */
    [b-ty4kbyty0b] .calendar-day:nth-child(-n + 7) {
        border-top: none;
    }

    /* Remove bottom border for last row */
    [b-ty4kbyty0b] .calendar-day:nth-last-child(-n + 7) {
        border-bottom: none;
    }

    [b-ty4kbyty0b] .calendar-day.selected {
        background: #FFF6E8 !important;
        color: #FFBE52 !important;
    }

    [b-ty4kbyty0b] .calendar-day.today .day-number {
        background: linear-gradient(180.55deg, #FFC357 40%, #FE8000 70%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }


    /* Today + Selected (if selected date is also today) */
    [b-ty4kbyty0b] .calendar-day.today.selected {
        background: #FFF6E8 !important;
    }

        [b-ty4kbyty0b] .calendar-day.today.selected .day-number {
            background: linear-gradient(180.55deg, #FFC357 40%, #FE8000 70%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

/* Day number container for positioning the dot */
[b-ty4kbyty0b] .day-number-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

[b-ty4kbyty0b] .calendar-day .day-number {
    display: inline-block;
}

[b-ty4kbyty0b] .calendar-day .appointment-dot {
    width: 8px;
    height: 8px;
    background: #FFBE52;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

[b-ty4kbyty0b] .calendar-day.empty {
    background: transparent;
    pointer-events: none;
}

[b-ty4kbyty0b] .calendar-day.outside-month {
    color: #8E8E8E;
    pointer-events: none;
}

    [b-ty4kbyty0b] .calendar-day.outside-month:hover {
        background: transparent;
        cursor: default;
    }
/* /Pages/Clients.razor.rz.scp.css */
/* Main layout */
.clients-page[b-jcvuvp47wp] {
    padding: 30px 20px 20px 20px;
    margin: 0 auto;
    min-height: 100vh;
}

/* Header */
.header[b-jcvuvp47wp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-top: 20px;
}

/* Search input */
.search-wrapper[b-jcvuvp47wp] {
    position: relative;
    width: 372px;
    min-width: 300px;
}

.search-input[b-jcvuvp47wp] {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 17px;
    background-color: white;
    font-size: 18px;
    outline: none;
    box-shadow: 0px 2px 9px 0px #00000017;
    padding: 0 20px;
}

/* Logos */
.logos[b-jcvuvp47wp] {
    display: flex;
    gap: 30px;
}

.logo[b-jcvuvp47wp] {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 30px;
}

.ignite-logo img[b-jcvuvp47wp] {
    width: 62px;
    height: 62px;
    margin-top: 20px;
}

.hg-logo img[b-jcvuvp47wp] {
    margin-top: 20px;
    width: 80px;
    height: 97px;
}

/* Client grid */
.clients-grid[b-jcvuvp47wp] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Client item */
.client-item[b-jcvuvp47wp] {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 15px;
    transition: transform 0.2s;
    background-color: transparent;
    border-radius: 15px;
    margin-bottom: 15px;
    position: relative;
}

    .client-item:hover[b-jcvuvp47wp] {
        transform: translateY(-3px);
    }

/* Client photo */
.client-photo[b-jcvuvp47wp] {
    margin-right: 20px;
}

    .client-photo img[b-jcvuvp47wp] {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        object-fit: cover;
    }

/* Client info */
.client-info[b-jcvuvp47wp] {
    display: flex;
    flex-direction: column;
}

    .client-info h2[b-jcvuvp47wp] {
        font-size: 24px;
        font-weight: 500;
        margin: 0 0 10px 0;
        color: #333;
    }

.client-details[b-jcvuvp47wp] {
    display: flex;
    align-items: center;
}

.height-gender[b-jcvuvp47wp] {
    font-size: 16px;
    color: #aaa;
    margin-right: 10px;
}

/* Status icon */
.status-icon[b-jcvuvp47wp] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: 5px;
}

    .status-icon.active[b-jcvuvp47wp] {
        background: rgba(175, 237, 83, 0.2);
    }

        .status-icon.active[b-jcvuvp47wp]  svg {
            fill: #8BC34A;
            width: 16px;
            height: 16px;
        }

    .status-icon.inactive[b-jcvuvp47wp] {
        background: rgba(244, 67, 54, 0.1);
    }

        .status-icon.inactive[b-jcvuvp47wp]  svg {
            fill: #F44336;
            width: 16px;
            height: 16px;
        }

/* Responsive adjustments */
@media (max-width: 768px) {
    .header[b-jcvuvp47wp] {
        flex-direction: column;
        gap: 20px;
    }

    .search-wrapper[b-jcvuvp47wp] {
        width: 100%;
    }

    .clients-grid[b-jcvuvp47wp] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Dashboard.razor.rz.scp.css */
.dashboard-container[b-ln2hlsftpw] {
    width: 100%;
    max-width: 1500px;
    height: calc(100vh - 100px);
    margin: 0 auto;
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 0px;
    overflow: visible;
    background: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Top Section Styles */
.top-section[b-ln2hlsftpw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
}

.client-info[b-ln2hlsftpw] {
    display: flex;
    align-items: center;
    position: relative;
}

.back-button[b-ln2hlsftpw] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 15px;
}

    .back-button img[b-ln2hlsftpw] {
        width: 11px;
        height: 23px;
    }

.profile-photo[b-ln2hlsftpw] {
    width: 79px;
    height: 79px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 30px;
    margin-right: 15px;
}

.client-details[b-ln2hlsftpw] {
    display: flex;
    flex-direction: column;
}

    .client-details h2[b-ln2hlsftpw] {
        font-size: 20px;
        font-weight: 600;
        margin: 0;
        color: #333;
    }

    .client-details p[b-ln2hlsftpw] {
        font-size: 16px;
        color: #666;
        margin: 0;
    }

.message-icon[b-ln2hlsftpw] {
    position: relative;
    margin-left: 20px;
}

.message-badge[b-ln2hlsftpw] {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #4B9BF7;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos[b-ln2hlsftpw] {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Activities Panel Styles */
.activities-panel[b-ln2hlsftpw] {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: 190px;
    padding: 0 0 20px 0; /* Remove side padding */
    margin: 0 auto 10px auto; /* Center it */
    max-width: 1100px;
    width: 100%;
    justify-content: flex-start;
}


.activity-image[b-ln2hlsftpw] {
    height: 100px;
    min-width: 150px;
    flex: 0 0 auto;
    border-radius: 10px;
    object-fit: cover;
    scroll-snap-align: start;
}

.activities-panel[b-ln2hlsftpw]::-webkit-scrollbar {
    display: none;
}

/* Steps Chart Panel Styles */
.steps-container[b-ln2hlsftpw] {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    margin: 20px auto 0 auto; /* Adds spacing from activities panel */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 1100px;
    box-sizing: border-box;
    height: auto;
    min-height: 320px; /* Reduce height slightly to match */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}




.steps-header[b-ln2hlsftpw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.steps-count-filter[b-ln2hlsftpw] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.steps-count[b-ln2hlsftpw] {
    display: flex;
    align-items: baseline;
    gap: 5px;
    line-height: 1;
}

    .steps-count h3[b-ln2hlsftpw] {
        font-size: 32px;
        font-weight: 600;
        color: #333;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .steps-count p[b-ln2hlsftpw] {
        font-size: 16px;
        color: #666;
        margin: 0;
        display: flex;
        align-items: center;
        padding-bottom: 2px; /* Slight adjustment to align with the number */
    }

.time-filter[b-ln2hlsftpw] {
    display: flex;
    gap: 10px;
    margin-left: 15px; /* Add some spacing between steps count and time filter */
}

.chart-type[b-ln2hlsftpw] {
    margin-left: auto; /* Push the dropdown to the right */
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.filter-button[b-ln2hlsftpw] {
    padding: 5px 15px;
    border: none;
    background: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

    .filter-button.active[b-ln2hlsftpw] {
        background: linear-gradient(360deg, #FE8000 0%, #FFC357 100%);
        border-radius: 3px;
        color: white;
        border: none;
        padding: 5px 15px;
        cursor: pointer;
        font-weight:bold;
    }

.chart-type-wrapper[b-ln2hlsftpw] {
    margin-left: auto; /* Aligns dropdown to the right */
}

.dropdown[b-ln2hlsftpw] {
    padding: 5px 10px;
    border: none;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    cursor: pointer;
}

/* Telerik Chart Customization */
/* Telerik Chart Base Layout */
:deep(.k-chart)[b-ln2hlsftpw],
:deep(.k-chart-surface)[b-ln2hlsftpw],
.telerik-blazor.k-chart svg[b-ln2hlsftpw] {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    overflow: visible !important;
    background-color: transparent !important;
    border: none;
}

/* Chart background and line fill */
:deep(.k-chart-area)[b-ln2hlsftpw] {
    fill-opacity: 0.3;
    fill: #60BFF8;
}

:deep(.k-area-series .k-line)[b-ln2hlsftpw] {
    stroke-width: 3px;
    stroke: #60BFF8;
}

/* Axis label styling */
:deep(.k-chart-category-axis text)[b-ln2hlsftpw],
:deep(.k-chart-value-axis text)[b-ln2hlsftpw] {
    fill: #666;
    font-size: 14px;
}


/* Scrollbar Styling */
.activities-panel[b-ln2hlsftpw]::-webkit-scrollbar {
    height: 6px;
}

.activities-panel[b-ln2hlsftpw]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.activities-panel[b-ln2hlsftpw]::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

    .activities-panel[b-ln2hlsftpw]::-webkit-scrollbar-thumb:hover {
        background: #ccc;
    }

.target-box[b-ln2hlsftpw] {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 5px 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* soft shadow */
    color: #000; /* default to black for number */
    gap: 4px;
}

    .target-box .label[b-ln2hlsftpw] {
        color: #B9B9B9;
    }

    .target-box .value[b-ln2hlsftpw] {
        color: #000000;
        font-weight: 500;
    }

.footer-text[b-ln2hlsftpw] {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 20px;
}

.chart-right-group[b-ln2hlsftpw] {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* /Pages/EnergyDashboard.razor.rz.scp.css */
.dashboard-container[b-r2qwx8zxf8] {
    width: 100%;
    max-width: 1500px;
    height: calc(100vh - 100px);
    margin: 0 auto;
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 0px;
    overflow: visible;
    background: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Top Section Styles */
.top-section[b-r2qwx8zxf8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
}

.client-info[b-r2qwx8zxf8] {
    display: flex;
    align-items: center;
    position: relative;
}

.back-button[b-r2qwx8zxf8] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 15px;
}

    .back-button img[b-r2qwx8zxf8] {
        width: 11px;
        height: 23px;
    }

.profile-photo[b-r2qwx8zxf8] {
    width: 79px;
    height: 79px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 30px;
    margin-right: 15px;
}

.client-details[b-r2qwx8zxf8] {
    display: flex;
    flex-direction: column;
}

    .client-details h2[b-r2qwx8zxf8] {
        font-size: 20px;
        font-weight: 600;
        margin: 0;
        color: #333;
    }

    .client-details p[b-r2qwx8zxf8] {
        font-size: 16px;
        color: #666;
        margin: 0;
    }

.logos[b-r2qwx8zxf8] {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo[b-r2qwx8zxf8] {
    width: 66px;
    height: 66px;
}

.hg-logo img[b-r2qwx8zxf8] {
    margin-top: 20px;
    width: 80px;
    height: 97px;
}


/* Steps Chart Panel Styles */
.steps-container[b-r2qwx8zxf8] {
    background-color: white;
    border-radius: 20px;
    margin: 0px auto 0 auto; /* Adds spacing from activities panel */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 1100px;
    box-sizing: border-box;
    padding: 20px;
    height: 100%;
    max-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}




.steps-header[b-r2qwx8zxf8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.steps-count-filter[b-r2qwx8zxf8] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.steps-count[b-r2qwx8zxf8] {
    display: flex;
    align-items: baseline;
    gap: 5px;
    line-height: 1;
}

    .steps-count h3[b-r2qwx8zxf8] {
        font-size: 32px;
        font-weight: 600;
        color: #333;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .steps-count p[b-r2qwx8zxf8] {
        font-size: 16px;
        color: #666;
        margin: 0;
        display: flex;
        align-items: center;
        padding-bottom: 2px; /* Slight adjustment to align with the number */
    }

.time-filter[b-r2qwx8zxf8] {
    display: flex;
    gap: 10px;
    margin-left: 15px; /* Add some spacing between steps count and time filter */
}


.filter-button[b-r2qwx8zxf8] {
    padding: 5px 15px;
    border: none;
    background: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

    .filter-button.active[b-r2qwx8zxf8] {
        background: linear-gradient(360deg, #FE8000 0%, #FFC357 100%);
        border-radius: 3px;
        color: white;
        border: none;
        padding: 5px 15px;
        cursor: pointer;
        font-weight: bold;
    }


/* Telerik Chart Customization */
/* Telerik Chart Base Layout */
:deep(.k-chart)[b-r2qwx8zxf8],
:deep(.k-chart-surface)[b-r2qwx8zxf8],
.telerik-blazor.k-chart svg[b-r2qwx8zxf8] {
    width: 100% !important;
    height: 250px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    overflow: visible !important;
    background-color: transparent !important;
    border: none;
}

/* Chart background and line fill */
:deep(.k-chart-area)[b-r2qwx8zxf8] {
    fill-opacity: 0.3;
    fill: #60BFF8;
}

:deep(.k-area-series .k-line)[b-r2qwx8zxf8] {
    stroke-width: 3px;
    stroke: #60BFF8;
}

/* Axis label styling */
:deep(.k-chart-category-axis text)[b-r2qwx8zxf8],
:deep(.k-chart-value-axis text)[b-r2qwx8zxf8] {
    fill: #666;
    font-size: 14px;
}

.stats-cards[b-r2qwx8zxf8] {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0px;
    margin: 0 auto 5px auto;
    max-width: 1100px;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap; /* Important: single row like activities-panel */
}

    .stats-cards[b-r2qwx8zxf8]::-webkit-scrollbar {
        display: none;
    }



.stat-label[b-r2qwx8zxf8] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #8E8E8E;
    font-weight: 500;
    padding-bottom: 4px;
    padding-left: 5px;
}



.stat-card h3[b-r2qwx8zxf8] {
    margin: 0;
    font-size: 26px;
    color: #343434; /* dark text */
    font-weight: 600;
    padding-left: 6px;
    display: flex;
    align-items: baseline;
    gap: 1px; /* space between value and its label */
}

.value-label[b-r2qwx8zxf8] {
    font-size: 10px;
    color: #8E8E8E;
    font-weight: 300;
}

.stat-card .target[b-r2qwx8zxf8] {
    padding-left: 12px;
    font-size: 12px;
    color: #A9A9A9;
    font-weight: 200;
}


.stats-cards-listview .k-listview-content[b-r2qwx8zxf8] {
    display: flex;
    flex-direction: row;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 130px;
}

    .stats-cards-listview .k-listview-content[b-r2qwx8zxf8]::-webkit-scrollbar {
        display: none;
    }




/* Telerik Chart Customization */
:deep(.k-chart)[b-r2qwx8zxf8] {
    border: none;
    background: transparent;
}

[b-r2qwx8zxf8](.k-chart-surface) {
    background-color: transparent !important;
}

:deep(.k-chart-area)[b-r2qwx8zxf8] {
    fill-opacity: 0.3;
    fill: #60BFF8;
}

:deep(.k-area-series .k-line)[b-r2qwx8zxf8] {
    stroke-width: 3px;
    stroke: #60BFF8;
}

:deep(.k-chart-category-axis text)[b-r2qwx8zxf8] {
    fill: #666;
    font-size: 14px;
}

:deep(.k-chart-value-axis text)[b-r2qwx8zxf8] {
    fill: #666;
    font-size: 14px;
}

/* Scrollbar Styling */
.activities-panel[b-r2qwx8zxf8]::-webkit-scrollbar {
    height: 6px;
}

.activities-panel[b-r2qwx8zxf8]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.activities-panel[b-r2qwx8zxf8]::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

    .activities-panel[b-r2qwx8zxf8]::-webkit-scrollbar-thumb:hover {
        background: #ccc;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .calories-header[b-r2qwx8zxf8] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .time-filter[b-r2qwx8zxf8], .chart-type[b-r2qwx8zxf8] {
        align-self: center;
    }

    [b-r2qwx8zxf8](.k-chart) {
        height: 400px !important;
    }
}

@media (max-width: 480px) {
    :: deep(.k-chart)[b-r2qwx8zxf8] {
        height: 300px !important;
    }
}
/* These styles now use ::deep to penetrate Blazor CSS isolation */

[b-r2qwx8zxf8] .stats-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    justify-content: space-between;
    background-color: transparent !important;
}

[b-r2qwx8zxf8] .stats-cards-item.stat-card {
    background: #fff;
    border-radius: 16.88px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    width: 180.83px;
    height: 90px;
    text-align: left;
    border: none;
}

[b-r2qwx8zxf8] .stat-card .label {
    font-size: 14px;
    color: #8E8E8E;
    margin-bottom: 4px;
}

[b-r2qwx8zxf8] .stat-card h3 {
    margin: 3px;
    font-size: 24px;
    color: #343434;
}

[b-r2qwx8zxf8] .stat-card .target {
    font-size: 12px;
    color: #A9A9A9;
}

[b-r2qwx8zxf8] .stats-cards-listview .k-listview-content {
    display: flex;
    flex-direction: row;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 110px;
    background-color: transparent !important;
}

    [b-r2qwx8zxf8] .stats-cards-listview .k-listview-content::-webkit-scrollbar {
        display: none;
    }

[b-r2qwx8zxf8] .stats-cards .k-listview {
    background-color: transparent !important;
    overflow: visible
}

.stat-dot[b-r2qwx8zxf8] {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 60%;
    background: #ccc;
    transition: background 0.2s;
}

    .stat-dot.active[b-r2qwx8zxf8] {
        background: orange;
    }
/* /Pages/MealPlan.razor.rz.scp.css */
/* Fixed Layout Approach */
.dashboard-container[b-bu6o76bqc4] {
    width: 100%;
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}

.top-section[b-bu6o76bqc4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* Meal Plan Content - takes remaining height */
.meal-plan-content[b-bu6o76bqc4] {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.client-info[b-bu6o76bqc4] {
    display: flex;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.back-button[b-bu6o76bqc4] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 15px;
}

    .back-button img[b-bu6o76bqc4] {
        width: 11px;
        height: 23px;
    }

.profile-photo[b-bu6o76bqc4] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 10px;
    margin-right: 15px;
}

.client-details[b-bu6o76bqc4] {
    display: flex;
    flex-direction: column;
}

    .client-details h2[b-bu6o76bqc4] {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
        color: #333;
    }

    .client-details p[b-bu6o76bqc4] {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

.logos[b-bu6o76bqc4] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo[b-bu6o76bqc4] {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.hg-logo[b-bu6o76bqc4] {
    width: 60px;
    height: 73px;
}

.page-title[b-bu6o76bqc4] {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

/* Month and Year Navigation */
.month-selector[b-bu6o76bqc4] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.month-year[b-bu6o76bqc4] {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.month-nav-btn[b-bu6o76bqc4] {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f5f5f5;
    transition: all 0.2s ease;
}

    .month-nav-btn:hover[b-bu6o76bqc4] {
        background-color: #e0e0e0;
    }

    .month-nav-btn img[b-bu6o76bqc4] {
        width: 10px;
        height: 10px;
    }

/* View Toggle */
.view-toggle[b-bu6o76bqc4] {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.toggle-btn[b-bu6o76bqc4] {
    padding: 8px 16px;
    border: none;
    border-radius: 50px;
    background-color: #f5f5f5;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .toggle-btn.active[b-bu6o76bqc4] {
        background: linear-gradient(to bottom, #FFC357, #FE8000);
        color: white;
        box-shadow: 0 2px 5px rgba(254, 128, 0, 0.2);
    }

/* Day View Header with Date */
.day-view-header[b-bu6o76bqc4] {
    text-align: center;
    margin-bottom: 15px;
}

.selected-date[b-bu6o76bqc4] {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* Calendar View */
.calendar-container[b-bu6o76bqc4] {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.day-labels[b-bu6o76bqc4] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.day-label[b-bu6o76bqc4] {
    text-align: center;
    font-weight: 500;
    color: #666;
    padding: 5px 0;
    font-size: 14px;
}

.calendar-grid[b-bu6o76bqc4] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day[b-bu6o76bqc4] {
    aspect-ratio: 1 / 1;
    padding: 5px;
    border-radius: 10px;
    background-color: #f8f8f8;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

    .calendar-day:hover[b-bu6o76bqc4] {
        background-color: #f0f0f0;
    }

    .calendar-day.empty[b-bu6o76bqc4] {
        background-color: transparent;
        cursor: default;
    }

    .calendar-day.today[b-bu6o76bqc4] {
        border: 2px solid #FFC357;
    }

    .calendar-day.selected[b-bu6o76bqc4] {
        background: linear-gradient(to bottom, #FFC357, #FE8000);
        color: white;
    }

.day-number[b-bu6o76bqc4] {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.calendar-day.selected .day-number[b-bu6o76bqc4] {
    color: white;
}

.meal-indicators[b-bu6o76bqc4] {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-top: auto;
}

.meal-dot[b-bu6o76bqc4] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

    .meal-dot.breakfast[b-bu6o76bqc4] {
        background-color: #FF9800;
    }

    .meal-dot.lunch[b-bu6o76bqc4] {
        background-color: #4CAF50;
    }

    .meal-dot.dinner[b-bu6o76bqc4] {
        background-color: #2196F3;
    }

    .meal-dot.snacks[b-bu6o76bqc4] {
        background-color: #9C27B0;
    }

.calendar-day.selected .meal-dot[b-bu6o76bqc4] {
    opacity: 0.8;
}

/* Improved Week Navigation */
.week-navigation[b-bu6o76bqc4] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    width: 100%;
    gap: 5px;
}

.week-nav-btn[b-bu6o76bqc4] {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

/* Day Selection Pills - Centered and with fixed width */
.day-selection[b-bu6o76bqc4] {
    display: flex;
    gap: 8px;
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    margin: 0 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    justify-content: center;
}

    .day-selection[b-bu6o76bqc4]::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

.day-pill[b-bu6o76bqc4] {
    padding: 10px 0;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f5f5f5;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    min-width: 90px;
}

    .day-pill.active[b-bu6o76bqc4] {
        background: linear-gradient(to bottom, #FFC357, #FE8000);
        color: white;
        box-shadow: 0 4px 8px rgba(254, 128, 0, 0.2);
    }

.day-name[b-bu6o76bqc4] {
    font-weight: 500;
    margin-bottom: 4px;
}

.day-date[b-bu6o76bqc4] {
    font-size: 12px;
    opacity: 0.8;
}

/* Meal Sections */
.meal-sections[b-bu6o76bqc4] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.meal-section[b-bu6o76bqc4] {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.meal-header[b-bu6o76bqc4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

    .meal-header h2[b-bu6o76bqc4] {
        font-size: 20px;
        font-weight: 600;
        color: #333;
        margin: 0;
    }

.add-meal-btn[b-bu6o76bqc4] {
    background: none;
    border: none;
    cursor: pointer;
}

.add-icon[b-bu6o76bqc4] {
    width: 20px;
    height: 20px;
}

.meal-cards[b-bu6o76bqc4] {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

    .meal-cards[b-bu6o76bqc4]::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

.meal-card[b-bu6o76bqc4] {
    min-width: 280px;
    max-width: 280px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

    .meal-card:hover[b-bu6o76bqc4] {
        transform: translateY(-4px);
    }

.meal-image[b-bu6o76bqc4] {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.meal-details[b-bu6o76bqc4] {
    padding: 12px;
}

.meal-title[b-bu6o76bqc4] {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.meal-nutrition[b-bu6o76bqc4] {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 12px;
    margin-bottom: 10px;
}

.meal-card-actions[b-bu6o76bqc4] {
    display: flex;
    gap: 8px;
}

.view-btn[b-bu6o76bqc4], .remove-btn[b-bu6o76bqc4] {
    padding: 6px 12px;
    border: none;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-btn[b-bu6o76bqc4] {
    background: linear-gradient(to bottom, #FFC357, #FE8000);
    color: white;
}

    .view-btn:hover[b-bu6o76bqc4] {
        box-shadow: 0 2px 8px rgba(254, 128, 0, 0.3);
    }

.remove-btn[b-bu6o76bqc4] {
    background-color: #f5f5f5;
    color: #666;
}

    .remove-btn:hover[b-bu6o76bqc4] {
        background-color: #e0e0e0;
    }

.empty-meal[b-bu6o76bqc4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 15px;
    width: 100%;
    text-align: center;
}

    .empty-meal p[b-bu6o76bqc4] {
        color: #666;
        margin-bottom: 15px;
        font-size: 14px;
    }

.add-btn[b-bu6o76bqc4] {
    padding: 8px 16px;
    background: linear-gradient(to bottom, #FFC357, #FE8000);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .add-btn:hover[b-bu6o76bqc4] {
        box-shadow: 0 2px 8px rgba(254, 128, 0, 0.3);
    }

/* Nutrition Summary Section */
.nutrition-summary[b-bu6o76bqc4] {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 40px;
}

    .nutrition-summary h2[b-bu6o76bqc4] {
        font-size: 20px;
        font-weight: 600;
        color: #333;
        margin: 0 0 15px 0;
    }

.nutrition-cards[b-bu6o76bqc4] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nutrition-card[b-bu6o76bqc4] {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f8f8f8;
    padding: 12px;
    border-radius: 15px;
    margin-bottom: 10px;
    transition: transform 0.2s ease;
}

    .nutrition-card:hover[b-bu6o76bqc4] {
        transform: translateY(-2px);
        background-color: #f0f0f0;
    }

.nutrition-icon[b-bu6o76bqc4] {
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.calories-icon[b-bu6o76bqc4] {
    background-color: #ffecef;
}

.protein-icon[b-bu6o76bqc4] {
    background-color: #e9f7ef;
}

.carbs-icon[b-bu6o76bqc4] {
    background-color: #fff5e6;
}

.fat-icon[b-bu6o76bqc4] {
    background-color: #eff5fb;
}

.nutrition-details[b-bu6o76bqc4] {
    display: flex;
    flex-direction: column;
}

.nutrition-value[b-bu6o76bqc4] {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.nutrition-label[b-bu6o76bqc4] {
    font-size: 12px;
    color: #666;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .top-section[b-bu6o76bqc4] {
        padding: 5px 0;
    }

    .client-info[b-bu6o76bqc4] {
        margin-bottom: 10px;
    }

    .profile-photo[b-bu6o76bqc4] {
        width: 50px;
        height: 50px;
        margin-left: 5px;
        margin-right: 10px;
    }

    .client-details h2[b-bu6o76bqc4] {
        font-size: 16px;
    }

    .client-details p[b-bu6o76bqc4] {
        font-size: 12px;
    }

    .logo[b-bu6o76bqc4] {
        width: 40px;
        height: 40px;
    }

    .hg-logo[b-bu6o76bqc4] {
        width: 50px;
        height: 61px;
    }

    .day-pill[b-bu6o76bqc4] {
        padding: 6px 0;
        font-size: 12px;
        min-width: 80px;
    }

    .meal-header h2[b-bu6o76bqc4] {
        font-size: 18px;
    }

    .meal-section[b-bu6o76bqc4] {
        padding: 12px;
    }

    .nutrition-card[b-bu6o76bqc4] {
        min-width: 100px;
    }

    .calendar-day[b-bu6o76bqc4] {
        padding: 3px;
    }

    .day-number[b-bu6o76bqc4] {
        font-size: 14px;
    }

    .meal-dot[b-bu6o76bqc4] {
        width: 6px;
        height: 6px;
    }

    .selected-date[b-bu6o76bqc4] {
        font-size: 16px;
    }

    .week-navigation[b-bu6o76bqc4] {
        padding: 0 5px;
    }

    .week-nav-btn[b-bu6o76bqc4] {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
}

@media (max-width: 480px) {
    .dashboard-container[b-bu6o76bqc4] {
        padding: 5px;
    }

    .top-section[b-bu6o76bqc4] {
        flex-direction: column;
        align-items: flex-start;
    }

    .logos[b-bu6o76bqc4] {
        align-self: center;
        margin-top: 10px;
    }

    .nutrition-cards[b-bu6o76bqc4] {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .nutrition-card[b-bu6o76bqc4] {
        width: 100%;
    }

    .meal-card[b-bu6o76bqc4] {
        min-width: 240px;
    }

    .day-label[b-bu6o76bqc4] {
        font-size: 12px;
    }

    .day-number[b-bu6o76bqc4] {
        font-size: 12px;
    }

    .meal-dot[b-bu6o76bqc4] {
        width: 5px;
        height: 5px;
    }

    .month-year[b-bu6o76bqc4] {
        font-size: 18px;
    }

    .toggle-btn[b-bu6o76bqc4] {
        font-size: 12px;
        padding: 6px 12px;
    }

    .day-pill[b-bu6o76bqc4] {
        min-width: 70px;
        padding: 5px 0;
    }

    .day-name[b-bu6o76bqc4] {
        font-size: 12px;
    }

    .day-date[b-bu6o76bqc4] {
        font-size: 10px;
    }

    .week-nav-btn[b-bu6o76bqc4] {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .day-selection[b-bu6o76bqc4] {
        margin: 0 5px;
        gap: 5px;
    }
}
/* /Pages/NutritionDashboard.razor.rz.scp.css */
.dashboard-container[b-1ui11b80xo] {
    width: 100%;
    max-width: 1500px;
    height: calc(100vh - 100px);
    margin: 0 auto;
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 0px;
    overflow: visible;
    background: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
/* Top Section Styles */
.top-section[b-1ui11b80xo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
}

.client-info[b-1ui11b80xo] {
    display: flex;
    align-items: center;
    position: relative;
}

.back-button[b-1ui11b80xo] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 15px;
}

    .back-button img[b-1ui11b80xo] {
        width: 11px;
        height: 23px;
    }

.profile-photo[b-1ui11b80xo] {
    width: 79px;
    height: 79px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 30px;
    margin-right: 15px;
}

.client-details[b-1ui11b80xo] {
    display: flex;
    flex-direction: column;
}

    .client-details h2[b-1ui11b80xo] {
        font-size: 20px;
        font-weight: 600;
        margin: 0;
        color: #333;
    }

    .client-details p[b-1ui11b80xo] {
        font-size: 16px;
        color: #666;
        margin: 0;
    }

.logos[b-1ui11b80xo] {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo[b-1ui11b80xo] {
    width: 66px;
    height: 66px;
}

.hg-logo img[b-1ui11b80xo] {
    margin-top: 20px;
    width: 80px;
    height: 97px;
}

/* Activities Panel Styles */
.activities-panel[b-1ui11b80xo] {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: 90px;
    margin: 0 auto 20px auto; /* Center it */
    max-width: 1100px;
    width: 100%;
    justify-content: flex-start;
}


.activity-image[b-1ui11b80xo] {
    height: 90px;
    min-width: 150px;
    flex: 0 0 auto;
    border-radius: 10px;
    object-fit: cover;
    scroll-snap-align: start;
}

.activities-panel[b-1ui11b80xo]::-webkit-scrollbar {
    display: none;
}

/* Calories Chart Panel Styles */
.calories-container[b-1ui11b80xo] {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    margin: 5px auto 0 auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 1100px;
    box-sizing: border-box;
    height: 240px;
    min-height: unset;
    max-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.calories-header[b-1ui11b80xo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.calories-count-filter[b-1ui11b80xo] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.calories-count[b-1ui11b80xo] {
    display: flex;
    align-items: baseline;
    gap: 5px;
    line-height: 1;
}

    .calories-count h3[b-1ui11b80xo] {
        font-size: 24px;
        font-weight: 600;
        color: #333;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .calories-count p[b-1ui11b80xo] {
        font-size: 16px;
        color: #666;
        margin: 0;
        display: flex;
        align-items: center;
        padding-bottom: 2px; /* Slight adjustment to align with the number */
    }

.time-filter[b-1ui11b80xo] {
    display: flex;
    gap: 10px;
    margin-left: 15px; /* Add some spacing between steps count and time filter */
}


.filter-button[b-1ui11b80xo] {
    padding: 5px 15px;
    border: none;
    background: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

    .filter-button.active[b-1ui11b80xo] {
        background: linear-gradient(360deg, #FE8000 0%, #FFC357 100%);
        border-radius: 3px;
        color: white;
        border: none;
        padding: 5px 15px;
        cursor: pointer;
        font-weight:bold;
    }


/* Telerik Chart Customization */
/* Telerik Chart Base Layout */
:deep(.k-chart)[b-1ui11b80xo],
:deep(.k-chart-surface)[b-1ui11b80xo],
.telerik-blazor.k-chart svg[b-1ui11b80xo] {
    width: 100% !important;
    height: 180px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    overflow: visible !important;
    background-color: transparent !important;
    border: none;
}

/* Chart background and line fill */
:deep(.k-chart-area)[b-1ui11b80xo] {
    fill-opacity: 0.3;
    fill: #60BFF8;
}

:deep(.k-area-series .k-line)[b-1ui11b80xo] {
    stroke-width: 3px;
    stroke: #60BFF8;
}

/* Axis label styling */
:deep(.k-chart-category-axis text)[b-1ui11b80xo],
:deep(.k-chart-value-axis text)[b-1ui11b80xo] {
    fill: #666;
    font-size: 12px;
}



/* Scrollbar Styling */
.activities-panel[b-1ui11b80xo]::-webkit-scrollbar {
    height: 6px;
}

.activities-panel[b-1ui11b80xo]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.activities-panel[b-1ui11b80xo]::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

    .activities-panel[b-1ui11b80xo]::-webkit-scrollbar-thumb:hover {
        background: #ccc;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .calories-header[b-1ui11b80xo] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .time-filter[b-1ui11b80xo], .chart-type[b-1ui11b80xo] {
        align-self: center;
    }
}



.stats-cards[b-1ui11b80xo] {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0px;
    margin: 0 auto 5px auto;
    max-width: 1100px;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap; /* Important: single row like activities-panel */
}


.stats-cards-item.stat-card[b-1ui11b80xo] {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 180.83px;
    height: 90px;
    background: #fff;
    border-radius: 16.88px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: none;
}

.stats-cards[b-1ui11b80xo]::-webkit-scrollbar {
    display: none;
}


.stat-card .label[b-1ui11b80xo] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #8E8E8E;
    font-weight: 500;
    padding-bottom: 4px;
    padding-left: 5px;
}

.stat-card h3[b-1ui11b80xo] {
    margin: 0;
    font-size: 26px;
    color: #343434; /* dark text */
    font-weight: 600;
    padding-left: 6px;
    display: flex;
    align-items: baseline;
    gap: 1px; /* space between value and its label */
}

.value-label[b-1ui11b80xo] {
    font-size: 10px;
    color: #8E8E8E;
    font-weight: 300;
}

.stat-card .target[b-1ui11b80xo] {
    padding-left: 12px;
    font-size: 12px;
    color: #A9A9A9;
    font-weight: 200;
}

.stats-cards-listview .k-listview-content[b-1ui11b80xo] {
    display: flex;
    flex-direction: row;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 130px;
}

    .stats-cards-listview .k-listview-content[b-1ui11b80xo]::-webkit-scrollbar {
        display: none;
    }


[b-1ui11b80xo] .stats-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    justify-content: space-between;
    background-color: transparent !important;
}

[b-1ui11b80xo] .stats-cards-item.stat-card {
    background: #fff;
    border-radius: 16.88px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    width: 180.83px;
    height: 85px;
    text-align: left;
}

[b-1ui11b80xo] .stat-card .label {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

[b-1ui11b80xo] .stat-card h3 {
    margin: 3px;
    font-size: 24px;
    color: #333;
}

[b-1ui11b80xo] .stat-card .target {
    font-size: 12px;
    color: #aaa;
}

[b-1ui11b80xo] .stats-cards-listview .k-listview-content {
    display: flex;
    flex-direction: row;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 110px;
    background-color: transparent !important;
}

    [b-1ui11b80xo] .stats-cards-listview .k-listview-content::-webkit-scrollbar {
        display: none;
    }

[b-1ui11b80xo] .stats-cards .k-listview {
    background-color: transparent !important;
    overflow: visible
}

.stat-dot[b-1ui11b80xo] {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 60%;
    background: #ccc;
    transition: background 0.2s;
}

    .stat-dot.active[b-1ui11b80xo] {
        background: orange;
    }

.aligned-container[b-1ui11b80xo] {
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
}

/* /Pages/PhysicalDashboard.razor.rz.scp.css */
.dashboard-container[b-9rv7r4gup8] {
    width: 100%;
    max-width: 1500px;
    height: calc(100vh - 100px);
    margin: 0 auto;
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 0px;
    overflow: visible;
    background: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Top Section Styles */
.top-section[b-9rv7r4gup8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
}

.client-info[b-9rv7r4gup8] {
    display: flex;
    align-items: center;
    position: relative;
}

.back-button[b-9rv7r4gup8] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 15px;
}

    .back-button img[b-9rv7r4gup8] {
        width: 11px;
        height: 23px;
    }

.profile-photo[b-9rv7r4gup8] {
    width: 79px;
    height: 79px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 30px;
    margin-right: 15px;
}

.client-details[b-9rv7r4gup8] {
    display: flex;
    flex-direction: column;
}

    .client-details h2[b-9rv7r4gup8] {
        font-size: 20px;
        font-weight: 600;
        margin: 0;
        color: #333;
    }

    .client-details p[b-9rv7r4gup8] {
        font-size: 16px;
        color: #666;
        margin: 0;
    }

.logos[b-9rv7r4gup8] {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo[b-9rv7r4gup8] {
    width: 66px;
    height: 66px;
}

.hg-logo img[b-9rv7r4gup8] {
    margin-top: 20px;
    width: 80px;
    height: 97px;
}


/* Steps Chart Panel Styles */
.steps-container[b-9rv7r4gup8] {
    background-color: white;
    border-radius: 20px;
    margin: 0px auto 0 auto; /* Adds spacing from activities panel */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 1100px;
    box-sizing: border-box;
    padding: 20px;
    height: 100%;
    max-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}




.steps-header[b-9rv7r4gup8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.steps-count-filter[b-9rv7r4gup8] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.steps-count[b-9rv7r4gup8] {
    display: flex;
    align-items: baseline;
    gap: 5px;
    line-height: 1;
}

    .steps-count h3[b-9rv7r4gup8] {
        font-size: 32px;
        font-weight: 600;
        color: #333;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .steps-count p[b-9rv7r4gup8] {
        font-size: 16px;
        color: #666;
        margin: 0;
        display: flex;
        align-items: center;
        padding-bottom: 2px; /* Slight adjustment to align with the number */
    }

.time-filter[b-9rv7r4gup8] {
    display: flex;
    gap: 10px;
    margin-left: 15px; /* Add some spacing between steps count and time filter */
}


.filter-button[b-9rv7r4gup8] {
    padding: 5px 15px;
    border: none;
    background: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

    .filter-button.active[b-9rv7r4gup8] {
        background: linear-gradient(360deg, #FE8000 0%, #FFC357 100%);
        border-radius: 3px;
        color: white;
        border: none;
        padding: 5px 15px;
        cursor: pointer;
        font-weight: bold;
    }


/* Telerik Chart Customization */
/* Telerik Chart Base Layout */
:deep(.k-chart)[b-9rv7r4gup8],
:deep(.k-chart-surface)[b-9rv7r4gup8],
.telerik-blazor.k-chart svg[b-9rv7r4gup8] {
    width: 100% !important;
    height: 250px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    overflow: visible !important;
    background-color: transparent !important;
    border: none;
}

/* Chart background and line fill */
:deep(.k-chart-area)[b-9rv7r4gup8] {
    fill-opacity: 0.3;
    fill: #60BFF8;
}

:deep(.k-area-series .k-line)[b-9rv7r4gup8] {
    stroke-width: 3px;
    stroke: #60BFF8;
}

/* Axis label styling */
:deep(.k-chart-category-axis text)[b-9rv7r4gup8],
:deep(.k-chart-value-axis text)[b-9rv7r4gup8] {
    fill: #666;
    font-size: 14px;
}

.stats-cards[b-9rv7r4gup8] {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0px;
    margin: 0 auto 5px auto;
    max-width: 1100px;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap; /* Important: single row like activities-panel */
}

.stats-cards[b-9rv7r4gup8]::-webkit-scrollbar {
    display: none;
}



.stat-label[b-9rv7r4gup8] {
    display: flex;
    align-items: center;
    gap: 8px; 
    font-size: 12px;
    color: #8E8E8E;
    font-weight: 500;
    padding-bottom: 4px;
    padding-left:5px;
}



.stat-card h3[b-9rv7r4gup8] {
    margin: 0;
    font-size: 26px;
    color: #343434; /* dark text */
    font-weight: 600; 
    padding-left: 6px;
    display: flex;
    align-items: baseline;
    gap: 1px; /* space between value and its label */
}

.value-label[b-9rv7r4gup8] {
    font-size: 10px;
    color: #8E8E8E;
    font-weight: 300;
}

.stat-card .target[b-9rv7r4gup8] {
    padding-left: 12px;
    font-size: 12px;
    color: #A9A9A9; 
    font-weight: 200; 
}
 

.stats-cards-listview .k-listview-content[b-9rv7r4gup8] {
    display: flex;
    flex-direction: row;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 130px;
}

    .stats-cards-listview .k-listview-content[b-9rv7r4gup8]::-webkit-scrollbar {
        display: none;
    }




/* Telerik Chart Customization */
:deep(.k-chart)[b-9rv7r4gup8] {
    border: none;
    background: transparent;
}

[b-9rv7r4gup8](.k-chart-surface) {
    background-color: transparent !important;
}

:deep(.k-chart-area)[b-9rv7r4gup8] {
    fill-opacity: 0.3;
    fill: #60BFF8; 
}

:deep(.k-area-series .k-line)[b-9rv7r4gup8] {
    stroke-width: 3px;
    stroke: #60BFF8; 
}

:deep(.k-chart-category-axis text)[b-9rv7r4gup8] {
    fill: #666;
    font-size: 14px;
}

:deep(.k-chart-value-axis text)[b-9rv7r4gup8] {
    fill: #666;
    font-size: 14px;
}

/* Scrollbar Styling */
.activities-panel[b-9rv7r4gup8]::-webkit-scrollbar {
    height: 6px;
}

.activities-panel[b-9rv7r4gup8]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.activities-panel[b-9rv7r4gup8]::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

    .activities-panel[b-9rv7r4gup8]::-webkit-scrollbar-thumb:hover {
        background: #ccc;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .calories-header[b-9rv7r4gup8] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .time-filter[b-9rv7r4gup8], .chart-type[b-9rv7r4gup8] {
        align-self: center;
    }

    [b-9rv7r4gup8](.k-chart) {
        height: 400px !important;
    }
}

@media (max-width: 480px) {
    :: deep(.k-chart)[b-9rv7r4gup8] {
        height: 300px !important;
    }
}
/* These styles now use ::deep to penetrate Blazor CSS isolation */

[b-9rv7r4gup8] .stats-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    justify-content: space-between;
    background-color: transparent !important;
}

[b-9rv7r4gup8] .stats-cards-item.stat-card {
    background: #fff;
    border-radius: 16.88px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    width: 180.83px;
    height: 90px;
    text-align: left;
    border: none;
}

[b-9rv7r4gup8] .stat-card .label {
    font-size: 14px;
    color: #8E8E8E;
    margin-bottom: 4px;
}

[b-9rv7r4gup8] .stat-card h3 {
    margin: 3px;
    font-size: 24px;
    color: #343434;
}

[b-9rv7r4gup8] .stat-card .target {
    font-size: 12px;
    color: #A9A9A9;
}

[b-9rv7r4gup8] .stats-cards-listview .k-listview-content {
    display: flex;
    flex-direction: row;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 110px;
    background-color: transparent !important;
}

    [b-9rv7r4gup8] .stats-cards-listview .k-listview-content::-webkit-scrollbar {
        display: none;
    }

[b-9rv7r4gup8] .stats-cards .k-listview {
    background-color: transparent !important;
    overflow: visible
}

.stat-dot[b-9rv7r4gup8] {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 60%;
    background: #ccc;
    transition: background 0.2s;
}

    .stat-dot.active[b-9rv7r4gup8] {
        background: orange;
    }
/* /Pages/ProductDetails.razor.rz.scp.css */
/* Product Details Container and Header */
.product-details-container[b-yyieimaldh] {
    padding: 20px;
    width: 100%;
    margin: auto;
}

.product-header[b-yyieimaldh] {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.product-image[b-yyieimaldh] {
    width: 312px;
    height: 231px;
    object-fit: cover;
    border-radius: 8px;
}

.product-header-info[b-yyieimaldh] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nutrition-facts[b-yyieimaldh] {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

    .nutrition-facts li[b-yyieimaldh] {
        margin-bottom: 6px;
    }

.product-info-grid[b-yyieimaldh] {
    display: flex;
    gap: 40px;
}

.ingredients-section[b-yyieimaldh], .other-info-section[b-yyieimaldh] {
    flex: 1;
}

    .ingredients-section ul[b-yyieimaldh], .other-info-section ul[b-yyieimaldh] {
        list-style: disc;
        padding-left: 20px;
    }

.dashboard-container[b-yyieimaldh] {
    overflow-y: auto;
    max-height: none !important;
    height: auto !important;
}

.top-section[b-yyieimaldh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
}

.client-info[b-yyieimaldh] {
    display: flex;
    align-items: center;
    position: relative;
}

.back-button[b-yyieimaldh] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 15px;
}

    .back-button img[b-yyieimaldh] {
        width: 11px;
        height: 23px;
    }

.profile-photo[b-yyieimaldh] {
    width: 79px;
    height: 79px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 30px;
    margin-right: 15px;
}

.client-details[b-yyieimaldh] {
    display: flex;
    flex-direction: column;
}

    .client-details h2[b-yyieimaldh] {
        font-size: 20px;
        font-weight: 600;
        margin: 0;
        color: #333;
    }

    .client-details p[b-yyieimaldh] {
        font-size: 16px;
        color: #666;
        margin: 0;
    }

.logos[b-yyieimaldh] {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo[b-yyieimaldh] {
    width: 66px;
    height: 66px;
}

.hg-logo[b-yyieimaldh] {
    width: 80px;
    height: auto;
}

/* Nutrition Section Styles */
.nutrition-section[b-yyieimaldh] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.nutrition-pill[b-yyieimaldh] {
    background-color: #ffffff;
    padding: 14px 10px;
    border-radius: 10px;
    text-align: center;
    min-width: 100px;
    flex: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

    .nutrition-pill .label[b-yyieimaldh] {
        font-size: 14px;
        color: #888;
        margin: 0;
    }

    .nutrition-pill .value[b-yyieimaldh] {
        font-size: 24px;
        font-weight: 700;
        color: #1b1b1b;
        margin: 5px 0 0;
    }

/* Micronutrition Section Styles */
.micronutrition-section[b-yyieimaldh] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 30px;
}

.micronutrients-wrapper[b-yyieimaldh] {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.micronutrients-scroll[b-yyieimaldh] {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    flex-grow: 1;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

    .micronutrients-scroll[b-yyieimaldh]::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

.micronutrition-pill[b-yyieimaldh] {
    background-color: #ffffff;
    width: 150px;
    height: 63px;
    padding: 8px 10px;
    border-radius: 10px;
    text-align: center;
    flex: 0 0 150px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 5px;
}

    .micronutrition-pill .label[b-yyieimaldh] {
        font-size: 14px;
        color: #888;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .micronutrition-pill .value[b-yyieimaldh] {
        font-size: 18px;
        font-weight: 700;
        color: #1b1b1b;
        margin: 5px 0 0;
    }

.scroll-btn[b-yyieimaldh] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .scroll-btn img[b-yyieimaldh] {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
    }

.scroll-placeholder[b-yyieimaldh] {
    width: 20px;
    height: 20px;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .product-header[b-yyieimaldh] {
        flex-direction: column;
    }

    .product-image[b-yyieimaldh] {
        width: 100%;
        height: auto;
    }

    .nutrition-section[b-yyieimaldh] {
        flex-direction: column;
    }
}

.stats-cards[b-yyieimaldh] {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    justify-content: space-between;
}

.stat-card[b-yyieimaldh] {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex: 1 1 150px;
    min-width: 150px;
    max-width: 180px;
    text-align: center;
}

    .stat-card .label[b-yyieimaldh] {
        font-size: 14px;
        color: #666;
        margin-bottom: 4px;
    }

    .stat-card h3[b-yyieimaldh] {
        margin: 0;
        font-size: 24px;
        color: #333;
    }

    .stat-card .target[b-yyieimaldh] {
        font-size: 12px;
        color: #aaa;
    }

/* /Pages/RecipeDetails.razor.rz.scp.css */
html[b-tek9fi33hg], body[b-tek9fi33hg] {
    height: 100%;
    overflow-y: auto !important; 
}

.dashboard-container[b-tek9fi33hg] {
    overflow-y: auto; 
    max-height: none !important; 
    height: auto !important; 
}

.ingredients-wrapper[b-tek9fi33hg] {
    overflow: visible;
}

.top-section[b-tek9fi33hg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
}

.client-info[b-tek9fi33hg] {
    display: flex;
    align-items: center;
    position: relative;
}

.back-button[b-tek9fi33hg] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 15px;
}

    .back-button img[b-tek9fi33hg] {
        width: 11px;
        height: 23px;
    }

.profile-photo[b-tek9fi33hg] {
    width: 79px;
    height: 79px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 30px;
    margin-right: 15px;
}

.client-details[b-tek9fi33hg] {
    display: flex;
    flex-direction: column;
}

    .client-details h2[b-tek9fi33hg] {
        font-size: 20px;
        font-weight: 600;
        margin: 0;
        color: #333;
    }

    .client-details p[b-tek9fi33hg] {
        font-size: 16px;
        color: #666;
        margin: 0;
    }

.logos[b-tek9fi33hg] {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo[b-tek9fi33hg] {
    width: 66px;
    height: 66px;
}

.hg-logo img[b-tek9fi33hg] {
    margin-top: 20px;
    width: 80px;
    height: 97px;
}

.recipe-header[b-tek9fi33hg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 40px;
    color: #1b1b1b;
}

    .recipe-header h1[b-tek9fi33hg] {
        font-size: 46px;
        font-weight: 700;
        margin: 0;
        flex: 1;
        text-align: center;
    }

.recipe-actions[b-tek9fi33hg] {
    display: flex;
    align-items: center;
    gap: 40px;
}

.heart-icon[b-tek9fi33hg] {
    cursor: pointer;
}

.add-icon[b-tek9fi33hg] {
    cursor: pointer;
    margin-right: 20px;
}

.ingredients-wrapper[b-tek9fi33hg] {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.ingredients-scroll[b-tek9fi33hg] {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    flex-grow: 1;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

    .ingredients-scroll[b-tek9fi33hg]::-webkit-scrollbar {
        display: none;
    }

.scroll-btn[b-tek9fi33hg] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .scroll-btn img[b-tek9fi33hg] {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
    }

.scroll-placeholder[b-tek9fi33hg] {
    width: 20px;
    height: 20px;
}

.ingredient-item[b-tek9fi33hg] {
    flex: 0 0 auto;
    width: 150px;
    text-align: center;
}


.ingredient-img[b-tek9fi33hg] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
}

.ingredient-name[b-tek9fi33hg] {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    color: #1c1c1c;
}

.ingredient-amount[b-tek9fi33hg] {
    font-size: 13px;
    color: #9f9f9f;
    margin: 0;
}

.nutrition-section[b-tek9fi33hg] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;

}

.nutrition-pill[b-tek9fi33hg] {
    background-color: #ffffff;
    padding: 14px 10px;
    border-radius: 10px;
    text-align: center;
    min-width: 100px;
    flex: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

    .nutrition-pill .label[b-tek9fi33hg] {
        font-size: 14px;
        color: #888;
        margin: 0;
    }

    .nutrition-pill .value[b-tek9fi33hg] {
        font-size: 24px;
        font-weight: 700;
        color: #1b1b1b;
        margin: 5px 0 0;
    }

.micronutrition-section[b-tek9fi33hg] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.micronutrition-pill[b-tek9fi33hg] {
    background-color: #ffffff;
    width: 150px; /* Increased from 103px */
    height: 63px;
    padding: 8px 10px; /* Slightly increased padding */
    border-radius: 10px;
    text-align: center;
    flex: 0 0 150px; /* Changed from 1 1 90px to prevent squishing */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 5px;
}

    .micronutrition-pill .label[b-tek9fi33hg] {
        font-size: 14px; /* Increased from 11px for better readability */
        color: #888;
        margin: 0;
        white-space: nowrap; /* Prevents wrapping */
        overflow: hidden;
        text-overflow: ellipsis; /* Adds ... if text is too long */
    }

    .micronutrition-pill .value[b-tek9fi33hg] {
        font-size: 18px; /* Increased from 14px */
        font-weight: 700;
        color: #1b1b1b;
        margin: 5px 0 0;
    }

/* Make sure the scroll container accommodates the wider pills */
.micronutrients-scroll[b-tek9fi33hg] {
    display: flex;
    overflow-x: auto;
    gap: 10px; /* Reduced from 15px */
    flex-grow: 1;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 5px 0;
}

.micronutrients-wrapper[b-tek9fi33hg] {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.micronutrients-scroll[b-tek9fi33hg] {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    flex-grow: 1;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

    .micronutrients-scroll[b-tek9fi33hg]::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

/* Better Instructions Styling */
.instructions-section[b-tek9fi33hg] {
    margin: 0px 0 10px;

}


.instructions-header[b-tek9fi33hg] {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 15px;
}

    .instructions-header h2[b-tek9fi33hg] {
        font-size: 36px;
        font-weight: 600;
        margin: 0;
        color: #000;
        margin-right: 30px; 
    }

.time-indicator[b-tek9fi33hg] {
    display: flex;
    align-items: center;
    background-color: white; 
    border-radius: 30px;
    padding: 8px 15px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.clock-icon[b-tek9fi33hg] {
    margin-right: 8px;
}

.time-indicator span[b-tek9fi33hg] {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.instruction-group[b-tek9fi33hg] {
    margin-bottom: 30px;
}

    .instruction-group h3[b-tek9fi33hg] {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #222;
    }

.steps-list[b-tek9fi33hg] {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

    .steps-list li[b-tek9fi33hg] {
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 1.6;
    }

.step-content[b-tek9fi33hg] {
    display: flex;
    align-items: flex-start;
}

.step-number[b-tek9fi33hg] {
    font-weight: 700;
    margin-right: 10px;
    color: #333;
    flex-shrink: 0;
    width: 25px;
}

.step-text[b-tek9fi33hg] {
    flex-grow: 1;
}

/* Improved spacing between sections */
.nutrition-section[b-tek9fi33hg] {
    margin-top: 10px;
}

.micronutrition-section[b-tek9fi33hg] {
    margin-bottom: 30px;
}

/* Make ingredients more prominent */
.ingredients-wrapper[b-tek9fi33hg] {
    margin-bottom: 30px;
}

.ingredient-item[b-tek9fi33hg] {
    padding: 5px;
    transition: transform 0.2s;
}

    .ingredient-item:hover[b-tek9fi33hg] {
        transform: translateY(-5px);
    }

.ingredient-img[b-tek9fi33hg] {
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
/* Modal Styles */
.modal-overlay[b-tek9fi33hg] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.meal-plan-modal[b-tek9fi33hg] {
    background: white;
    border-radius: 20px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header[b-tek9fi33hg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    z-index: 10;
}

    .modal-header h2[b-tek9fi33hg] {
        margin: 0;
        font-size: 22px;
        font-weight: 600;
        color: #333;
    }

.close-modal[b-tek9fi33hg] {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.modal-body[b-tek9fi33hg] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
}

.modal-section[b-tek9fi33hg] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .modal-section label[b-tek9fi33hg] {
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

.modal-select[b-tek9fi33hg] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
}

.modal-footer[b-tek9fi33hg] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    position: sticky;
    bottom: 0;
    background: white;
    border-radius: 0 0 20px 20px;
}

.cancel-btn[b-tek9fi33hg], .add-btn[b-tek9fi33hg] {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.cancel-btn[b-tek9fi33hg] {
    background-color: #f1f1f1;
    color: #333;
}

.add-btn[b-tek9fi33hg] {
    background: linear-gradient(to bottom, #FFC357, #FE8000);
    color: white;
}

/* Make the add icon clickable */
.add-icon[b-tek9fi33hg] {
    cursor: pointer;
}

/* Animation for modal */
.meal-plan-modal[b-tek9fi33hg] {
    animation: modal-fade-in-b-tek9fi33hg 0.3s ease;
}

.date-selector[b-tek9fi33hg] {
    width: 100%;
    background-color: #f8f8f8;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
}

.month-selector[b-tek9fi33hg] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.month-year[b-tek9fi33hg] {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.month-nav-btn[b-tek9fi33hg] {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #f0f0f0;
}

    .month-nav-btn img[b-tek9fi33hg] {
        width: 8px;
        height: 8px;
    }

.calendar-container[b-tek9fi33hg] {
    width: 100%;
}

.day-labels[b-tek9fi33hg] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.day-label[b-tek9fi33hg] {
    text-align: center;
    font-weight: 500;
    color: #666;
    padding: 5px 0;
    font-size: 12px;
}

.calendar-grid[b-tek9fi33hg] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day[b-tek9fi33hg] {
    aspect-ratio: 1 / 1;
    padding: 5px;
    border-radius: 8px;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

    .calendar-day:hover[b-tek9fi33hg] {
        background-color: #f0f0f0;
    }

    .calendar-day.empty[b-tek9fi33hg] {
        background-color: transparent;
        box-shadow: none;
        cursor: default;
    }

    .calendar-day.today[b-tek9fi33hg] {
        border: 2px solid #FFC357;
    }

    .calendar-day.selected[b-tek9fi33hg] {
        background: linear-gradient(to bottom, #FFC357, #FE8000);
        color: white;
    }

.day-number[b-tek9fi33hg] {
    font-size: 14px;
    font-weight: 500;
}

.selected-date[b-tek9fi33hg] {
    text-align: center;
    margin: 10px 0;
    font-size: 14px;
    color: #666;
}

    .selected-date strong[b-tek9fi33hg] {
        color: #333;
    }

/* Confirmation Modal Styles */
.confirmation-overlay[b-tek9fi33hg] {
    z-index: 1100; /* Higher than regular modal */
}

.confirmation-modal[b-tek9fi33hg] {
    background: white;
    border-radius: 20px;
    width: 350px;
    max-width: 90%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    padding: 20px;
    text-align: center;
    animation: pop-in-b-tek9fi33hg 0.3s ease-out;
}

@keyframes pop-in-b-tek9fi33hg {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.confirmation-icon[b-tek9fi33hg] {
    width: 60px;
    height: 60px;
    background: linear-gradient(to bottom, #5CDB95, #4CAF50);
    color: white;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.confirmation-content h3[b-tek9fi33hg] {
    font-size: 20px;
    color: #333;
    margin: 0 0 10px;
}

.confirmation-content p[b-tek9fi33hg] {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.confirmation-buttons[b-tek9fi33hg] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.view-plan-btn[b-tek9fi33hg], .continue-btn[b-tek9fi33hg] {
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}

.view-plan-btn[b-tek9fi33hg] {
    background: linear-gradient(to bottom, #FFC357, #FE8000);
    color: white;
}

.continue-btn[b-tek9fi33hg] {
    background-color: #f1f1f1;
    color: #333;
}

/* Media Queries */
@media (max-width: 480px) {
    .meal-plan-modal[b-tek9fi33hg] {
        width: 95%;
        max-height: 95vh;
    }

    .calendar-day[b-tek9fi33hg] {
        padding: 3px;
    }

    .day-number[b-tek9fi33hg] {
        font-size: 12px;
    }

    .modal-header h2[b-tek9fi33hg] {
        font-size: 20px;
    }

    .modal-section label[b-tek9fi33hg] {
        font-size: 14px;
    }

    .modal-select[b-tek9fi33hg] {
        font-size: 14px;
    }

    .cancel-btn[b-tek9fi33hg], .add-btn[b-tek9fi33hg] {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@keyframes modal-fade-in-b-tek9fi33hg {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/RecipeSearch.razor.rz.scp.css */
.dashboard-container[b-ig3ozz4et2] {
    width: 100%;
    min-height: 100vh;
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}

.top-section[b-ig3ozz4et2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
}

.client-info[b-ig3ozz4et2] {
    display: flex;
    align-items: center;
    position: relative;
}

.back-button[b-ig3ozz4et2] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 15px;
}

    .back-button img[b-ig3ozz4et2] {
        width: 11px;
        height: 23px;
    }

.profile-photo[b-ig3ozz4et2] {
    width: 79px;
    height: 79px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 30px;
    margin-right: 15px;
}

.client-details[b-ig3ozz4et2] {
    display: flex;
    flex-direction: column;
}

    .client-details h2[b-ig3ozz4et2] {
        font-size: 20px;
        font-weight: 600;
        margin: 0;
        color: #333;
    }

    .client-details p[b-ig3ozz4et2] {
        font-size: 16px;
        color: #666;
        margin: 0;
    }

.logos[b-ig3ozz4et2] {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo[b-ig3ozz4et2] {
    width: 66px;
    height: 66px;
}

.hg-logo img[b-ig3ozz4et2] {
    margin-top: 20px;
    width: 80px;
    height: 97px;
}

.recipe-search[b-ig3ozz4et2] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.search-bar-container[b-ig3ozz4et2] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 15px;
    width: 100%;
}

.filter-container[b-ig3ozz4et2] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-switch[b-ig3ozz4et2] {
    display: flex;
    justify-content: center;
    margin-right: 15px;
}

.toggle-container[b-ig3ozz4et2] {
    display: flex;
    background-color: #f5f5f5;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 250px;
}

.toggle-option[b-ig3ozz4et2] {
    flex: 1;
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    color: #666;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 500;
}

    .toggle-option.active[b-ig3ozz4et2] {
        background: linear-gradient(to bottom, #FFC357, #FE8000);
        color: white;
        font-weight: 600;
    }

.search-bar[b-ig3ozz4et2] {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    justify-content: center; /* Center the search bar */
}

.search-input[b-ig3ozz4et2] {
    width: 623px;
    height: 58px;
    border: 1px solid #eaeaea;
    border-radius: 17px;
    font-size: 16px;
    color: #333;
    padding: 0 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

    .search-input[b-ig3ozz4et2]::placeholder {
        color: #aaa;
    }

.filter-icon[b-ig3ozz4et2] {
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-left: 15px;
    justify-content: right;
}

private void ToggleFilterMenu()[b-ig3ozz4et2] {
    showFilterMenu = !showFilterMenu;
}
/* Filter Dropdown Styling */
.filter-dropdown[b-ig3ozz4et2] {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border: none;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    width: 350px;
    max-height: 700px;
    overflow-y: auto;
}

.filter-title[b-ig3ozz4et2] {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 15px;
    color: #333;
    margin-top: 0;
}

.filter-dropdown h3[b-ig3ozz4et2] {
    margin: 15px 0;
    font-size: 26px;
    font-weight: 600;
    color: #333;
    padding-bottom: 1px;
}

.filter-section[b-ig3ozz4et2] {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}

    .filter-section label[b-ig3ozz4et2] {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        color: #B9B9B9;
        cursor: pointer;
        padding: 5px 0;
    }

.custom-checkbox[b-ig3ozz4et2] {
    appearance: none;
    -webkit-appearance: none;
    width: 8px;
    height: 8px;
    background-color: transparent;
    border: 2px solid #B9B9B9;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

    /* When checked: Filled circle with gradient */
    .custom-checkbox:checked[b-ig3ozz4et2] {
        border: none;
        background: linear-gradient(to bottom, #FFC357, #FE8000);
        position: relative;
    }

        .custom-checkbox:checked + .checkbox-text[b-ig3ozz4et2] {
            background: linear-gradient(to bottom, #FFC357, #FE8000);
            -webkit-background-clip: text;
            color: transparent;
            font-weight: bold;
        }

.apply-filters-button[b-ig3ozz4et2] {
    display: block;
    width: 96px;
    height: 27px;
    padding: 0px 26px;
    margin: 25px auto 0;
    background: linear-gradient(360deg, #FE8000 0%, #FFC357 100%);
    color: white;
    font-size: 16px;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .apply-filters-button:hover[b-ig3ozz4et2] {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.filter-dropdown[b-ig3ozz4et2] {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

    .filter-dropdown[b-ig3ozz4et2]::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
/* Recommended section styling */
.recommended-section h2[b-ig3ozz4et2] {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}


/* Recipe Grid Styling */
.recipe-grid[b-ig3ozz4et2] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 10px 0;
}

    .recipe-grid[b-ig3ozz4et2]::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

/* Card Styling */
.recipe-card[b-ig3ozz4et2] {
    position: relative;
    width: 300px; 
    height: 130px; 
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.recipe-card-inner[b-ig3ozz4et2] {
    position: relative;
    width: 100%;
    height: 100%;
}

.recipe-image[b-ig3ozz4et2] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.recipe-overlay[b-ig3ozz4et2] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5); 
    border-radius: 15px;
}

.recipe-title[b-ig3ozz4et2] {
    font-size: 16px; 
    font-weight: 400; 
    color: white;
    text-align: center;
    white-space: normal;
    overflow-wrap: break-word; 
    line-height: 1.2;
    padding: 5px;
}


.recipe-card:hover .recipe-overlay[b-ig3ozz4et2] {
    opacity: 1;
}

.recipe-grid[b-ig3ozz4et2]::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.details-button[b-ig3ozz4et2] {
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .details-button:hover[b-ig3ozz4et2] {
        background-color: #218838;
    }

.recipe-grid .no-products-message[b-ig3ozz4et2] {
    width: 100% !important;
    text-align: center !important;
    padding: 10px 20px !important;
    font-size: 16px !important;
    margin: 0 auto !important;
    grid-column: 1 / -1 !important;
    white-space: nowrap !important;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .top-section[b-ig3ozz4et2] {
        height: 20%; /* Increase height for smaller screens */
    }

    .activities-panel[b-ig3ozz4et2] {
        height: 25%; /* Adjust height for smaller screens */
    }

    .steps-container[b-ig3ozz4et2] {
        height: 40%; /* Adjust height for smaller screens */
    }

    .bottom-navigation[b-ig3ozz4et2] {
        height: 15%; /* Adjust height for smaller screens */
    }
