/* AI Trading Lab - component library, built on tokens.css.
   Every visual element the app uses lives here as a reusable class, not
   duplicated per page - a rebrand or a redesign changes this file, not
   eleven templates. Organised: base -> layout shell -> nav -> primitives
   (buttons, badges, inputs) -> data display (cards, tables, metrics) ->
   AI-specific (status, activity feed, decision cards) -> overlays
   (command palette, notifications, modals) -> auth page -> responsive. */

* { box-sizing: border-box; }
html { color-scheme: dark; }
html[data-theme="light"] { color-scheme: light; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--brand-soft); color: var(--text); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--scrollbar); border-radius: var(--radius-full); }

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.dim { color: var(--text-dim); }
.faint { color: var(--text-faint); }
.positive { color: var(--positive); }
.negative { color: var(--negative); }
.warning-text { color: var(--warning); }

/* Small utility set - covers the handful of one-off layout tweaks that
   would otherwise need an inline style="" attribute, which the app's CSP
   (style-src 'self') does not allow. */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.mt-tight { margin-top: 2px; }
.max-w-sm { max-width: 480px; }
.max-w-md { max-width: 640px; }
.gap-sm { gap: 6px; }
.list-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3) 0; border-bottom: 1px solid var(--border);
}
.list-row:last-child { border-bottom: none; }
.list-row-tight { padding: var(--space-2) 0; }
.chart-svg { width: 100%; height: 180px; display: block; }
.chart-svg-sm { width: 100%; height: 64px; display: block; }
.panel-inset { background: var(--bg-inset); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.is-hidden { display: none !important; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.visually-hidden-focusable:not(:focus) { position: absolute; left: -9999px; }
.visually-hidden-focusable:focus {
  position: fixed; top: var(--space-2); left: var(--space-2); z-index: 1000;
  background: var(--brand); color: var(--text-on-brand); padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
}

/* ---------------------------------------------------------------------
   App shell
--------------------------------------------------------------------- */
.app-shell {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  min-height: 100vh;
}
.app-shell.is-sidebar-collapsed { grid-template-columns: var(--sidebar-width-collapsed) 1fr; }

.sidebar {
  background: var(--bg-raised);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: var(--space-4) var(--space-3);
  gap: var(--space-6);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.brand { display: flex; align-items: center; gap: var(--space-2); padding: var(--space-2); }
.brand-mark {
  width: 28px; height: 28px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand), var(--info));
  display: flex; align-items: center; justify-content: center;
  color: var(--text-on-brand); font-weight: var(--weight-bold); font-size: var(--text-sm);
  flex-shrink: 0;
}
.brand-name { font-weight: var(--weight-bold); letter-spacing: 0.04em; font-size: var(--text-base); white-space: nowrap; }
.is-sidebar-collapsed .brand-name,
.is-sidebar-collapsed .nav-label,
.is-sidebar-collapsed .sidebar-footer-text { display: none; }

.nav-group { display: flex; flex-direction: column; gap: 2px; }
.nav-item {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  transition: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
  white-space: nowrap;
  overflow: hidden;
}
.nav-item:hover { background: var(--bg-hover); color: var(--text); }
.nav-item.is-active { background: var(--brand-soft); color: var(--brand); }
.nav-item-icon { width: 18px; height: 18px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.nav-item-icon svg { width: 16px; height: 16px; }

.sidebar-footer { margin-top: auto; display: flex; flex-direction: column; gap: var(--space-2); }
.sidebar-collapse-btn {
  display: flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-2); border-radius: var(--radius-sm); color: var(--text-faint);
  background: none; border: 1px solid var(--border); cursor: pointer; width: 100%;
}
.sidebar-collapse-btn:hover { color: var(--text); border-color: var(--border-strong); }

.main-column { display: flex; flex-direction: column; min-width: 0; }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4);
  padding: 0 var(--space-6);
  height: var(--topbar-height);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky; top: 0; z-index: 20;
}
.topbar-left { display: flex; align-items: center; gap: var(--space-3); min-width: 0; }
.topbar-title { font-size: var(--text-md); font-weight: var(--weight-semibold); white-space: nowrap; }
.topbar-right { display: flex; align-items: center; gap: var(--space-2); }

.icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: none; border: 1px solid transparent; color: var(--text-dim); cursor: pointer;
  position: relative;
}
.icon-btn:hover { background: var(--bg-hover); color: var(--text); border-color: var(--border); }
.icon-btn svg { width: 17px; height: 17px; }

.icon-btn-dot {
  position: absolute; top: 6px; right: 6px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--negative); border: 2px solid var(--bg);
}

