:root,
[data-theme="light"] {
    --color-primary: #a75642;
    --color-primary-dark: #8a4636;
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-text: #212121;
    --color-text-muted: #6e6e6e;
    --color-border: #e8e8ed;
    --color-success: #2e7d32;
    --color-error: #c62828;
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
    --nav-height: 80px;
    --sidebar-width: 240px;
    --touch-min: 44px;
    --radius: 12px;
    --font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

[data-theme="dark"] {
    --color-bg: #121212;
    --color-surface: #1e1e1e;
    --color-text: #f5f5f5;
    --color-text-muted: #a0a0a0;
    --color-border: #333333;
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background: var(--color-bg);
    color: var(--color-text);
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

.app-shell {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.app-main {
    flex: 1;
    padding: 1rem;
    padding-bottom: calc(var(--nav-height));
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    /*background: #f4f5f7;*/
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 1.25rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.15s;
    margin-top:1px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    width: 100%;
}

.btn-ghost {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-border);
}

.card {
    background: var(--color-surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 1rem;
    border: 1px solid var(--color-border);
}

.form-field {
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--color-text-muted);
}

.form-field input {
    width: 100%;
    min-height: var(--touch-min);
    padding: 0 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 1rem;
    background: var(--color-surface);
    color: var(--color-text);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stat-card h3 {
    margin: 0 0 0.25rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.stat-card .value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-card .delta {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--color-border);
    min-height: var(--touch-min);
}

.order-item:last-child {
    border-bottom: none;
}

.skeleton {
    background: linear-gradient(90deg, var(--color-border) 25%, transparent 50%, var(--color-border) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.2s infinite;
    border-radius: var(--radius);
    min-height: 4rem;
}

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

.offline-banner {
    background: #fff3cd;
    color: #664d03;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

[data-theme="dark"] .offline-banner {
    background: #3d3200;
    color: #ffecb3;
}

.toast-host {
    position: fixed;
    bottom: calc(var(--nav-height) + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: min(92vw, 400px);
    pointer-events: none;
}


.toast {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    margin-top: 0.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-card);
    pointer-events: auto;
}

.toast-success { background: #e8f5e9; color: var(--color-success); }
.toast-error { background: #ffebee; color: var(--color-error); }
.toast-info { background: var(--color-surface); color: var(--color-text); border: 1px solid var(--color-border); }

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner-sm {
    width: 28px;
    height: 28px;
    border-width: 3px;
}

.infinite-scroll-sentinel {
    height: 1px;
    width: 100%;
    pointer-events: none;
}

.infinite-scroll-more {
    display: flex;
    justify-content: center;
    padding: 1rem 0 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.search-bar-pill {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0.35rem 0 0.65rem;
    padding: 0.15rem 0.35rem 0.15rem 0.15rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.search-bar-pill-input {
    flex: 1;
    min-width: 0;
    min-height: 42px;
    border: none;
    background: transparent;
    padding: 0 0.5rem 0 0.85rem;
    font-size: 0.875rem;
    font-family: inherit;
    color: #212121;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.search-bar-pill-input::placeholder {
    color: #9e9e9e;
}

.search-bar-pill-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.search-bar-pill-btn {
    flex-shrink: 0;
    width: 44px;
    height: 36px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: #757575;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.search-bar-pill-btn:active {
    opacity: 0.7;
}

.empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--color-text-muted);
}

.auth-page {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #fff;
}

/* Sign-in page (global — ensures styles apply to native inputs in WASM) */
.sign-in-page {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 0 2rem;
    box-sizing: border-box;
}

.sign-in-header {
    text-align: center;
    margin-bottom: 2rem;
}

.sign-in-title {
    margin: 0 0 0.5rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.02em;
}

.sign-in-subtitle {
    margin: 0 auto;
    font-size: 0.9rem;
    font-weight: 400;
    color: #6e6e6e;
    line-height: 1.45;
    max-width: 300px;
}

.sign-in-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.sign-in-field {
    display: block;
    width: 100%;
}

.sign-in-field-skeleton {
    min-height: 52px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.2s infinite;
}

.sign-in-page input.sign-in-input {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 0 1.25rem;
    border: none;
    border-radius: 999px;
    background-color: #f3f3f3;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: #212121;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.sign-in-page input.sign-in-input::placeholder {
    color: #9e9e9e;
    font-weight: 400;
}

.sign-in-page input.sign-in-input:focus {
    box-shadow: 0 0 0 2px rgba(167, 86, 66, 0.35);
}

.sign-in-page input.sign-in-input:-webkit-autofill,
.sign-in-page input.sign-in-input:-webkit-autofill:hover,
.sign-in-page input.sign-in-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #f3f3f3 inset;
    -webkit-text-fill-color: #212121;
    caret-color: #212121;
    border-radius: 999px;
    transition: background-color 5000s ease-in-out 0s;
}

.sign-in-page .sign-in-btn {
    display: block;
    width: 100%;
    min-height: 52px;
    margin-top: 0.5rem;
    padding: 0 1.25rem;
    border: none;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.sign-in-page .sign-in-btn:hover:not(:disabled) {
    opacity: 0.88;
}

.sign-in-page .sign-in-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.brand-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.brand-logo-img {
    height: 70px;
    width: auto;
    max-width: min(280px, 85vw);
    object-fit: contain;
    display: block;
}

.app-loading {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

#app-loading-static {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 10000;
}

.chart-placeholder {
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    border: 1px dashed var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

/* Dashboard (MAUI-style mobile) */
.app-main:has(.main-app-page) {
    padding: 0;
    padding-bottom: var(--nav-height);
    max-width: none;
}

.main-app-page {
    min-height: calc(100dvh - var(--nav-height));
    background: white; /* #f4f5f7; */
}

.main-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 0.75rem;
    background: white; /* #f4f5f7; */
}

.main-page-header-logo {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.main-page-header-logout {
    width: 35px;
    height: 35px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background: #fff;
    color: #424242;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.main-page-panel {
    margin: 6px;
    background: #f4f5f7;
    padding: 10px;
    border-radius: 15px;
}
.main-page-panel .page-title:first-child {
    margin-top: 0;
}

.overview-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.overview-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #212121;
    padding-left: 7px;
}

.filter-select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.filter-select {
    appearance: none;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    background: #fff;
    padding: 0.4rem 2rem 0.4rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #424242;
    cursor: pointer;
    min-height: 36px;
}

.filter-chevron {
    position: absolute;
    right: 0.65rem;
    pointer-events: none;
    color: #757575;
}

.kpi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.kpi-card {
    background: #fff;
    border-radius: 16px;
    padding: 0.85rem 0.75rem 0.75rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    min-width: 0;
}

.kpi-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.25rem;
    margin-bottom: 0.35rem;
}

.kpi-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #9e9e9e;
}

.kpi-icon-wrap {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kpi-icon-sales {
    background: #e8f5e9;
}

.kpi-icon-dispatch {
    background: #e3f2fd;
}

.kpi-value-row {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    flex-wrap: wrap;
}

.kpi-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: #212121;
    line-height: 1.1;
}

.kpi-unit {
    font-size: 0.75rem;
    font-weight: 700;
    color: #757575;
}

.kpi-meta {
    margin: 0.2rem 0 0.35rem;
    font-size: 0.6875rem;
    color: #9e9e9e;
}

.kpi-trend {
    margin: 0;
    font-size: 0.625rem;
    font-weight: 600;
}

.kpi-trend.trend-down {
    color: #e53935;
}

.kpi-trend.trend-up {
    color: #2e7d32;
}

.kpi-trend.trend-neutral {
    color: #9e9e9e;
}

.dashboard-card {
    background: #fff;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    margin-bottom: 0.85rem;
    padding-bottom: 0px;
}

.card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #212121;
}

.card-subtitle {
    margin: 0.25rem 0 0.75rem;
    font-size: 0.75rem;
    color: #9e9e9e;
    line-height: 1.35;
}

.chart-card .card-subtitle {
    margin-bottom: 0.35rem;
}

.chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.65rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #616161;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.legend-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.purchase {
    background: #a5d6a7;
}

.legend-dot.dispatch {
    background: #90caf9;
}

.dashboard-chart-wrap {
    width: 100%;
    margin-bottom: 0;
}

.dashboard-chart-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 14.5rem;
}

.dashboard-chart-loading .spinner {
    width: 36px;
    height: 36px;
    border-width: 3px;
}

.dashboard-chart-empty {
    display: flex;
    gap: 0.5rem;
    height: 14.5rem;
    width: 100%;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #9e9e9e;
    padding: 0.5rem 0 1.75rem;
    min-width: 2rem;
    line-height: 1.2;
    flex-shrink: 0;
}

.chart-plot-empty {
    flex: 1;
    min-width: 0;
    border-left: 1px solid #f0f0f0;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent calc(20% - 1px),
        #f5f5f5 calc(20% - 1px),
        #f5f5f5 20%
    );
    min-height: 0;
}

.dashboard-apex-chart {
    width: 100%;
}

.dashboard-apex-chart > div {
    width: 100% !important;
}

.dashboard-apex-chart .apexcharts-xaxis-label,
.dashboard-apex-chart .apexcharts-yaxis-label {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif !important;
}

.recent-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.view-all-link {
    border: none;
    background: none;
    padding: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
}

.card-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 0.65rem 0 0;
}

