/* /Components/Daily/DailyActivityGoals.razor.rz.scp.css */
.goals-container[b-w1a44rbg8l]{
    display: flex;
    flex-direction: column;
}

.activity-container[b-w1a44rbg8l]{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}


.chart-container[b-w1a44rbg8l] {
    display: grid;
    grid-template-columns: 25% 75%;
    align-items: center;
}

.chart-container-rows[b-w1a44rbg8l]{
    display: grid;
    grid-auto-rows: auto;
}
/* /Components/Dashboard/Distance/Distance.razor.rz.scp.css */
.distance-chart-wrapper[b-tbncwdq5zh] {
    position: relative;
    display: flex;
    place-items: center;
    width: 45%;
    aspect-ratio: 1;
    margin: 0 auto;
}

.distance-chart[b-tbncwdq5zh] {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    overflow: visible;
}

.distance-chart-track-border[b-tbncwdq5zh],
.distance-chart-track[b-tbncwdq5zh],
.distance-chart-progress-border[b-tbncwdq5zh],
.distance-chart-progress[b-tbncwdq5zh] {
    fill: transparent;
}

.distance-chart-track-border[b-tbncwdq5zh],
.distance-chart-progress-border[b-tbncwdq5zh] {
    stroke-width: 14;
}

.distance-chart-track[b-tbncwdq5zh],
.distance-chart-progress[b-tbncwdq5zh] {
    stroke-width: 10;
}

.distance-chart-track-border[b-tbncwdq5zh] {
    stroke: #d9d9d9;
}

.distance-chart-track[b-tbncwdq5zh] {
    stroke: whitesmoke;
}

.distance-chart-progress-border[b-tbncwdq5zh] {
    stroke: #2c8b47;
    stroke-linecap: round;
}

.distance-chart-progress[b-tbncwdq5zh] {
    background: var(--progress-gradient);
    stroke: url(#distance-progress-gradient);
    stroke-linecap: round;
    transition: stroke-dasharray 0.3s ease;
}

.distance-chart-center[b-tbncwdq5zh] {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    pointer-events: none;
}

.distance-chart-icon-shell[b-tbncwdq5zh] {
    width: 58%;
    height: 58%;
    padding: 0.2rem;
    display: grid;
    place-items: center;
}

.distance-chart-icon[b-tbncwdq5zh] {
    width: 100%;
    height: 100%;
}

.details-container[b-tbncwdq5zh]{
    display: flex;
    justify-content: space-between;
}

.details-container p[b-tbncwdq5zh]{
    font-size: 0.8rem;
}
/* /Components/Dashboard/Total/TotalProgressChart.razor.rz.scp.css */
.total-progress-chart[b-p8j6c83j74]{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.total-progress-chart-fill[b-p8j6c83j74]{
    height: 100%;
    min-height: 0;
    flex: 1;
}

.chart-host[b-p8j6c83j74]{
    width: 100%;
    min-width: 0;
}

.total-progress-chart-fill .chart-host[b-p8j6c83j74]{
    flex: 1;
    height: 80%;
}

.chart-summary[b-p8j6c83j74]{
    flex-shrink: 0;
}

.info-label[b-p8j6c83j74]{
    color: var(--textcolor);
    font-weight: bold;
    margin-top: 0.5rem;
}

.info-label span[b-p8j6c83j74]{
    color: var(--green);
}

span.negative[b-p8j6c83j74]{
    color: var(--errorred);
}
/* /Components/Layout/AuthenticatedLayout.razor.rz.scp.css */
.application[b-g4ezveizno]{
    display: grid;
    padding: 1rem;
    grid-template-columns: 270px minmax(0, 1fr);
    grid-auto-rows: 1fr;
    min-height: 100vh;
    max-height: 100vh;
    gap: 1rem;
}

.sidebar[b-g4ezveizno]{
    display: flex;
    flex-direction: column;
    border-radius: 1.75rem;
    padding: 1.25rem;
    height: 100%;
    border: 1px solid var(--surface-outline);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.height-100[b-g4ezveizno]{
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.top-bar[b-g4ezveizno]{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 1.5rem;
    margin: 0 0 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--surface-outline);
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.content-shell[b-g4ezveizno]{
    min-width: 0;
}

.body-content[b-g4ezveizno]{
    flex: 1;
    min-height: 0;
    display: flex;
}

.top-bar-copy[b-g4ezveizno]{
    display: grid;
    gap: 0.15rem;
}

.top-bar-eyebrow[b-g4ezveizno]{
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 800;
    color: #6f6b7b;
}

.top-bar-title[b-g4ezveizno]{
    font-size: 1.15rem;
    font-weight: 800;
    color: #161616;
}

.top-bar-actions[b-g4ezveizno]{
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .sidebar[b-g4ezveizno] {
        display: none;
    }

    .top-bar[b-g4ezveizno] {
        display: none;
    }

    .application[b-g4ezveizno] {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
    }

    .body-content[b-g4ezveizno]{
        display: block;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.main-layout-shell[b-fcg3so0abr] {
    min-height: 100vh;
}

.main-layout-content[b-fcg3so0abr]{
    flex: 1;
}

.main-layout-article[b-fcg3so0abr]{
    min-height: 100vh;
}

#blazor-error-ui[b-fcg3so0abr] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-fcg3so0abr] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */

.bi[b-pxu0pmqyd9] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-pxu0pmqyd9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-pxu0pmqyd9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-pxu0pmqyd9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-pxu0pmqyd9] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-pxu0pmqyd9] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-pxu0pmqyd9] {
        padding-bottom: 1rem;
    }

    .nav-item[b-pxu0pmqyd9]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-pxu0pmqyd9]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-pxu0pmqyd9]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-pxu0pmqyd9] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-pxu0pmqyd9] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-pxu0pmqyd9] {
        display: none;
    }

    .nav-scrollable[b-pxu0pmqyd9] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-xgpsugo6v4],
