:root {
  --bg: #f4f6f7;
  --surface: #ffffff;
  --surface-2: #f9fbfb;
  --ink: #16191b;
  --muted: #626b6e;
  --faint: #949c9f;
  --line: #e3e8e9;
  --brand: #0e7c85;          /* HQ teal, dark enough to carry white text */
  --brand-hover: #0b6a72;
  --brand-soft: #e2f7f8;
  --brand-ink: #0b5b62;
  --accent: #04d0d1;         /* the cyan in the HQ mark */
  --dark: #16191b;
  --dark-2: #202628;
  --ok: #0f9d58;
  --ok-soft: #e7f6ee;
  --warn: #b45309;
  --warn-soft: #fef3c7;
  --danger: #dc2626;
  --danger-soft: #fee2e2;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(22, 25, 27, .05), 0 8px 24px -12px rgba(22, 25, 27, .2);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; font-weight: 650; letter-spacing: -.01em; }
h1 { font-size: 1.5rem; }
h2 { font-size: 1.1rem; }
h3 { font-size: .95rem; }
p { margin: 0; }
a { color: var(--brand); }

.muted { color: var(--muted); }
.faint { color: var(--faint); }
.small { font-size: .82rem; }
.mono { font-variant-numeric: tabular-nums; }
.right { text-align: right; }
.center { text-align: center; }
.grow { flex: 1; }
.row { display: flex; gap: 10px; align-items: center; }
.row.wrap { flex-wrap: wrap; }
.stack { display: flex; flex-direction: column; gap: 6px; }
.hidden { display: none !important; }

/* ------------------------------------------------------------ app shell */

.shell { display: grid; grid-template-columns: 248px 1fr; min-height: 100vh; }

.topbar {
  display: none;
  position: sticky; top: 0; z-index: 50;
  align-items: center; gap: 12px;
  padding: 10px 14px;
  background: var(--dark);
  color: #fff;
}
.topbar img { width: 30px; height: 30px; border-radius: 8px; background: #fff; flex: none; }
.topbar strong { font-size: .98rem; letter-spacing: -.01em; }
.topbar .burger {
  all: unset;
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border-radius: 9px; cursor: pointer;
  color: #fff; font-size: 1.15rem;
}
.topbar .burger:active { background: rgba(255, 255, 255, .12); }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 65;
  background: rgba(12, 14, 15, .5);
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
body.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }

.sidebar {
  background: var(--dark);
  color: #c4ccce;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: 0;
  height: 100vh;
}
.sidebar .brand { display: flex; gap: 10px; align-items: center; color: #fff; }
.sidebar .brand .mark {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: #fff; overflow: hidden; flex: none;
}
.sidebar .brand .mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sidebar .brand small { display: block; color: #8e999c; font-weight: 500; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }
.nav { display: flex; flex-direction: column; gap: 2px; }
.nav button {
  all: unset;
  cursor: pointer;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: .9rem;
  color: #b3bdbf;
  display: flex; gap: 10px; align-items: center;
}
.nav button:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav button.active { background: rgba(4, 208, 209, .15); color: #fff; font-weight: 600; box-shadow: inset 2px 0 0 var(--accent); }
.nav .ico { width: 18px; text-align: center; opacity: .9; }
.sidebar .foot { margin-top: auto; border-top: 1px solid rgba(255,255,255,.08); padding-top: 14px; font-size: .82rem; }
.sidebar .foot .who { color: #fff; font-weight: 600; }
.sidebar .foot .em { color: #8e999c; word-break: break-all; }

.main { padding: 26px 30px 60px; max-width: 1180px; }
.page-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }

/* ---------------------------------------------------------------- cards */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
/* Any two stacked blocks keep their gap — a card after a grid of cards was
   landing flush against it. */
.card + .card,
.grid + .card,
.card + .grid,
.grid + .grid { margin-top: 16px; }
.card-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.card-body { padding: 18px; }
.card-body.tight { padding: 12px 18px; }

.grid { display: grid; gap: 14px; }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }

.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); }
.stat .k { font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; }
.stat .v { font-size: 1.7rem; font-weight: 680; margin-top: 4px; letter-spacing: -.02em; }
.stat .s { font-size: .8rem; color: var(--muted); }

/* -------------------------------------------------------------- controls */

button, .btn {
  font: inherit;
  font-weight: 560;
  padding: 8px 14px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: background .12s, border-color .12s, opacity .12s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px; justify-content: center;
}
button:hover, .btn:hover { background: var(--surface-2); border-color: #d6dae6; }
button:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); }
.btn-danger { color: var(--danger); border-color: #f3c9c9; background: #fff; }
.btn-danger:hover { background: var(--danger-soft); border-color: #f0b4b4; }
.btn-sm { padding: 5px 10px; font-size: .82rem; border-radius: 8px; }
.btn-ghost { border-color: transparent; background: transparent; }
.btn-ghost:hover { background: #eef0f6; border-color: transparent; }

label { display: block; font-size: .8rem; font-weight: 600; color: #475569; margin-bottom: 5px; }
input, select, textarea {
  font: inherit;
  width: 100%;
  padding: 8px 11px;
  border: 1px solid #d8dce7;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--brand-soft); border-color: var(--brand); }
input[type="checkbox"] { width: auto; }
.field { margin-bottom: 14px; }
.field .hint { font-size: .78rem; color: var(--muted); margin-top: 4px; font-weight: 400; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0 14px; }
.check { display: flex; gap: 9px; align-items: flex-start; font-size: .88rem; }
.check input { margin-top: 3px; }

/* --------------------------------------------------------------- tables */

table { width: 100%; border-collapse: collapse; }
th {
  text-align: left; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted); font-weight: 650; padding: 10px 14px; border-bottom: 1px solid var(--line);
  background: var(--surface-2); white-space: nowrap;
}
td { padding: 11px 14px; border-bottom: 1px solid #f1f3f8; vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: #fbfcfe; }
.table-wrap { overflow-x: auto; }
.cell-main { font-weight: 600; }
.cell-sub { font-size: .8rem; color: var(--muted); }

/* ---------------------------------------------------------------- pills */

.pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 9px; border-radius: 999px; font-size: .75rem; font-weight: 650;
  background: #eef1f6; color: #475569; white-space: nowrap;
}
.pill.ok { background: var(--ok-soft); color: #0b7a45; }
.pill.warn { background: var(--warn-soft); color: var(--warn); }
.pill.bad { background: var(--danger-soft); color: #b91c1c; }
.pill.brand { background: var(--brand-soft); color: var(--brand-ink); }
.pill.dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ------------------------------------------------------------ scheduler */

.sched { display: grid; gap: 10px; }
.room-row { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.room-head {
  padding: 10px 14px; background: var(--surface-2); border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap;
}
.slots { display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); gap: 8px; padding: 12px; }
.slot {
  border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; background: #fff;
  text-align: left; display: flex; flex-direction: column; gap: 3px; min-height: 62px;
}
.slot .t { font-weight: 620; font-size: .84rem; }
.slot .s { font-size: .74rem; color: var(--muted); }
button.slot.free { border-color: #c9e7d5; background: #f4fbf7; }
button.slot.free:hover { border-color: var(--ok); background: #e7f6ee; }
button.slot.free .s { color: #0b7a45; font-weight: 600; }
.slot.booked { background: #fbfbfd; border-style: dashed; color: var(--muted); cursor: default; }
.slot.mine { background: var(--brand-soft); border-color: #a9e6e9; }
.slot.mine .t { color: var(--brand-ink); }
.slot.past { background: #f7f8fa; color: var(--faint); border-style: dotted; cursor: default; }

/* ------------------------------------------------------- announcements */

.ann {
  border: 1px solid var(--line);
  border-left: 3px solid var(--line);
  border-radius: 11px;
  padding: 13px 15px;
  background: var(--surface);
}
.ann + .ann { margin-top: 10px; }
.ann.pinned { border-left-color: var(--accent); background: #f5fdfd; }
.ann.faded { opacity: .62; }
.ann h3 { font-size: .95rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ann .meta { font-size: .75rem; color: var(--muted); margin-top: 3px; }
.ann .body { margin-top: 8px; font-size: .88rem; color: #3c4447; white-space: pre-wrap; word-break: break-word; }
.ann .acts { margin-top: 11px; display: flex; gap: 8px; flex-wrap: wrap; }

.nav button .badge {
  margin-left: auto;
  background: var(--accent); color: #06282a;
  border-radius: 999px; padding: 0 7px;
  font-size: .7rem; font-weight: 700; line-height: 1.5;
}

/* ------------------------------------------------------- choice buttons */

.choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 9px; }
.choice {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 13px; cursor: pointer; margin: 0;
  font-weight: 400; font-size: .9rem;
  transition: border-color .12s, background .12s;
}
.choice:hover { border-color: #c6ced0; background: var(--surface-2); }
.choice input { width: auto; margin: 0; flex: none; accent-color: var(--brand); }
.choice b { display: block; font-weight: 620; }
.choice small { color: var(--muted); font-size: .78rem; }
.choice:has(input:checked) { border-color: var(--brand); background: var(--brand-soft); }

/* A booking longer than one grid cell continues into the next. */
.slot.cont { justify-content: center; opacity: .75; border-top-style: dashed; }
.slot.cont .s { font-size: .72rem; }

/* --------------------------------------------------------------- modal */

.modal-back {
  position: fixed; inset: 0; background: rgba(22, 25, 27, .5);
  display: flex; align-items: flex-start; justify-content: center; padding: 6vh 16px; z-index: 60;
  overflow-y: auto;
}
.modal {
  background: var(--surface); border-radius: 14px; width: min(560px, 100%);
  box-shadow: 0 24px 60px -12px rgba(22, 25, 27, .38); overflow: hidden;
}
.modal-head { padding: 16px 20px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.modal-body { padding: 20px; }
.modal-foot { padding: 14px 20px; border-top: 1px solid var(--line); display: flex; justify-content: flex-end; gap: 10px; background: var(--surface-2); }

/* --------------------------------------------------------------- toast */

#toasts { position: fixed; right: 18px; bottom: 18px; display: flex; flex-direction: column; gap: 8px; z-index: 90; }
.toast {
  background: var(--dark); color: #fff; padding: 11px 15px; border-radius: 10px; font-size: .88rem;
  box-shadow: 0 12px 30px -8px rgba(22,25,27,.5); max-width: 360px;
  animation: rise .18s ease-out;
}
.toast.err { background: #b91c1c; }
.toast.ok { background: #0b7a45; }
@keyframes rise { from { opacity: 0; transform: translateY(6px); } }

.empty { padding: 34px 18px; text-align: center; color: var(--muted); }
.empty .big { font-size: 1.6rem; margin-bottom: 6px; }

.banner { padding: 11px 15px; border-radius: 10px; font-size: .87rem; display: flex; gap: 9px; align-items: center; }
.banner.warn { background: var(--warn-soft); color: #92400e; }
.banner.bad { background: var(--danger-soft); color: #991b1b; }
.banner.info { background: var(--brand-soft); color: var(--brand-ink); }

/* ---------------------------------------------------------------- login */

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  position: relative;
  isolation: isolate;
  background: var(--dark);
}
.login-page::before {
  content: "";
  position: absolute; inset: -40px;
  background: url("/assets/bg.webp") center/cover no-repeat;
  filter: blur(4px) saturate(1.08) brightness(1.25);
  transform: scale(1.06);
  z-index: -2;
}
.login-page::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1000px 620px at 50% 34%, rgba(4, 208, 209, .18), transparent 70%),
    linear-gradient(180deg, rgba(12, 14, 15, .6) 0%, rgba(12, 14, 15, .72) 52%, rgba(12, 14, 15, .86) 100%);
  z-index: -1;
}

.login-shell { width: min(420px, 100%); }

.login-brand { text-align: center; margin-bottom: 22px; }
.login-brand img {
  width: 74px; height: 74px; border-radius: 18px; display: block; margin: 0 auto 14px;
  box-shadow: 0 12px 34px -10px rgba(0, 0, 0, .7);
}
.login-brand h1 { color: #fff; font-size: 1.55rem; letter-spacing: -.015em; }
.login-brand p { color: #b9c2c4; font-size: .9rem; margin-top: 5px; }
.login-brand .accent { color: var(--accent); }

.login-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px 26px 24px;
  box-shadow: 0 26px 70px -18px rgba(0, 0, 0, .65);
}
.login-card h2 { font-size: 1.12rem; }
.login-card .sub { color: var(--muted); font-size: .87rem; margin: 4px 0 20px; }

.login-locations {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.login-locations span {
  font-size: .76rem; color: #cfd6d7; font-weight: 550;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .13);
  padding: 5px 11px; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.login-foot { text-align: center; color: #97a2a4; font-size: .8rem; margin-top: 18px; }

/* ----------------------------------------------------------------- hero */

.hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 26px 28px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--dark) url("/assets/img1.webp") center 62%/cover no-repeat;
  box-shadow: var(--shadow);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(12, 14, 15, .9) 0%, rgba(12, 14, 15, .74) 46%, rgba(12, 14, 15, .34) 100%);
}
.hero > * { position: relative; z-index: 1; }
.hero h1 { color: #fff; font-size: 1.55rem; }
.hero p { color: #cdd5d6; font-size: .88rem; margin-top: 4px; }
.hero .row { margin-top: 16px; }
.hero .chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 5px 12px; border-radius: 999px; font-size: .78rem; font-weight: 600;
}
.hero .chip b { color: var(--accent); }
.hero .btn-primary { background: var(--accent); border-color: var(--accent); color: #06282a; font-weight: 650; }
.hero .btn-primary:hover { background: #17dcdd; border-color: #17dcdd; }

@media (max-width: 900px) {
  .topbar { display: flex; }

  /* minmax(0,…) so a wide child scrolls inside itself instead of stretching
     the page — otherwise the whole layout gains a horizontal scrollbar. */
  .shell { grid-template-columns: minmax(0, 1fr); }
  .main { min-width: 0; }

  /* The sidebar becomes a drawer that slides in over the page. */
  .sidebar {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 272px; max-width: 84vw;
    height: 100dvh; overflow-y: auto;
    z-index: 70;
    transform: translateX(-100%);
    transition: transform .22s ease;
    padding-bottom: max(22px, env(safe-area-inset-bottom));
  }
  body.nav-open .sidebar { transform: none; }
  .nav { flex-direction: column; }
  .nav button { padding: 12px; font-size: .95rem; }

  .main { padding: 16px 14px 48px; }
  .page-head { align-items: flex-start; flex-direction: column; gap: 10px; }
  .page-head > button, .page-head .row { width: 100%; }
  .page-head .row > button { flex: 1; }

  .hero { padding: 20px 18px; }
  .hero h1 { font-size: 1.3rem; }
  .hero .row { width: 100%; }
  .hero .row > button { width: 100%; margin-top: 4px; }

  /* Thumb-sized controls and no iOS zoom-on-focus. */
  input, select, textarea { font-size: 16px; padding: 11px 12px; }
  button, .btn { min-height: 40px; }
  .btn-sm { min-height: 34px; }

  .card-head { padding: 13px 15px; }
  .card-body { padding: 15px; }
  .card-head .row.wrap { width: 100%; }
  .card-head .row.wrap > * { flex: 1 1 auto; min-width: 0; }
  .card-head input, .card-head select { width: 100% !important; }

  /* Day pickers scroll sideways instead of wrapping into a block. */
  .row.wrap.day-strip, .day-strip {
    display: flex; gap: 7px; overflow-x: auto; flex-wrap: nowrap;
    padding-bottom: 4px; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* As a flex item it would otherwise refuse to shrink below its content. */
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }
  .day-strip::-webkit-scrollbar { display: none; }
  /* Beats `.card-head .row.wrap > *`, which would otherwise squeeze these. */
  .card-head .row.wrap.day-strip > button,
  .day-strip > button {
    flex: 0 0 auto;
    min-width: max-content;
  }

  .slots { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 10px; gap: 7px; }
  .slot { min-height: 66px; padding: 9px 10px; }

  .modal-back { padding: 0; align-items: flex-end; }
  .modal {
    width: 100%; max-height: 92dvh; display: flex; flex-direction: column;
    border-radius: 16px 16px 0 0;
  }
  .modal-body { overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .modal-foot { padding-bottom: max(14px, env(safe-area-inset-bottom)); }
  .modal-foot button { flex: 1; }

  #toasts { left: 14px; right: 14px; bottom: 14px; }
  .toast { max-width: none; }

  .login-page { padding: 30px 16px; }
}

@media (max-width: 620px) {
  /* Stat tiles read better two-up than as a long column. */
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .stat { padding: 13px 14px; }
  .stat .v { font-size: 1.35rem; }
  .stat .k { font-size: .68rem; }
  .grid.cols-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  /* Tables turn into cards - one row per card, each cell labelled. */
  .table-wrap { overflow-x: visible; }
  table, thead, tbody, tr, td { display: block; width: 100%; }
  thead { display: none; }

  tbody tr {
    border: 1px solid var(--line);
    border-radius: 11px;
    margin: 11px 0;
    background: var(--surface);
    overflow: hidden;
  }
  tbody tr:hover { background: var(--surface); }
  tbody tr:first-child { margin-top: 2px; }

  td {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 9px 13px;
    border-bottom: 1px solid #f2f4f5;
    text-align: left;
    white-space: normal;
  }
  td:last-child { border-bottom: none; }
  td[data-label]::before {
    content: attr(data-label);
    flex: none;
    font-size: .7rem; text-transform: uppercase; letter-spacing: .05em;
    color: var(--muted); font-weight: 650;
  }
  td[data-label] { justify-content: space-between; }
  td[data-label] > * { text-align: right; }
  td.right { text-align: right; }
  td.actions { justify-content: flex-end; gap: 8px; background: var(--surface-2); }
  td.title { display: block; background: var(--surface-2); font-weight: 600; }
  td.title > * { text-align: left; }

  /* Rows arrive collapsed: the title cell is the summary, everything else
     appears on tap. :has() keeps this off any table with no title cell. */
  tbody tr:has(td.title):has(td[data-label]) td.title {
    position: relative;
    padding-right: 36px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  tbody tr:has(td.title):has(td[data-label]) td.title::after {
    content: "";
    position: absolute; right: 15px; top: 50%;
    width: 8px; height: 8px;
    border-right: 2px solid var(--faint);
    border-bottom: 2px solid var(--faint);
    transform: translateY(-70%) rotate(45deg);
    transition: transform .18s ease;
  }
  tbody tr.open td.title::after { transform: translateY(-30%) rotate(225deg); }
  tbody tr.open td.title { border-bottom: 1px solid var(--line); }

  tbody tr:has(td.title):not(.open) td[data-label],
  tbody tr:has(td.title):not(.open) td.actions { display: none; }
  tbody tr:has(td.title):not(.open) td.title .cell-sub { display: none; }
  tbody tr:has(td.title):not(.open) td.title { border-bottom: none; }

  /* A card wrapping a table needs no double padding. */
  .card > .table-wrap { padding: 0 12px 8px; }
}

@media (max-width: 420px) {
  .slots { grid-template-columns: 1fr; }
  h1 { font-size: 1.3rem; }
  .main { padding: 14px 11px 44px; }
}
