/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-nav[b-o65xks19vo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #1f2937;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.app-nav nav[b-o65xks19vo] {
    display: flex;
    gap: 0.25rem;
}

.app-nav nav[b-o65xks19vo]  a {
    color: #d1d5db;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.app-nav nav[b-o65xks19vo]  a:hover {
    background: #374151;
    color: #fff;
}

.app-nav nav[b-o65xks19vo]  a.active {
    background: #2563eb;
    color: #fff;
}

.logout-form button[b-o65xks19vo] {
    background: none;
    border: 1px solid #4b5563;
    color: #d1d5db;
    padding: 0.35rem 0.9rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
}

.logout-form button:hover[b-o65xks19vo] {
    background: #374151;
    color: #fff;
}

#blazor-error-ui[b-o65xks19vo] {
    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-o65xks19vo] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-p77wpmu42l],
.components-reconnect-repeated-attempt-visible[b-p77wpmu42l],
.components-reconnect-failed-visible[b-p77wpmu42l],
.components-pause-visible[b-p77wpmu42l],
.components-resume-failed-visible[b-p77wpmu42l],
.components-rejoining-animation[b-p77wpmu42l] {
    display: none;
}

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


#components-reconnect-modal[b-p77wpmu42l] {
    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-p77wpmu42l 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-p77wpmu42l {
    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/Pages/Foods.razor.rz.scp.css */
.foods-page[b-2vk6q3zyhd] {
    max-width: 640px;
    margin: 0 auto;
    padding: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

h1[b-2vk6q3zyhd] {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.card[b-2vk6q3zyhd] {
    background: #fff;
    border: 1px solid #d9dee3;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.card h2[b-2vk6q3zyhd] {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #5a6572;
    margin: 0 0 0.75rem;
}

.food-form[b-2vk6q3zyhd] {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 0.75rem;
    align-items: end;
    margin-bottom: 0.5rem;
}

.food-form label[b-2vk6q3zyhd] {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    color: #3b4450;
    gap: 0.3rem;
}

.food-form input[b-2vk6q3zyhd] {
    padding: 0.55rem 0.65rem;
    font-size: 1rem;
    border: 1px solid #b9c2cc;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.form-actions[b-2vk6q3zyhd] {
    display: flex;
    gap: 0.5rem;
}

.save-btn[b-2vk6q3zyhd] {
    padding: 0.55rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: #2563eb;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
}

.save-btn:disabled[b-2vk6q3zyhd] {
    background: #93c5fd;
}

.cancel-btn[b-2vk6q3zyhd] {
    padding: 0.55rem 0.9rem;
    background: #fff;
    border: 1px solid #b9c2cc;
    border-radius: 8px;
    cursor: pointer;
}

.food-table[b-2vk6q3zyhd] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.food-table th[b-2vk6q3zyhd] {
    text-align: left;
    color: #5a6572;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.35rem 0.5rem;
    border-bottom: 2px solid #e3e7ec;
}

.food-table td[b-2vk6q3zyhd] {
    padding: 0.5rem;
    border-bottom: 1px solid #eef1f4;
}

.food-table .num[b-2vk6q3zyhd] {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.row-actions[b-2vk6q3zyhd] {
    text-align: right;
    white-space: nowrap;
}

.row-actions button[b-2vk6q3zyhd] {
    padding: 0.3rem 0.7rem;
    font-size: 0.85rem;
    background: #fff;
    border: 1px solid #b9c2cc;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 0.35rem;
}

.row-actions button.danger[b-2vk6q3zyhd] {
    color: #b91c1c;
    border-color: #fca5a5;
}

.banner-invalid[b-2vk6q3zyhd] {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
}

.hint[b-2vk6q3zyhd] {
    color: #6b7280;
    font-size: 0.9rem;
}
/* /Components/Pages/History.razor.rz.scp.css */
.history-page[b-c43nrvemd6] {
    max-width: 720px;
    margin: 0 auto;
    padding: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

h1[b-c43nrvemd6] {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.hint[b-c43nrvemd6] {
    color: #6b7280;
    font-size: 0.9rem;
}

.log-list[b-c43nrvemd6] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.card[b-c43nrvemd6] {
    background: #fff;
    border: 1px solid #d9dee3;
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
}

.log-entry header[b-c43nrvemd6] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.4rem;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.log-entry time[b-c43nrvemd6] {
    color: #5a6572;
    font-size: 0.85rem;
}

.period-badge[b-c43nrvemd6] {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.1rem 0.5rem;
    background: #eef2ff;
    color: #3730a3;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.meal-badge[b-c43nrvemd6] {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.1rem 0.5rem;
    background: #ecfdf5;
    color: #065f46;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.totals[b-c43nrvemd6] {
    font-size: 0.95rem;
}

.totals .given.differs strong[b-c43nrvemd6] {
    color: #b45309;
}

.totals .given.none[b-c43nrvemd6] {
    color: #9ca3af;
    font-size: 0.85rem;
}

.log-detail[b-c43nrvemd6] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.25rem;
    font-size: 0.9rem;
    color: #3b4450;
}

.log-snapshot[b-c43nrvemd6] {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: #8a94a0;
}

.log-notes[b-c43nrvemd6] {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
    background: #f9fafb;
    border-radius: 6px;
    padding: 0.5rem 0.7rem;
}

.pager[b-c43nrvemd6] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: #5a6572;
}

.pager button[b-c43nrvemd6] {
    padding: 0.4rem 0.9rem;
    border: 1px solid #b9c2cc;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
}

.pager button:disabled[b-c43nrvemd6] {
    color: #c3cad2;
    border-color: #e3e7ec;
    cursor: default;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.calc-page[b-azi9ypzz84] {
    max-width: 640px;
    margin: 0 auto;
    padding: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

h1[b-azi9ypzz84] {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.card[b-azi9ypzz84] {
    background: #fff;
    border: 1px solid #d9dee3;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.card h2[b-azi9ypzz84] {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #5a6572;
    margin: 0 0 0.75rem;
}

.field-grid[b-azi9ypzz84] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
}

.field-grid label[b-azi9ypzz84] {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    color: #3b4450;
    gap: 0.3rem;
}

.field-grid input[b-azi9ypzz84] {
    padding: 0.55rem 0.65rem;
    font-size: 1.1rem;
    border: 1px solid #b9c2cc;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.banner-low[b-azi9ypzz84] {
    background: #b91c1c;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1rem;
}

.banner-maxdose[b-azi9ypzz84] {
    background: #d97706;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1rem;
}

.banner-invalid[b-azi9ypzz84] {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.result dl[b-azi9ypzz84] {
    margin: 0;
}

.result .row[b-azi9ypzz84] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.45rem 0;
    border-bottom: 1px solid #eef1f4;
}

.result .row dt[b-azi9ypzz84] {
    color: #5a6572;
}

.result .row dd[b-azi9ypzz84] {
    margin: 0;
    font-variant-numeric: tabular-nums;
    font-size: 1.1rem;
}

.result .row.total[b-azi9ypzz84] {
    border-bottom: none;
    margin-top: 0.35rem;
    padding-top: 0.75rem;
    border-top: 2px solid #3b4450;
}

.result .row.total dt[b-azi9ypzz84] {
    font-weight: 700;
    color: #111827;
}

.result .row.total dd[b-azi9ypzz84] {
    font-size: 1.9rem;
    font-weight: 800;
    color: #111827;
}

.hint[b-azi9ypzz84] {
    color: #6b7280;
}

.meal-picker select[b-azi9ypzz84] {
    width: 100%;
    padding: 0.55rem 0.65rem;
    font-size: 1rem;
    border: 1px solid #b9c2cc;
    border-radius: 8px;
    background: #fff;
}

.meal-picker .hint[b-azi9ypzz84] {
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
}

.period-picker .period-buttons[b-azi9ypzz84] {
    display: flex;
    gap: 0.5rem;
}

.period-picker button[b-azi9ypzz84] {
    flex: 1;
    padding: 0.55rem 0;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid #b9c2cc;
    background: #fff;
    color: #3b4450;
    border-radius: 8px;
    cursor: pointer;
}

.period-picker button.selected[b-azi9ypzz84] {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

.params-strip .params-values[b-azi9ypzz84] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    align-items: baseline;
    font-size: 0.9rem;
    color: #5a6572;
}

.params-strip .params-values strong[b-azi9ypzz84] {
    color: #111827;
}

.edit-link[b-azi9ypzz84] {
    margin-left: auto;
    font-size: 0.85rem;
}

.banner-saved[b-azi9ypzz84] {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.log-section .field-grid[b-azi9ypzz84] {
    margin-bottom: 0.75rem;
}

.log-btn[b-azi9ypzz84] {
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #16a34a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.log-btn:disabled[b-azi9ypzz84] {
    background: #86efac;
    cursor: default;
}
/* /Components/Pages/Login.razor.rz.scp.css */
.login-page[b-jpg1tnxtv3] {
    max-width: 380px;
    margin: 8vh auto 0;
    padding: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

h1[b-jpg1tnxtv3] {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
}

.card[b-jpg1tnxtv3] {
    background: #fff;
    border: 1px solid #d9dee3;
    border-radius: 10px;
    padding: 1.25rem;
}

.card h2[b-jpg1tnxtv3] {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #5a6572;
    margin: 0 0 0.75rem;
}

.card label[b-jpg1tnxtv3] {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    color: #3b4450;
    gap: 0.3rem;
    margin-bottom: 0.75rem;
}

.card input[b-jpg1tnxtv3] {
    padding: 0.55rem 0.65rem;
    font-size: 1rem;
    border: 1px solid #b9c2cc;
    border-radius: 8px;
}

.card button[b-jpg1tnxtv3] {
    width: 100%;
    padding: 0.65rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #2563eb;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.card button:hover[b-jpg1tnxtv3] {
    background: #1d4ed8;
}

.login-error[b-jpg1tnxtv3] {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}
/* /Components/Pages/MealEditor.razor.rz.scp.css */
.meal-editor-page[b-a4zceoqd2x] {
    max-width: 720px;
    margin: 0 auto;
    padding: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

h1[b-a4zceoqd2x] {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.total-line[b-a4zceoqd2x] {
    color: #5a6572;
    margin-bottom: 1rem;
}

.total-line strong[b-a4zceoqd2x] {
    color: #111827;
    font-size: 1.1rem;
}

.card[b-a4zceoqd2x] {
    background: #fff;
    border: 1px solid #d9dee3;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.card h2[b-a4zceoqd2x] {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #5a6572;
    margin: 0 0 0.75rem;
}

.item-table[b-a4zceoqd2x] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.item-table th[b-a4zceoqd2x] {
    text-align: left;
    color: #5a6572;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.35rem 0.5rem;
    border-bottom: 2px solid #e3e7ec;
}

.item-table td[b-a4zceoqd2x] {
    padding: 0.5rem;
    border-bottom: 1px solid #eef1f4;
}

.item-table .num[b-a4zceoqd2x] {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.qty-cell input[b-a4zceoqd2x] {
    width: 5rem;
    padding: 0.35rem 0.5rem;
    border: 1px solid #b9c2cc;
    border-radius: 6px;
    text-align: right;
}

.row-actions[b-a4zceoqd2x] {
    text-align: right;
}

.row-actions button[b-a4zceoqd2x] {
    padding: 0.3rem 0.7rem;
    font-size: 0.85rem;
    background: #fff;
    border: 1px solid #b9c2cc;
    border-radius: 6px;
    cursor: pointer;
}

.row-actions button.danger[b-a4zceoqd2x] {
    color: #b91c1c;
    border-color: #fca5a5;
}

.add-item-form[b-a4zceoqd2x] {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 0.75rem;
    align-items: end;
}

.add-item-form label[b-a4zceoqd2x] {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    color: #3b4450;
    gap: 0.3rem;
}

.add-item-form input[b-a4zceoqd2x] {
    padding: 0.55rem 0.65rem;
    font-size: 1rem;
    border: 1px solid #b9c2cc;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.save-btn[b-a4zceoqd2x] {
    padding: 0.55rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: #2563eb;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
}

.save-btn:disabled[b-a4zceoqd2x] {
    background: #93c5fd;
}

.typeahead[b-a4zceoqd2x] {
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
    border: 1px solid #e3e7ec;
    border-radius: 8px;
    overflow: hidden;
}

.typeahead li + li[b-a4zceoqd2x] {
    border-top: 1px solid #eef1f4;
}

.typeahead button[b-a4zceoqd2x] {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.55rem 0.8rem;
    background: #fff;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: left;
}

.typeahead button:hover[b-a4zceoqd2x] {
    background: #eff6ff;
}

.typeahead .carbs[b-a4zceoqd2x] {
    color: #5a6572;
    font-variant-numeric: tabular-nums;
}

.banner-invalid[b-a4zceoqd2x] {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.hint[b-a4zceoqd2x] {
    color: #6b7280;
    font-size: 0.9rem;
}
/* /Components/Pages/Meals.razor.rz.scp.css */
.meals-page[b-32jbjtxzl0] {
    max-width: 640px;
    margin: 0 auto;
    padding: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

h1[b-32jbjtxzl0] {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.card[b-32jbjtxzl0] {
    background: #fff;
    border: 1px solid #d9dee3;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.card h2[b-32jbjtxzl0] {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #5a6572;
    margin: 0 0 0.75rem;
}

.new-meal-form[b-32jbjtxzl0] {
    display: flex;
    gap: 0.75rem;
}

.new-meal-form input[b-32jbjtxzl0] {
    flex: 1;
    padding: 0.55rem 0.65rem;
    font-size: 1rem;
    border: 1px solid #b9c2cc;
    border-radius: 8px;
}

.save-btn[b-32jbjtxzl0] {
    padding: 0.55rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: #2563eb;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
}

.save-btn:disabled[b-32jbjtxzl0] {
    background: #93c5fd;
}

.meal-table[b-32jbjtxzl0] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.meal-table th[b-32jbjtxzl0] {
    text-align: left;
    color: #5a6572;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.35rem 0.5rem;
    border-bottom: 2px solid #e3e7ec;
}

.meal-table td[b-32jbjtxzl0] {
    padding: 0.5rem;
    border-bottom: 1px solid #eef1f4;
}

.meal-table .num[b-32jbjtxzl0] {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.row-actions[b-32jbjtxzl0] {
    text-align: right;
}

.row-actions button[b-32jbjtxzl0] {
    padding: 0.3rem 0.7rem;
    font-size: 0.85rem;
    background: #fff;
    border: 1px solid #b9c2cc;
    border-radius: 6px;
    cursor: pointer;
}

.row-actions button.danger[b-32jbjtxzl0] {
    color: #b91c1c;
    border-color: #fca5a5;
}

.banner-invalid[b-32jbjtxzl0] {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
}

.hint[b-32jbjtxzl0] {
    color: #6b7280;
    font-size: 0.9rem;
}
/* /Components/Pages/Parameters.razor.rz.scp.css */
.params-page[b-qh1d8qci4l] {
    max-width: 640px;
    margin: 0 auto;
    padding: 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

h1[b-qh1d8qci4l] {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.patient-line[b-qh1d8qci4l] {
    color: #5a6572;
    margin-bottom: 1rem;
}

.card[b-qh1d8qci4l] {
    background: #fff;
    border: 1px solid #d9dee3;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.field-grid[b-qh1d8qci4l] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.field-grid label[b-qh1d8qci4l] {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    color: #3b4450;
    gap: 0.3rem;
}

.field-grid input[b-qh1d8qci4l] {
    padding: 0.55rem 0.65rem;
    font-size: 1.1rem;
    border: 1px solid #b9c2cc;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.save-btn[b-qh1d8qci4l] {
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #2563eb;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.save-btn:disabled[b-qh1d8qci4l] {
    background: #93c5fd;
    cursor: default;
}

.banner-invalid[b-qh1d8qci4l] {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.banner-saved[b-qh1d8qci4l] {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.hint[b-qh1d8qci4l] {
    color: #6b7280;
    font-size: 0.9rem;
}
