:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  --ink: #161922;
  --muted: #6f7482;
  --line: #e5e7ec;
  --surface: #ffffff;
  --canvas: #f5f6f8;
  --nav: #15151c;
  --violet: #7657f7;
  --violet-dark: #5a3ee4;
  --green: #12a879;
  --blue: #4384f3;
  --orange: #f28d3c;
  --danger: #dc4f62;
  --shadow: 0 24px 70px rgba(18, 16, 35, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--canvas);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hidden {
  display: none !important;
}

.auth-screen {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(118, 87, 247, 0.2), transparent 30rem),
    linear-gradient(135deg, #0d0d12 0%, #171521 48%, #0d1018 100%);
  color: #fff;
}

.auth-screen::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 86%);
}

.auth-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.62;
  pointer-events: none;
}

.auth-glow-one {
  top: -10rem;
  right: -8rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(118, 87, 247, 0.28);
  box-shadow: inset 0 0 7rem rgba(118, 87, 247, 0.1);
}

.auth-glow-two {
  bottom: -19rem;
  left: 26%;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(18, 168, 121, 0.14);
}

.auth-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(25rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
  width: min(1120px, calc(100% - 3rem));
  min-height: 100vh;
  margin: 0 auto;
  padding: 4rem 0;
}

.auth-context {
  max-width: 38rem;
}

.brand,
.sidebar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand {
  margin-bottom: 5rem;
  font-size: 1.25rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, #8c73ff, #6045e4);
  box-shadow: 0 12px 30px rgba(118, 87, 247, 0.3);
  color: #fff;
}

.brand-mark svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke-width: 2.5;
}

.access-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  padding: 0.52rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #c7c2de;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot,
.online-indicator {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #31d6a0;
  box-shadow: 0 0 0 0.22rem rgba(49, 214, 160, 0.13);
}

.auth-context h1 {
  max-width: 34rem;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.auth-context > p {
  max-width: 34rem;
  margin: 1.7rem 0 0;
  color: #a9a6b8;
  font-size: 1.05rem;
  line-height: 1.75;
}

.security-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin: 2.2rem 0 0;
  padding: 0;
  color: #d6d2e2;
  font-size: 0.88rem;
  list-style: none;
}

.security-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.security-list svg {
  width: 1.1rem;
  color: #8c73ff;
}

.login-card {
  width: 100%;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.55rem;
  background: rgba(250, 250, 252, 0.97);
  box-shadow: var(--shadow);
  color: var(--ink);
  backdrop-filter: blur(22px);
}

.eyebrow {
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.login-card h2 {
  margin: 0.65rem 0 0;
  font-size: 2rem;
  letter-spacing: -0.045em;
}

.login-card header p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.login-card form {
  display: grid;
  gap: 1.15rem;
  margin-top: 2.1rem;
}

.field {
  display: grid;
  gap: 0.5rem;
  color: #3d414c;
  font-size: 0.83rem;
  font-weight: 700;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap > svg {
  position: absolute;
  left: 1rem;
  z-index: 1;
  width: 1.12rem;
  color: #9297a4;
}

.input-wrap input {
  width: 100%;
  height: 3.35rem;
  padding: 0 3.2rem 0 2.85rem;
  border: 1px solid #dfe1e7;
  border-radius: 0.85rem;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.input-wrap input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 0.22rem rgba(118, 87, 247, 0.12);
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 0;
  border-radius: 0.65rem;
  background: transparent;
  color: #8a8f9b;
}

.password-toggle:hover,
.password-toggle.active {
  background: #f0eefb;
  color: var(--violet);
}

.form-error {
  min-height: 1.15rem;
  margin: -0.2rem 0;
  color: var(--danger);
  font-size: 0.82rem;
  font-weight: 650;
}

.primary-button,
.secondary-button,
.icon-button,
.load-error button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 0;
  transition: transform 150ms ease, background 150ms ease, opacity 150ms ease;
}

.primary-button {
  min-height: 3.35rem;
  border-radius: 0.88rem;
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  box-shadow: 0 12px 25px rgba(91, 62, 228, 0.22);
  color: #fff;
  font-weight: 750;
}

.primary-button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.primary-button svg {
  width: 1rem;
}

.login-footer {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.7rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: #838895;
  font-size: 0.76rem;
  line-height: 1.5;
}

.login-footer svg {
  flex: 0 0 auto;
  width: 1rem;
  color: var(--green);
}

.app-shell {
  display: grid;
  grid-template-columns: 16.5rem minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 1.5rem 1rem;
  overflow: hidden;
  background: var(--nav);
  color: #fff;
}

.sidebar::after {
  position: absolute;
  right: -6rem;
  bottom: 12%;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  background: rgba(118, 87, 247, 0.12);
  filter: blur(1px);
  content: "";
  pointer-events: none;
}

.sidebar-brand {
  position: relative;
  z-index: 1;
  gap: 0.75rem;
  padding: 0 0.55rem 1.75rem;
}

.sidebar-brand .brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.72rem;
}