.content {
  flex: 1;
  padding: var(--space-6);
  max-width: var(--content-max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.mobile-nav-toggle {
  display: none;
  position: fixed; top: 12px; left: 12px; z-index: 96;
  background: var(--bg-raised); border: 1px solid var(--border);
}

/* ---------------------------------------------------------------------
   Primitives
--------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: filter var(--duration-fast) var(--ease), background var(--duration-fast) var(--ease);
  font-family: inherit;
}
.btn-primary { background: var(--brand); color: var(--text-on-brand); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { background: transparent; color: var(--text-dim); border-color: var(--border); }
.btn-ghost:hover { color: var(--text); border-color: var(--border-strong); }
.btn-danger { background: var(--negative-dim); color: var(--negative); border-color: transparent; }
.btn-danger:hover { filter: brightness(1.1); }
.btn-sm { padding: var(--space-1) var(--space-3); font-size: var(--text-sm); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.inline-form { display: inline; }

.badge {
  display: inline-flex; align-items: center; gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--bg-raised-2);
  border: 1px solid var(--border);
  color: var(--text-dim);
  white-space: nowrap;
}
.badge-brand { background: var(--brand-soft); color: var(--brand); border-color: transparent; }
.badge-positive { background: var(--positive-dim); color: var(--positive); border-color: transparent; }
.badge-negative { background: var(--negative-dim); color: var(--negative); border-color: transparent; }
.badge-warning { background: var(--warning-dim); color: var(--warning); border-color: transparent; }
.badge-info { background: var(--info-dim); color: var(--info); border-color: transparent; }

.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.dot-positive { background: var(--positive); }
.dot-negative { background: var(--negative); }
.dot-warning { background: var(--warning); }
.dot-brand { background: var(--brand); }
.dot-dim { background: var(--text-faint); }
.dot-pulse { animation: pulse-dot 2.2s var(--ease) infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

label.field { display: flex; flex-direction: column; gap: var(--space-2); font-size: var(--text-sm); color: var(--text-dim); }
input, select, textarea {
  background: var(--bg-inset);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  color: var(--text);
  font-size: var(--text-base);
  font-family: inherit;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); }

/* ---------------------------------------------------------------------
   Data display
--------------------------------------------------------------------- */
.panel {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.panel-title { margin: 0 0 var(--space-1); font-size: var(--text-lg); font-weight: var(--weight-semibold); }
.panel-title-sm {
  margin: 0 0 var(--space-3); font-size: var(--text-sm); text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-dim); font-weight: var(--weight-semibold);
}
.panel-sub { color: var(--text-dim); margin: 0; font-size: var(--text-sm); }
.panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-4); }

.grid { display: grid; gap: var(--space-4); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.stack { display: flex; flex-direction: column; gap: var(--space-4); }
.row { display: flex; align-items: center; gap: var(--space-3); }
.row-between { display: flex; align-items: center; justify-content: space-between; }

.metric-card { display: flex; flex-direction: column; gap: var(--space-1); }
.metric-label { font-size: var(--text-sm); color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.metric-value { font-size: var(--text-2xl); font-weight: var(--weight-bold); font-family: var(--font-mono); letter-spacing: -0.01em; }
.metric-value-lg { font-size: var(--text-3xl); }
.metric-delta { font-size: var(--text-base); font-weight: var(--weight-semibold); font-family: var(--font-mono); }
.metric-delta.positive { color: var(--positive); }
.metric-delta.negative { color: var(--negative); }
.metric-delta.neutral { color: var(--text-dim); }

table { width: 100%; border-collapse: collapse; font-size: var(--text-base); }
th {
  text-align: left; font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-faint); font-weight: var(--weight-semibold);
  padding: var(--space-2) var(--space-3); border-bottom: 1px solid var(--border);
}
td { padding: var(--space-3); border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr.is-hoverable:hover { background: var(--bg-hover); }
.table-wrap { overflow-x: auto; }

.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

.status-grid { display: flex; flex-direction: column; gap: var(--space-1); }
.status-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-2) 0; border-bottom: 1px solid var(--border); font-size: var(--text-base);
}
.status-row:last-child { border-bottom: none; }
.status-ok { color: var(--positive); }