.components-reconnect-repeated-attempt-visible[b-xgpsugo6v4],
.components-reconnect-failed-visible[b-xgpsugo6v4],
.components-pause-visible[b-xgpsugo6v4],
.components-resume-failed-visible[b-xgpsugo6v4],
.components-rejoining-animation[b-xgpsugo6v4] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-xgpsugo6v4],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-xgpsugo6v4],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-xgpsugo6v4],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-xgpsugo6v4],
#components-reconnect-modal.components-reconnect-retrying[b-xgpsugo6v4],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-xgpsugo6v4],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-xgpsugo6v4],
#components-reconnect-modal.components-reconnect-failed[b-xgpsugo6v4],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-xgpsugo6v4] {
    display: block;
}


#components-reconnect-modal[b-xgpsugo6v4] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-xgpsugo6v4 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-xgpsugo6v4 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-xgpsugo6v4 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-xgpsugo6v4]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-xgpsugo6v4 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-xgpsugo6v4 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-xgpsugo6v4 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-xgpsugo6v4 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-xgpsugo6v4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-xgpsugo6v4] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-xgpsugo6v4] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-xgpsugo6v4] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-xgpsugo6v4] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-xgpsugo6v4] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-xgpsugo6v4] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-xgpsugo6v4 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-xgpsugo6v4] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-xgpsugo6v4 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/Sidebar.razor.rz.scp.css */
.sidebar-shell[b-8n91yroqu6]{
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}

.sidebar-brand[b-8n91yroqu6]{
    display: grid;
    gap: 0.75rem;
}

.menu-title-container[b-8n91yroqu6]{
    padding-bottom: 0.25rem;
    text-transform: uppercase;
}

.menu-title[b-8n91yroqu6]{
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #6f6b7b;
}

.nav-scrollable[b-8n91yroqu6] {
    flex: 1 1 auto;
    min-height: 0;
}

.nav-item[b-8n91yroqu6] {
    border: 1px solid transparent;
    padding: 0.15rem;
    margin-top: 0.3rem;
    border-radius: 1rem;
}