.sidebar-brand > span:last-child {
  display: grid;
  line-height: 1.05;
}

.sidebar-brand strong {
  font-size: 1rem;
}

.sidebar-brand small {
  margin-top: 0.28rem;
  color: #8f8d99;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sidebar-nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.3rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.78rem;
  min-height: 2.9rem;
  padding: 0 0.85rem;
  border-radius: 0.75rem;
  color: #94939e;
  font-size: 0.88rem;
  font-weight: 620;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
}

.nav-link svg {
  width: 1.12rem;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.055);
  color: #dedde4;
}

.nav-active,
.nav-active:hover {
  background: linear-gradient(105deg, rgba(118, 87, 247, 0.24), rgba(118, 87, 247, 0.08));
  color: #fff;
}

.nav-active svg {
  color: #9d88ff;
}

.sidebar-profile {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.68rem;
  margin-top: auto;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.035);
}

.avatar,
.seller-avatar {
  display: grid;
  place-items: center;
  border-radius: 0.72rem;
  font-weight: 780;
}

.avatar {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(118, 87, 247, 0.2);
  color: #b6a9ff;
}

.profile-copy {
  display: grid;
  min-width: 0;
}

.profile-copy strong {
  overflow: hidden;
  font-size: 0.78rem;
  text-overflow: ellipsis;
}

.profile-copy small {
  margin-top: 0.18rem;
  color: #777680;
  font-size: 0.66rem;
}

.online-indicator {
  width: 0.42rem;
  height: 0.42rem;
}

.workspace {
  min-width: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.35rem;
  padding: 1rem clamp(1.5rem, 4vw, 3.2rem);
  border-bottom: 1px solid rgba(229, 231, 236, 0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.topbar h1 {
  margin: 0.2rem 0 0;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.icon-button,
.secondary-button {
  min-height: 2.55rem;
  border: 1px solid var(--line);
  border-radius: 0.72rem;
  background: #fff;
  color: #555a67;
}

.icon-button {
  width: 2.55rem;
  padding: 0;
}

.secondary-button {
  padding: 0 0.95rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.icon-button:hover,
.secondary-button:hover {
  border-color: #d1d3da;
  background: #f8f8fa;
  color: var(--ink);
}

.secondary-button svg,
.icon-button svg {
  width: 1rem;
}

.content {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 3.2rem);
  outline: none;
}

.page-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.65rem;
}

.page-intro h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  letter-spacing: -0.05em;
}

.page-intro p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-meta {
  flex: 0 0 auto;
  padding: 0.48rem 0.68rem;
  border: 1px solid var(--line);
  border-radius: 0.58rem;
  background: rgba(255, 255, 255, 0.72);
  color: #777c88;
  font-size: 0.72rem;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  min-height: 9.1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  box-shadow: 0 8px 26px rgba(27, 28, 36, 0.035);
}

.stat-icon,
.health-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.78rem;
}

.stat-icon {
  width: 2.55rem;
  height: 2.55rem;
}

.stat-icon svg {
  width: 1.15rem;
}

.stat-card > div:last-child {
  display: grid;
  min-width: 0;
}

.stat-card span {
  color: #7b808c;
  font-size: 0.72rem;
  font-weight: 700;
}