.progress-track { width: 100%; height: 6px; border-radius: var(--radius-full); background: var(--bg-inset); overflow: hidden; }
.progress-fill { height: 100%; background: var(--brand); border-radius: var(--radius-full); transition: width var(--duration-slow) var(--ease); }
.progress-fill.warning { background: var(--warning); }
.progress-fill.negative { background: var(--negative); }
/* A dynamic width can't be set as style="width:N%" or via JS .style.width
   under this app's CSP (style-src 'self', no unsafe-inline blocks both) -
   so a fill percentage is expressed as one of these discrete classes
   instead, picked server-side (rounded to the nearest 5%). */
.pct-0 { width: 0%; } .pct-5 { width: 5%; } .pct-10 { width: 10%; }
.pct-15 { width: 15%; } .pct-20 { width: 20%; } .pct-25 { width: 25%; }
.pct-30 { width: 30%; } .pct-35 { width: 35%; } .pct-40 { width: 40%; }
.pct-45 { width: 45%; } .pct-50 { width: 50%; } .pct-55 { width: 55%; }
.pct-60 { width: 60%; } .pct-65 { width: 65%; } .pct-70 { width: 70%; }
.pct-75 { width: 75%; } .pct-80 { width: 80%; } .pct-85 { width: 85%; }
.pct-90 { width: 90%; } .pct-95 { width: 95%; } .pct-100 { width: 100%; }

/* ---------------------------------------------------------------------
   AI-specific components
--------------------------------------------------------------------- */
.ai-status {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  background: var(--bg-raised-2);
  border: 1px solid var(--border);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
}
.ai-status .dot { width: 8px; height: 8px; }

.activity-feed { display: flex; flex-direction: column; }
.activity-item {
  display: grid; grid-template-columns: 64px 20px 1fr; gap: var(--space-3);
  padding: var(--space-3) 0; border-bottom: 1px solid var(--border);
  animation: fade-in var(--duration-slow) var(--ease);
}
.activity-item:last-child { border-bottom: none; }
.activity-time { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--text-faint); padding-top: 2px; }
.activity-marker { display: flex; justify-content: center; padding-top: 5px; }
.activity-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.activity-title { font-size: var(--text-base); color: var(--text); }
.activity-detail { font-size: var(--text-sm); color: var(--text-dim); }
@keyframes fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.decision-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-raised);
  overflow: hidden;
}
.decision-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border);
}
.decision-card-symbol { font-size: var(--text-lg); font-weight: var(--weight-bold); font-family: var(--font-mono); }
.decision-card-body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-4); }
.decision-stat-row { display: flex; justify-content: space-between; font-size: var(--text-base); }
.decision-why { background: var(--bg-inset); border-radius: var(--radius-sm); padding: var(--space-3) var(--space-4); font-size: var(--text-sm); color: var(--text-dim); }
.decision-why-title { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-faint); margin-bottom: var(--space-1); font-weight: var(--weight-semibold); }

.pipeline {
  display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap;
}
.pipeline-step {
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--bg-inset);
  border: 1px solid var(--border);
  color: var(--text-faint);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pipeline-step.is-done { color: var(--positive); border-color: transparent; background: var(--positive-dim); }
.pipeline-step.is-active { color: var(--brand); border-color: transparent; background: var(--brand-soft); }
.pipeline-step.is-failed { color: var(--negative); border-color: transparent; background: var(--negative-dim); }
.pipeline-arrow { color: var(--text-faint); font-size: var(--text-sm); }

.risk-bar-row { display: flex; flex-direction: column; gap: var(--space-2); }
.risk-bar-label { display: flex; justify-content: space-between; font-size: var(--text-sm); }

/* ---------------------------------------------------------------------
   Empty / error states
--------------------------------------------------------------------- */
.empty-state {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-2);
  padding: var(--space-9) var(--space-5);
  color: var(--text-dim);
}
.empty-state-title { color: var(--text); font-weight: var(--weight-semibold); font-size: var(--text-md); }
.empty-state-icon { color: var(--text-faint); margin-bottom: var(--space-2); }

.error-state {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-5);
  border: 1px solid var(--negative);
  border-radius: var(--radius-md);
  background: var(--negative-dim);
}
.error-state-title { font-weight: var(--weight-bold); color: var(--negative); }

/* ---------------------------------------------------------------------
   Overlays: command palette, notifications, modal
--------------------------------------------------------------------- */
.overlay-backdrop {
  position: fixed; inset: 0; background: rgba(3, 5, 10, 0.6);
  display: none; align-items: flex-start; justify-content: center;
  padding-top: 12vh; z-index: 100;
}
.overlay-backdrop.is-open { display: flex; }