.nav-item:hover[b-8n91yroqu6], .nav-item.active[b-8n91yroqu6] {
    background: rgba(79, 70, 229, 0.08);
    border-color: rgba(79, 70, 229, 0.12);
}

.menu-item[b-8n91yroqu6]{
    font-size: 0.95rem;
    font-weight: 700;
    color: #403b49;
}

.menu-item.active[b-8n91yroqu6]{
    color: #4f46e5;
}

.menu-item-link[b-8n91yroqu6]{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.35rem 0.55rem;
    border-radius: 0.85rem;
}

.sidebar-version[b-8n91yroqu6]{
    margin-top: auto;
}
/* /Components/Pages/DailyActivities.razor.rz.scp.css */
.daily-activities-page[b-h1j4jer1we]{
    background:
        radial-gradient(circle at top left, rgba(55, 163, 85, 0.08), transparent 24rem),
        radial-gradient(circle at bottom right, rgba(79, 70, 229, 0.08), transparent 20rem),
        #f6f5f2;
    min-height: 100%;
}

.report-card[b-h1j4jer1we]{
    overflow: hidden;
}

.report-heading h1[b-h1j4jer1we]{
    margin-bottom: 0.4rem;
}

.report-content[b-h1j4jer1we]{
    min-height: 26rem;
    background:
        linear-gradient(180deg, rgba(55, 163, 85, 0.05) 0%, rgba(55, 163, 85, 0) 50%),
        #ffffff;
}

.report-content[b-h1j4jer1we]  .activity-container{
    gap: 1.5rem;
}

.report-content[b-h1j4jer1we]  .goals-container{
    gap: 0.85rem;
}

.report-content[b-h1j4jer1we]  .chart-container{
    grid-template-columns: minmax(140px, 28%) 1fr;
    gap: 1rem;
}

.report-content[b-h1j4jer1we]  .text-label{
    color: #2f2b36;
}

.form-panel[b-h1j4jer1we]{
    padding: 1.5rem;
}

.insight-pill[b-h1j4jer1we]{
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    background: rgba(55, 163, 85, 0.1);
    color: #2e8a47;
    font-weight: 700;
    font-size: 0.85rem;
}