.stat-card strong {
  margin-top: 0.48rem;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.stat-card small {
  margin-top: 0.38rem;
  overflow: hidden;
  color: #999da7;
  font-size: 0.68rem;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.stat-violet .stat-icon {
  background: #f0edff;
  color: var(--violet);
}

.stat-green .stat-icon {
  background: #e7f8f2;
  color: var(--green);
}

.stat-blue .stat-icon {
  background: #eaf2ff;
  color: var(--blue);
}

.stat-orange .stat-icon {
  background: #fff1e5;
  color: var(--orange);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(17rem, 0.72fr);
  gap: 1rem;
  margin-top: 1rem;
}

.panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  box-shadow: 0 8px 26px rgba(27, 28, 36, 0.03);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid var(--line);
}

.panel-header h3 {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.panel-header p {
  margin: 0.3rem 0 0;
  color: #8a8e99;
  font-size: 0.72rem;
}

.panel-header a {
  color: var(--violet);
  font-size: 0.75rem;
  font-weight: 750;
  text-decoration: none;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
  white-space: nowrap;
}

th {
  padding: 0.8rem 1.2rem;
  background: #fafafc;
  color: #8b909c;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

td {
  padding: 0.98rem 1.2rem;
  border-top: 1px solid #f0f1f4;
  color: #555a66;
}

tbody tr:hover {
  background: #fbfbfd;
}

.cell-primary,
.seller-cell strong {
  display: block;
  color: #2c303a;
  font-size: 0.78rem;
  font-weight: 720;
}

td small {
  display: block;
  margin-top: 0.28rem;
  color: #9296a0;
  font-size: 0.66rem;
}

code {
  color: #656a76;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
}

.seller-cell {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.seller-avatar {
  width: 2.15rem;
  height: 2.15rem;
  background: #f0edff;
  color: var(--violet);
}

.badge,
.role-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 750;
}

.badge {
  padding: 0.35rem 0.55rem;
}

.badge > span {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: currentColor;
}

.badge-success {
  background: #e9f8f2;
  color: #11845f;
}

.badge-warning {
  background: #fff5df;
  color: #b47712;
}

.badge-danger {
  background: #fdecef;
  color: #bd3f52;
}

.badge-neutral {
  background: #f0f1f4;
  color: #6d727e;
}

.role-pill {
  padding: 0.35rem 0.58rem;
  background: #eef1f7;
  color: #5a6270;
  text-transform: capitalize;
}

.role-admin {
  background: #f0edff;
  color: var(--violet-dark);
}

.health-panel {
  min-height: 100%;
}

.health-list {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem;
}

.health-list > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.78rem;
  border-radius: 0.78rem;
}

.health-list > div:hover {
  background: #fafafc;
}

.health-icon {
  width: 2.35rem;
  height: 2.35rem;
}

.health-icon svg {
  width: 1rem;
}

.health-ok {
  background: #e9f8f2;
  color: var(--green);
}

.health-warn {
  background: #fff1e5;
  color: var(--orange);
}

.health-list span:last-child {
  display: grid;
}

.health-list strong {
  font-size: 0.86rem;
}

.health-list small {
  margin-top: 0.18rem;
  color: #898e99;
  font-size: 0.68rem;
}

.stacked-panels {
  display: grid;
  gap: 1rem;
}

.empty-state,
.load-error {
  display: grid;
  justify-items: center;
  padding: 4rem 1.5rem;
  text-align: center;
}

.empty-state > span,
.load-error > span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 0.9rem;
  background: #f0edff;
  color: var(--violet);
}

.empty-state h3,
.load-error h2 {
  margin: 1rem 0 0;
  font-size: 1rem;
}

.empty-state p,
.load-error p {
  max-width: 28rem;
  margin: 0.45rem 0 0;
  color: #858a95;
  font-size: 0.78rem;
  line-height: 1.55;
}

.load-error {
  min-height: 26rem;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
}

.load-error button {
  min-height: 2.55rem;
  margin-top: 1rem;
  padding: 0 1rem;
  border-radius: 0.72rem;
  background: var(--violet);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.skeleton-title,
.skeleton-row {
  border-radius: 0.5rem;
  background: linear-gradient(90deg, #f0f1f4 25%, #f8f8fa 50%, #f0f1f4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

.skeleton-title {
  width: 13rem;
  height: 1.2rem;
  margin: 1.3rem;
}

.skeleton-row {
  height: 3.8rem;
  margin: 0 1.3rem;
  border-top: 1px solid #f2f2f4;
  border-radius: 0;
}

.toast {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 20;
  max-width: min(24rem, calc(100vw - 3rem));
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.8rem;
  background: #20212a;
  box-shadow: 0 18px 42px rgba(20, 20, 27, 0.22);
  color: #fff;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.7rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast-danger {
  background: #9f3041;
}

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

@media (max-width: 1180px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .auth-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    width: min(32rem, calc(100% - 2rem));
  }

  .auth-context {
    display: none;
  }

  .app-shell {
    grid-template-columns: 5rem minmax(0, 1fr);
  }

  .sidebar {
    align-items: center;
    padding-inline: 0.7rem;
  }

  .sidebar-brand {
    padding-inline: 0;
  }

  .sidebar-brand > span:last-child,
  .nav-link span,
  .sidebar-profile .profile-copy,
  .sidebar-profile .online-indicator {
    display: none;
  }

  .nav-link {
    width: 3rem;
    justify-content: center;
    padding: 0;
  }

  .sidebar-profile {
    display: block;
    padding: 0.4rem;
  }
}

@media (max-width: 640px) {
  .app-shell {
    display: block;
    padding-bottom: 4.5rem;
  }

  .sidebar {
    position: fixed;
    inset: auto 0 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: auto;
    padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .sidebar-brand,
  .sidebar-profile {
    display: none;
  }

  .sidebar-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.2rem;
  }

  .nav-link {
    width: auto;
    min-height: 3.1rem;
    flex-direction: column;
    gap: 0.22rem;
    padding: 0.3rem;
    font-size: 0.58rem;
  }

  .nav-link span {
    display: block;
  }

  .nav-link svg {
    width: 1rem;
  }

  .topbar {
    min-height: 4.6rem;
    padding: 0.8rem 1rem;
  }

  .topbar .eyebrow {
    display: none;
  }

  .topbar h1 {
    margin: 0;
    font-size: 1.08rem;
  }

  .secondary-button {
    width: 2.55rem;
    padding: 0;
    font-size: 0;
  }

  .content {
    padding: 1.25rem 1rem;
  }

  .page-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: auto;
  }

  .login-card {
    padding: 1.5rem;
    border-radius: 1.2rem;
  }

  .login-card h2 {
    font-size: 1.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