.recent-empty {
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    color: #9e9e9e;
    height: 35px;
    text-align: center;
}

.recent-order-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
}

.recent-order-item:last-child {
    border-bottom: none;
}

.recent-order-left {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.recent-order-left strong {
    font-size: 0.77rem;
    color: #212121;
}

.recent-order-left span {
    font-size: 0.75rem;
    color: #9e9e9e;
}

.recent-order-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: #757575;
    flex-shrink: 0;
}

.status-pill {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.order-list-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    padding: 0.75rem 0.85rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    min-height: 112px;
}

.order-list-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.order-list-card-no {
    font-size: 1.05rem;
    font-weight: 700;
    color: #212121;
}

.order-list-card-chevron {
    color: #a0a0a0;
    font-size: 1.25rem;
    line-height: 1;
}

.order-list-card-customer {
    margin-top: 0.3rem;
    font-size: 0.76rem;
    font-weight: 500;
    color: #616161;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-list-card-date {
    margin-top: 0.2rem;
    font-size: 0.72rem;
    color: #9e9e9e;
}

.order-list-card-footer {
    margin-top: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.order-list-status-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.18rem 0.65rem;
    font-size: 0.66rem;
    font-weight: 600;
    white-space: nowrap;
}

.order-list-qty {
    font-size: 0.93rem;
    font-weight: 700;
    color: #212121;
}