.summary-card[b-h1j4jer1we],
.highlight-panel[b-h1j4jer1we]{
    border-radius: 1rem;
    padding: 1rem 1rem 1.1rem;
    background: linear-gradient(180deg, rgba(248, 248, 248, 0.95), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(22, 22, 22, 0.05);
}

.summary-label[b-h1j4jer1we]{
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 800;
    color: #6f6b7b;
}

.summary-value[b-h1j4jer1we]{
    font-size: 2rem;
    font-weight: 800;
    color: #161616;
    margin: 0.35rem 0;
}

.summary-copy[b-h1j4jer1we]{
    color: #5f5b68;
    font-size: 0.95rem;
}

.metric-list[b-h1j4jer1we]{
    margin: 1.75rem 0;
}

.metric-list .app-metric-row strong[b-h1j4jer1we]{
    font-size: 1.05rem;
}

.metric-fill-steps[b-h1j4jer1we]{
    background: linear-gradient(90deg, #4f46e5 0%, #7c73ff 100%);
}

.metric-fill-fasting[b-h1j4jer1we]{
    background: linear-gradient(90deg, #37a355 0%, #61c27c 100%);
}

.metric-fill-vaping[b-h1j4jer1we]{
    background: linear-gradient(90deg, #d39a2f 0%, #efc15a 100%);
}

.metric-fill-default[b-h1j4jer1we]{
    background: linear-gradient(90deg, #6f6b7b 0%, #9a96a6 100%);
}

.highlight-panel[b-h1j4jer1we]{
    display: grid;
    gap: 0.5rem;
}

.highlight-row[b-h1j4jer1we]{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: #2f2b36;
}

.highlight-row strong[b-h1j4jer1we]{
    color: #161616;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .daily-activities-layout[b-h1j4jer1we]{
        grid-template-columns: 1fr;
    }

    .report-header[b-h1j4jer1we]{
        flex-direction: column;
    }

    .report-header .app-page-actions[b-h1j4jer1we]{
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .report-card .app-panel-inner[b-h1j4jer1we],
    .daily-activities-side-panel[b-h1j4jer1we]{
        padding: 1.1rem;
    }

    .report-content[b-h1j4jer1we]{
        min-height: auto;
        padding: 0.95rem;
    }

    .form-panel[b-h1j4jer1we]{
        padding: 1.1rem;
    }

    .report-content[b-h1j4jer1we]  .activity-container{
        grid-template-columns: 1fr;
    }

    .report-content[b-h1j4jer1we]  .chart-container{
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Dashboard.razor.rz.scp.css */
.dashboard-page[b-vymnegdn42]{
    flex: 1;
    min-height: 0;
    display: flex;
}

.dashboard-container[b-vymnegdn42]{
    display: grid;
    grid-template-columns: repeat(8, 1fr) 0.5fr;
    grid-template-rows: repeat(2, minmax(0, 1fr)) minmax(0, 0.5fr) repeat(2, minmax(0, 1fr)) minmax(0, 0.5fr) repeat(2, minmax(0, 1fr)) minmax(0, 0.5fr);
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin: 0;
    flex: 1;
    min-height: 0;
    height: 100%;
    max-height: 100vh;
}

.dashboard-container[b-vymnegdn42]  .tile{
    min-height: 0;
    overflow: hidden;
}
/* /Components/Pages/Error.razor.rz.scp.css */
.message-shell[b-dzarfxfcmp]{
    display: flex;
    justify-content: center;
}

.message-card[b-dzarfxfcmp]{
    max-width: 760px;
    width: 100%;
}

.message-copy[b-dzarfxfcmp]{
    color: #5f5b68;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.message-detail[b-dzarfxfcmp]{
    margin-bottom: 1rem;
}

.message-surface[b-dzarfxfcmp]{
    display: grid;
    gap: 0.75rem;
}

.message-surface h2[b-dzarfxfcmp]{
    color: #161616;
    background: none;
    -webkit-text-fill-color: initial;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-screen-shell[b-0gf8lwyc92]{
    width: min(1100px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 420px);
    gap: 2rem;
    align-items: center;
}

.home-brand-panel[b-0gf8lwyc92]{
    color: white;
    padding: 1rem 0.5rem;
}

.home-eyebrow[b-0gf8lwyc92]{
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
    color: rgba(255, 255, 255, 0.74);
}

.home-brand-panel h1[b-0gf8lwyc92]{
    font-size: clamp(2.2rem, 6vw, 4.4rem);
    line-height: 1.02;
    margin-bottom: 1rem;
}

.home-copy[b-0gf8lwyc92]{
    font-size: 1.05rem;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 900px) {
    .home-screen-shell[b-0gf8lwyc92]{
        grid-template-columns: 1fr;
    }

    .home-brand-panel[b-0gf8lwyc92]{
        padding: 0;
    }
}
/* /Components/Pages/MobileDashboard.razor.rz.scp.css */
.mobile-dashboard-page[b-1yg3g5fi5o]{
    padding-top: 1rem;
}

.mobile-dashboard-stack[b-1yg3g5fi5o]{
    display: grid;
    gap: 1rem;
}

.mobile-card[b-1yg3g5fi5o]{
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(22, 22, 22, 0.08);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    padding: 1rem;
}

.mobile-card-header[b-1yg3g5fi5o]{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.mobile-card-header h1[b-1yg3g5fi5o],
.mobile-card-header h2[b-1yg3g5fi5o]{
    color: #161616;
    background: none;
    -webkit-text-fill-color: initial;
}

.mobile-form-shell[b-1yg3g5fi5o]{
    padding-top: 1rem;
}
/* /Components/Pages/NewWeight.razor.rz.scp.css */
.report-card[b-itqwtp5yyi]{
    overflow: hidden;
}

.report-heading h1[b-itqwtp5yyi]{
    margin-bottom: 0.4rem;
}

.report-content[b-itqwtp5yyi]{
    min-height: 26rem;
    background:
        linear-gradient(180deg, rgba(79, 70, 229, 0.06) 0%, rgba(79, 70, 229, 0) 50%),
        #ffffff;
    padding: 1rem 1rem 0.75rem;
}

.report-loader[b-itqwtp5yyi]{
    min-height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-panel[b-itqwtp5yyi]{
    padding: 1.5rem;
}

.goal-panel[b-itqwtp5yyi]{
    padding: 1rem 1rem 1.25rem;
}

.metric-list[b-itqwtp5yyi]{
    margin-top: 1.75rem;
}

.metric-list .app-metric-row strong[b-itqwtp5yyi]{
    font-size: 1.05rem;
}

.metric-fill-current[b-itqwtp5yyi]{
    background: linear-gradient(90deg, #7c73ff 0%, #4f46e5 100%);
}

.metric-fill-lost[b-itqwtp5yyi]{
    background: linear-gradient(90deg, #37a355 0%, #5cc273 100%);
}

.metric-fill-entries[b-itqwtp5yyi]{
    background: linear-gradient(90deg, #c08b27 0%, #f0b44c 100%);
}

@media (max-width: 1024px) {
    .new-weight-layout[b-itqwtp5yyi]{
        grid-template-columns: 1fr;
    }

    .report-header[b-itqwtp5yyi]{
        flex-direction: column;
    }

    .report-header .app-page-actions[b-itqwtp5yyi]{
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .report-card .app-panel-inner[b-itqwtp5yyi],
    .new-weight-side-panel[b-itqwtp5yyi]{
        padding: 1.1rem;
    }

    .report-content[b-itqwtp5yyi]{
        min-height: auto;
        padding: 0.85rem 0.85rem 0.65rem;
    }

    .form-panel[b-itqwtp5yyi]{
        padding: 1.1rem;
    }
}
/* /Components/Pages/NotFound.razor.rz.scp.css */
.message-shell[b-hxk8jfmxlo]{
    display: flex;
    justify-content: center;
}

.message-card[b-hxk8jfmxlo]{
    max-width: 760px;
    width: 100%;
}

.message-copy[b-hxk8jfmxlo]{
    color: #5f5b68;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.not-found-link[b-hxk8jfmxlo]{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #284630 0%, #37a355 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
}
/* /Components/Pages/Settings.razor.rz.scp.css */
.settings-layout[b-s9iqxbu117]{
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.7fr);
    gap: 1.5rem;
}

.settings-side-header[b-s9iqxbu117]{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.settings-menu[b-s9iqxbu117]{
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.settings-menu-item[b-s9iqxbu117]{
    border: 1px solid rgba(22, 22, 22, 0.08);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1rem;
    padding: 0.95rem 1rem;
    font-weight: 700;
    color: #2f2b36;
    text-align: left;
    cursor: pointer;
    transition: background-color 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.settings-menu-item:hover[b-s9iqxbu117],
.settings-menu-item.active[b-s9iqxbu117]{
    background: rgba(79, 70, 229, 0.08);
    border-color: rgba(79, 70, 229, 0.18);
    color: #4f46e5;
    transform: translateY(-1px);
}

.settings-surface[b-s9iqxbu117]{
    min-height: 26rem;
}

.settings-empty[b-s9iqxbu117]{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f5b68;
}

@media (max-width: 900px) {
    .settings-layout[b-s9iqxbu117]{
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Weight.razor.rz.scp.css */
.weight-loader[b-0knqtodrxf]{
    min-height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-fill-current[b-0knqtodrxf]{
    background: linear-gradient(90deg, #7c73ff 0%, #4f46e5 100%);
}

.metric-fill-lost[b-0knqtodrxf]{
    background: linear-gradient(90deg, #37a355 0%, #5cc273 100%);
}

.metric-fill-entries[b-0knqtodrxf]{
    background: linear-gradient(90deg, #c08b27 0%, #f0b44c 100%);
}
/* /Components/Settings/Goals/GoalForm.razor.rz.scp.css */
.milestone-row[b-2effqpom9i]{
    display: grid;
    grid-template-columns: 45% 15% 35% 5%;
    column-gap: 5px;
    width: 100%;
    align-items: center;
}

.milestone-row p[b-2effqpom9i] {
    font-size: 0.9rem;
    font-weight: 800;
}

.reward-row[b-2effqpom9i],
.goal-row[b-2effqpom9i]{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5px;
}

.reward-row label[b-2effqpom9i]{
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

/* /Components/Settings/Goals/GoalList.razor.rz.scp.css */
.goal-list-container[b-wb5su45pna]{
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    border: 1px solid lightgray;
    border-radius: 12px;
    width: 100%;
    background-color: white;
}


.goal-list-row[b-wb5su45pna],
.goal-list-header-row[b-wb5su45pna]{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.5fr;
    column-gap: 10px;
}

.goal-list-header-row[b-wb5su45pna]{
    padding: 1rem;
    font-weight: bold;
    border-bottom: 1px solid lightgray;
    margin-bottom: 0.5rem;
}

.goal-list-row[b-wb5su45pna]{
    padding: 0 1rem 0.5rem 1rem;
}
/* /Components/Shared/Buttons/FormButton.razor.rz.scp.css */
.form-button[b-71nag06sjz] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 0.625em 1em;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 15px;
    transition: all 0.2s ease-in-out;
    min-height: 2.5em;
    text-transform: uppercase;
}

.form-button:focus[b-71nag06sjz] {
    outline: none;
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.form-button:disabled[b-71nag06sjz] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Filled variant */
.form-button-filled[b-71nag06sjz] {
    background-color: rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.87);
    border-color: transparent;
}

.form-button-filled:hover:not(:disabled)[b-71nag06sjz] {
    background-color: rgba(0, 0, 0, 0.18);
}

.form-button-filled:active:not(:disabled)[b-71nag06sjz] {
    background-color: rgba(0, 0, 0, 0.24);
}

/* Outlined variant */
.form-button-outlined[b-71nag06sjz] {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.87);
    border-color: rgba(0, 0, 0, 0.23);
}

.form-button-outlined:hover:not(:disabled)[b-71nag06sjz] {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.4);
}

.form-button-outlined:active:not(:disabled)[b-71nag06sjz] {
    background-color: rgba(0, 0, 0, 0.08);
}

/* Text variant */
.form-button-text[b-71nag06sjz] {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.87);
    border-color: transparent;
}

.form-button-text:hover:not(:disabled)[b-71nag06sjz] {
    background-color: rgba(0, 0, 0, 0.04);
}

.form-button-text:active:not(:disabled)[b-71nag06sjz] {
    background-color: rgba(0, 0, 0, 0.08);
}

/* Primary button override */
.form-button.btn-primary[b-71nag06sjz] {
    background: linear-gradient(to right bottom, #284630, #2d5c3a, #307343, #348b4c, #37a355);
    color: white;
    border-color: transparent;
}

.form-button.btn-primary:hover:not(:disabled)[b-71nag06sjz] {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-button.btn-primary:active:not(:disabled)[b-71nag06sjz] {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.form-button.btn-primary.form-button-outlined[b-71nag06sjz] {
    background: transparent;
    color: #37a355;
    border-color: #37a355;
}

.form-button.btn-primary.form-button-outlined:hover:not(:disabled)[b-71nag06sjz] {
    background-color: rgba(55, 163, 85, 0.08);
    border-color: #2d5c3a;
}

/* Icon styles */
.form-button-icon[b-71nag06sjz] {
    display: inline-flex;
    align-items: center;
    font-size: 1.2em;
    line-height: 1;
}

.form-button-icon-start[b-71nag06sjz] {
    margin-right: 0.25em;
}

.form-button-icon-end[b-71nag06sjz] {
    margin-left: 0.25em;
}
/* /Components/Shared/Charts/LineChart.razor.rz.scp.css */
.line-chart[b-7wcc0yll6l]{
    position: relative;
    width: 100%;
    min-width: 0;
}

.line-chart-fill[b-7wcc0yll6l]{
    height: 100%;
    min-height: 0;
}

.line-chart canvas[b-7wcc0yll6l]{
    width: 100%;
    height: 100%;
}
/* /Components/Shared/Containers/GridTile/GridTile.razor.rz.scp.css */
.expand-container[b-45f960a6ei]{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.08);
    cursor: pointer;
}
/* /Components/Shared/Icons/Expand.razor.rz.scp.css */
.container[b-hphzwlqxro]{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25em;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
}

.container:hover[b-hphzwlqxro]{
    border-radius: 10px;
    border: 2px solid #1c833c;
}
/* /Components/Shared/Loader.razor.rz.scp.css */
.loader-overlay[b-cm0y4la6r0] {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 22, 22, 0.2);
}
/* /Components/Shared/NoData.razor.rz.scp.css */
.container[b-7sxgoa2agm]{
    padding: 1rem;
}
/* /Components/User/Login.razor.rz.scp.css */
.login-header[b-e3hddmqg4h]{
    display: grid;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
}

.login-header h1[b-e3hddmqg4h]{
    color: #161616;
    background: none;
    -webkit-text-fill-color: initial;
}

.login-eyebrow[b-e3hddmqg4h]{
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 800;
    color: #6f6b7b;
}

.login-copy[b-e3hddmqg4h]{
    color: #5f5b68;
    font-size: 0.95rem;
}
/* /Components/Weight/WeightChart.razor.rz.scp.css */
.weight-chart[b-ih2co1ky4c]{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.weight-chart-fill[b-ih2co1ky4c]{
    height: 100%;
    min-height: 0;
    flex: 1;
}

.chart-host[b-ih2co1ky4c]{
    width: 100%;
    min-width: 0;
}

.weight-chart-fill .chart-host[b-ih2co1ky4c]{
    flex: 1;
    height: 100%;
}

.weight-chart-fill .chart-host[b-ih2co1ky4c]  .mud-chart{
    display: block;
    width: 100%;
    min-width: 0;
    height: 100%;
}

.chart-host[b-ih2co1ky4c]  .mud-chart svg{
    width: 100%;
}

.chart-summary[b-ih2co1ky4c]{
    flex-shrink: 0;
}

.info-label[b-ih2co1ky4c]{
    color: var(--textcolor);
    font-weight: bold;
    font-size: 1.1rem;
    margin-top:0.75rem;
}

.info-label span[b-ih2co1ky4c]{
    color: var(--green);
}

span.negative[b-ih2co1ky4c]{
    color: var(--errorred);
}
/* /Components/Weight/WeightChartNew.razor.rz.scp.css */
.weight-chart[b-isqxc4ehrw]{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.weight-chart-fill[b-isqxc4ehrw]{
    height: 100%;
    min-height: 0;
    flex: 1;
}

.chart-host[b-isqxc4ehrw]{
    width: 100%;
    min-width: 0;
}

.weight-chart-fill .chart-host[b-isqxc4ehrw]{
    flex: 1;
    height: 80%;
}

.chart-summary[b-isqxc4ehrw]{
    flex-shrink: 0;
}

.info-label[b-isqxc4ehrw]{
    color: var(--textcolor);
    font-weight: bold;
    margin-top: 0.5rem;
}

.info-label span[b-isqxc4ehrw]{
    color: var(--green);
}

span.negative[b-isqxc4ehrw]{
    color: var(--errorred);
}
/* /Components/Weight/WeightForm.razor.rz.scp.css */
.weight-form-container[b-mtwp693igh] {
    display: grid;
    grid-template-columns: 1fr 1fr 0.15fr;
    column-gap: 16px;
    width: 100%;
}

.menu-title[b-mtwp693igh]{
    font-weight: bold;
    padding-bottom: 0.5rem;
    margin-left: 0.25rem;
}