.command-palette {
  width: 100%; max-width: 560px;
  background: var(--bg-raised); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.command-palette-input {
  width: 100%; border: none; border-bottom: 1px solid var(--border);
  padding: var(--space-4) var(--space-5); font-size: var(--text-md);
  background: transparent; color: var(--text); border-radius: 0;
}
.command-palette-input:focus { outline: none; }
.command-palette-list { max-height: 340px; overflow-y: auto; padding: var(--space-2); }
.command-palette-item {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
  padding: var(--space-3) var(--space-3); border-radius: var(--radius-sm); cursor: pointer;
  font-size: var(--text-base);
}
.command-palette-item:hover, .command-palette-item.is-selected { background: var(--bg-hover); }
.command-palette-hint { font-size: var(--text-xs); color: var(--text-faint); }
.command-palette-empty { padding: var(--space-6); text-align: center; color: var(--text-faint); font-size: var(--text-sm); }

.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(3, 5, 10, 0.5);
  display: none; z-index: 90;
}
.drawer-backdrop.is-open { display: block; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100vh; width: 100%; max-width: 400px;
  background: var(--bg-raised); border-left: 1px solid var(--border);
  transform: translateX(100%); transition: transform var(--duration-base) var(--ease);
  z-index: 91; display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--border); }
.drawer-title { font-size: var(--text-md); font-weight: var(--weight-semibold); margin: 0; }
.drawer-body { flex: 1; overflow-y: auto; padding: var(--space-2) var(--space-3); }

.notification-item { display: flex; gap: var(--space-3); padding: var(--space-3); border-radius: var(--radius-sm); }
.notification-item:hover { background: var(--bg-hover); }
.notification-item.is-unread { background: var(--brand-soft); }
.notification-dot { margin-top: 6px; }
.notification-body { flex: 1; min-width: 0; }
.notification-msg { font-size: var(--text-sm); color: var(--text); }
.notification-time { font-size: var(--text-xs); color: var(--text-faint); margin-top: 2px; }

/* ---------------------------------------------------------------------
   Auth page
--------------------------------------------------------------------- */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: var(--space-4); }
.auth-card { width: 100%; max-width: 380px; background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-8) var(--space-6); box-shadow: var(--shadow-md); }
.auth-sub { color: var(--text-dim); font-size: var(--text-base); margin: var(--space-3) 0 var(--space-6); }
.auth-form { display: flex; flex-direction: column; gap: var(--space-4); }
.auth-form label { display: flex; flex-direction: column; gap: var(--space-2); font-size: var(--text-sm); color: var(--text-dim); }
.auth-footnote { margin-top: var(--space-5); font-size: var(--text-xs); color: var(--text-faint); }
.alert { padding: var(--space-3) var(--space-3); border-radius: var(--radius-sm); font-size: var(--text-sm); margin-bottom: var(--space-3); }
.alert-error { background: var(--negative-dim); border: 1px solid var(--negative); color: var(--negative); }

/* ---------------------------------------------------------------------
   Page helpers
--------------------------------------------------------------------- */
.page-header { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; }
.page-title { font-size: var(--text-xl); font-weight: var(--weight-bold); }
.page-sub { color: var(--text-dim); margin-top: var(--space-1); }
.tabs { display: flex; gap: var(--space-2); border-bottom: 1px solid var(--border); }
.tab { padding: var(--space-3) var(--space-1); font-size: var(--text-base); color: var(--text-dim); border-bottom: 2px solid transparent; cursor: pointer; }
.tab.is-active { color: var(--text); border-bottom-color: var(--brand); }

/* ---------------------------------------------------------------------
   Responsive
--------------------------------------------------------------------- */
@media (max-width: 960px) {
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .app-shell { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed; left: 0; top: 0; z-index: 95; width: 240px;
    transform: translateX(-100%); transition: transform var(--duration-base) var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .sidebar.is-open { transform: translateX(0); }
  .mobile-nav-toggle { display: flex; }
  .content { padding: var(--space-4); }
  /* Left padding clears the fixed hamburger button, which floats above
     the topbar rather than sitting in its normal flow. The trading-mode
     badge and AI-status label are dropped too - both are restated in the
     page content itself (the Overview hero, every page's topbar dot),
     so on a narrow screen the topbar's job shrinks to icons only. */
  .topbar { padding: 0 var(--space-3) 0 56px; gap: var(--space-2); }
  .topbar-right { gap: 4px; }
  .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: 1fr; }
  .topbar-title, .trading-mode-badge, .ai-status-label { display: none; }
  .ai-status { padding: var(--space-2); }
}

@media (max-width: 420px) {
  .icon-btn { width: 30px; height: 30px; }
  .btn-ghost.btn-sm { padding: var(--space-1) var(--space-2); }
}