.order-list-card-footer-compact {
    margin-top: 0.65rem;
    justify-content: flex-end;
}

.stock-list-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border-radius: 14px;
    padding: 0.75rem 0.85rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    min-height: 64px;
}

.stock-list-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.stock-list-card-title {
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.35;
    color: #212121;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.stock-list-card-qty {
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.2;
}

.stock-list-card-chevron {
    flex-shrink: 0;
    color: #a0a0a0;
    font-size: 1.35rem;
    line-height: 1;
    padding-left: 0.15rem;
}

.dashboard-skeleton-block {
    background: linear-gradient(90deg, #eceff1 25%, #f5f5f5 50%, #eceff1 75%);
    background-size: 200% 100%;
    animation: shimmer 1.2s infinite;
    border-radius: 16px;
    min-height: 4.5rem;
    margin-bottom: 0.75rem;
}

.kpi-skeleton {
    min-height: 7rem;
}

.dashboard-fab {
    position: fixed;
    right: 1.25rem;
    bottom: calc(var(--nav-height) + 0.5rem);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #424242;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 300;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Floating pill bottom navigation (mobile + tablet) */
.bottom-nav-pill {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    z-index: 200;
    width: min(calc(100% - 2rem), 560px);
    pointer-events: none;
}

.bottom-nav-pill-inner {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.15rem;
    padding: 0.4rem 0.45rem;
    background: #f2f2f2;
    border-radius: 999px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.15rem 0.25rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #424242;
    text-decoration: none;
    transition: color 0.15s ease;
}

.bottom-nav-item-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.45rem 0.65rem;
    border-radius: 999px;
    white-space: nowrap;
}

.bottom-nav-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: none;
}

.bottom-nav-label {
    line-height: 1;
}

.bottom-nav-item:not(.active) .bottom-nav-item-content {
    padding: 0.45rem 0.5rem;
}

.bottom-nav-item.active {
    color: #fff;
}

.bottom-nav-item.active .bottom-nav-item-content {
    background: var(--color-primary);
    padding: 0.6rem 1rem;
    box-shadow: 0 2px 8px rgba(167, 86, 66, 0.35);
}

.bottom-nav-item.active .bottom-nav-icon {
    display: block;
}

@media (min-width: 768px) {
    .bottom-nav-pill {
        width: min(calc(100% - 4rem), 640px);
        bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    }

    .bottom-nav-pill-inner {
        padding: 0.5rem 0.55rem;
    }

    .bottom-nav-item {
        font-size: 0.9375rem;
    }

    .bottom-nav-item.active .bottom-nav-item-content {
        padding: 0.75rem 1.15rem;
    }
}
