:root {
  --bg: #f6f6f5;
  --surface: #ffffff;
  --surface-soft: #f8fafb;
  --text: #182230;
  --muted: #667085;
  --line: #dce1e7;
  --line-strong: #c8d0da;
  --accent: #3e5365;
  --accent-hover: #293d4d;
  --accent-soft: #e8f3ef;
  --blue: #245ea8;
  --blue-soft: #eaf1fb;
  --warning: #9a6700;
  --warning-soft: #fff5d6;
  --danger: #b42318;
  --danger-soft: #fff0ee;
  --shadow: 0 8px 22px rgba(24, 34, 48, .08);
}

* { box-sizing: border-box; }
html { min-width: 320px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font: 14px/1.45 "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(36, 94, 168, .22);
  outline-offset: 1px;
}
.hidden { display: none !important; }

.loginScreen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
}
.loginPanel {
  width: min(390px, 100%);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.productMark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 28px 0 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 800;
}
.loginPanel h1 { margin: 0; font-size: 25px; }
.loginPanel > p { margin: 5px 0 24px; color: var(--muted); }
.loginPanel label, .formGrid label, .textGrid label, .wideField, .filtersBar label, .fileField {
  display: grid;
  gap: 6px;
}
.loginPanel label { margin-bottom: 14px; }
label > span, .filtersBar label > span, .fileField > span {
  color: #475467;
  font-size: 12px;
  font-weight: 700;
}
input, select, textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--text);
  background: #fff;
  padding: 9px 11px;
}
textarea { resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: #98a2b3; }
.backLink { color: var(--blue); text-decoration: none; font-weight: 700; }

.topbar {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.brandBlock, .userBlock {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brandBlock > div, .userBlock > div { display: grid; min-width: 0; }
.brandBlock b { font-size: 16px; }
.brandBlock span, .userBlock span { color: var(--muted); font-size: 12px; }
.userBlock { text-align: right; }
.iconLink, .iconBtn {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #344054;
  background: #fff;
  text-decoration: none;
  cursor: pointer;
  font-size: 20px;
}
.iconLink:hover, .iconBtn:hover { background: var(--surface-soft); }

.mainNav {
  min-height: 48px;
  display: flex;
  align-items: end;
  gap: 4px;
  overflow-x: auto;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  scrollbar-width: none;
}
.mainNav::-webkit-scrollbar { display: none; }
.navTab {
  min-height: 47px;
  padding: 0 14px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 700;
}
.navTab:hover { color: var(--text); }
.navTab.active { color: var(--accent); border-bottom-color: var(--accent); }

.content {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}
.pageHeading {
  min-height: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.pageHeading h1 { margin: 0; font-size: 23px; }
.pageHeading p { margin: 3px 0 0; color: var(--muted); }
.sectionTitle { margin: 28px 0 12px; font-size: 17px; }

.primaryBtn, .secondaryBtn, .dangerBtn, .textBtn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
}
.primaryBtn { border: 1px solid var(--accent); color: #fff; background: var(--accent); }
.primaryBtn:hover { background: var(--accent-hover); }
.secondaryBtn { border: 1px solid var(--line-strong); color: #344054; background: #fff; }
.secondaryBtn:hover { background: var(--surface-soft); }
.dangerBtn { border: 1px solid #f1b4ae; color: var(--danger); background: var(--danger-soft); }
.textBtn { min-height: 32px; padding: 6px 9px; border: 1px solid var(--line); color: var(--blue); background: #fff; }
button:disabled { opacity: .55; cursor: not-allowed; }
.fullWidth { width: 100%; }

.summaryStrip {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}
.summaryStrip > div {
  min-width: 0;
  display: grid;
  gap: 2px;
  padding: 13px 15px;
  border-right: 1px solid var(--line);
}
.summaryStrip > div:last-child { border-right: 0; }
.summaryStrip span { color: var(--muted); font-size: 12px; }
.summaryStrip b { font-size: 21px; }

.filtersBar {
  display: grid;
  grid-template-columns: 140px 140px 145px minmax(180px, 1fr) minmax(180px, 1fr) minmax(190px, 1.2fr) auto 38px;
  gap: 10px;
  align-items: end;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.filtersBar input, .filtersBar select { min-height: 38px; }
.tableToolbar {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}
.tableToolbar > div { display: flex; gap: 6px; }

.tableFrame {
  width: 100%;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.dataTable {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}
.dataTable th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line-strong);
  color: #475467;
  background: var(--surface-soft);
  text-align: left;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.dataTable td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.dataTable tr:last-child td { border-bottom: 0; }
.dataTable tbody tr:hover { background: #fbfcfd; }
.rowTitle { display: grid; gap: 2px; }
.rowTitle b { color: var(--blue); }
.rowTitle span, .mutedText { color: var(--muted); font-size: 12px; }
.cellText { max-width: 280px; white-space: pre-wrap; }
.rowActions { display: flex; justify-content: flex-end; gap: 6px; }
.smallBtn {
  min-height: 30px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #344054;
  background: #fff;
  cursor: pointer;
}
.smallBtn:hover { background: var(--surface-soft); }
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 1px 4px 1px 0;
  padding: 3px 7px;
  border-radius: 3px;
  color: #344054;
  background: #eef1f4;
  font-size: 11px;
  font-weight: 700;
}
.badge.success { color: #12604b; background: var(--accent-soft); }
.badge.warning { color: var(--warning); background: var(--warning-soft); }
.badge.danger { color: var(--danger); background: var(--danger-soft); }
.badge.blue { color: var(--blue); background: var(--blue-soft); }
.emptyTable { padding: 42px 20px; color: var(--muted); text-align: center; }

.modalBackdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(24, 34, 48, .48);
}
.modalPanel {
  width: min(1050px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(24, 34, 48, .28);
}
.modalHeader {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.modalHeader h2 { margin: 0; font-size: 20px; }
.modalHeader p { margin: 3px 0 0; color: var(--muted); }
#chatForm { padding: 20px; }
.formGrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.textGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.flagFieldset {
  margin: 18px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.flagFieldset legend { padding: 0 7px; color: #475467; font-weight: 800; }
.flagsGrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px 16px; }
.flagCheck {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #344054;
}
.flagCheck input { width: 17px; min-height: 17px; margin: 0; accent-color: var(--accent); }
.modalFooter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.footerSpacer { flex: 1; }
.formMessage { min-height: 20px; margin: 8px 0; color: var(--muted); }
.formMessage.error { color: var(--danger); }
.formMessage.success { color: var(--accent); }

.directoryGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.directoryBlock {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}
.directoryHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}
.directoryHeader h2 { margin: 0; font-size: 15px; }
.directoryForm {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, auto);
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}
.directoryList { max-height: 320px; overflow: auto; }
.directoryRow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 43px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
}
.directoryRow:last-child { border-bottom: 0; }
.directoryRow.inactive { color: var(--muted); text-decoration: line-through; }

.toolBand, .inlineForm {
  display: flex;
  align-items: end;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.fileField { min-width: min(420px, 100%); }
.inlineForm input, .inlineForm select { width: auto; min-width: 180px; }
.resultPanel {
  padding: 16px;
  border: 1px solid #b6d5ca;
  border-radius: 8px;
  background: #f2f9f6;
}
.resultPanel.error { border-color: #f1b4ae; background: var(--danger-soft); }
.previewTable { margin-top: 12px; overflow: auto; }
.previewTable table { min-width: 700px; }

.historyList {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}
.historyItem {
  display: grid;
  grid-template-columns: 150px 150px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
}
.historyItem:last-child { border-bottom: 0; }
.historyItem span { color: var(--muted); }
.historyItem b { font-size: 13px; }
.tokenForm { max-width: 620px; }
.tokenBox {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  padding: 15px;
  border: 1px solid #b6d5ca;
  border-radius: 8px;
  background: #f2f9f6;
}
.tokenBox code {
  overflow-wrap: anywhere;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  user-select: all;
}

@media (max-width: 1180px) {
  .filtersBar { grid-template-columns: repeat(4, minmax(140px, 1fr)); }
  .searchFilter { grid-column: span 2; }
  .summaryStrip { grid-template-columns: repeat(3, 1fr); }
  .summaryStrip > div:nth-child(3) { border-right: 0; }
  .summaryStrip > div:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .formGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .topbar { height: auto; min-height: 64px; padding: 10px 14px; }
  .brandBlock span, .userBlock span { display: none; }
  .mainNav { padding: 0 12px; }
  .content { width: min(100% - 20px, 1500px); padding-top: 16px; }
  .pageHeading { align-items: stretch; flex-direction: column; }
  .pageHeading .primaryBtn { width: 100%; }
  .filtersBar { grid-template-columns: 1fr 1fr; }
  .searchFilter { grid-column: span 2; }
  .summaryStrip { grid-template-columns: repeat(2, 1fr); }
  .summaryStrip > div { border-bottom: 1px solid var(--line); }
  .summaryStrip > div:nth-child(2n) { border-right: 0; }
  .summaryStrip > div:nth-last-child(-n+2) { border-bottom: 0; }
  .formGrid, .textGrid, .directoryGrid { grid-template-columns: 1fr; }
  .flagsGrid { grid-template-columns: 1fr 1fr; }
  .historyItem { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 480px) {
  .loginPanel { padding: 23px; }
  .filtersBar { grid-template-columns: 1fr; }
  .searchFilter { grid-column: auto; }
  .flagsGrid { grid-template-columns: 1fr; }
  .directoryForm { grid-template-columns: 1fr; }
  .modalBackdrop { padding: 0; }
  .modalPanel { max-height: 100vh; min-height: 100vh; border-radius: 0; }
  .modalFooter { flex-wrap: wrap; }
  .footerSpacer { display: none; }
  .modalFooter button { flex: 1; }
}

/* Compact work table and a side-by-side reading/editing workspace. */
.content { width: calc(100% - 40px); max-width: 1800px; padding-top: 18px; }
.topbar { height: 56px; }
.pageHeading { min-height: 40px; margin-bottom: 12px; }
.pageHeading h1 { font-size: 20px; font-weight: 600; }
.summaryStrip { display: flex; flex-wrap: wrap; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.summaryStrip > div { display: flex; align-items: baseline; gap: 8px; border: 0; padding: 8px 20px 8px 0; }
.summaryStrip b { font-size: 15px; font-weight: 600; }
.filtersBar, .tableFrame, .directoryBlock, .toolBand, .inlineForm { border-radius: 3px; }
.filtersBar { grid-template-columns: 130px 130px 120px minmax(170px, 1fr) minmax(170px, 1fr) minmax(180px, 1.1fr) auto 36px; padding: 10px; }
.dataTable td { padding: 8px 12px; }
.dataTable tbody tr:nth-child(even) { background: #fafbfc; }
.dataTable tbody tr:hover { background: #edf3f8; }
.tableFrame { max-height: calc(100vh - 320px); min-height: 140px; }
.chatNumberBtn { border: 0; border-bottom: 1px dotted currentColor; background: none; color: var(--blue); padding: 0; cursor: pointer; font-weight: 600; text-align: left; }
.modalPanel { width: min(1500px, 100%); border-radius: 4px; }
.modalHeader { padding: 12px 18px; }
.modalHeader h2 { font-size: 18px; font-weight: 600; }
.modalHeader p { font-size: 12px; }
.chatWorkspace { display: grid; grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr); }
.dialoguePane { min-width: 0; border-right: 1px solid var(--line); padding: 16px; background: #fafbfc; }
.dialoguePane h2 { margin: 0 0 12px; font-size: 15px; font-weight: 600; }
.dialoguePane .dialogueContent { max-height: calc(100vh - 200px); overflow: auto; position: sticky; top: 86px; }
.dialogueContent { overflow-wrap: anywhere; }
.dialogueContent h3 { margin: 12px 0 8px; font-size: 13px; font-weight: 600; }
.dialogueContent pre { white-space: pre-wrap; overflow-wrap: anywhere; font: 13px/1.65 "Segoe UI", Arial, sans-serif; margin: 0 0 20px; }
#chatForm { min-width: 0; padding: 16px; }
.descriptionPreview { color: var(--muted); font-size: 12px; font-weight: 400; overflow-wrap: anywhere; }
.descriptionPreview:empty { display: none; }
.nativeSearchSelect { display: none !important; }
.searchSelect { min-width: 0; width: 100%; }
.searchSelect input { padding-right: 28px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23667085'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 10px center; }
.searchOptions { position:fixed; z-index:120; overflow:auto; background:white; border:1px solid #aab8c5; border-radius:4px; box-shadow:0 6px 20px #18223022; }
.searchOptions button { display:block; width:100%; text-align:left; white-space:normal; overflow-wrap:anywhere; padding:9px 12px; border:0; border-bottom:1px solid #edf0f3; background:white; color:#182230; cursor:pointer; font:inherit; }
.searchOptions button:hover,.searchOptions .keyboardActive { background:#eaf1f7; }
.searchOptions button[aria-selected="true"] { font-weight:600; }
.searchOptions p { padding:10px; color:#667085; }
.directDescriptionField { padding:10px; margin-bottom:14px; border:1px solid var(--line); background:#f7f9fb; }
.cellEdit { border:0; background:none; color:inherit; text-align:left; font:inherit; padding:3px; border-radius:3px; cursor:pointer; }
.cellEdit:hover,.cellEdit:focus-visible { background:#dfeaf4; outline:1px solid #9eb3c6; }
.classificationBlock { display:block; width:100%; min-height:64px; padding:6px 8px; }
.classificationBlock .subCell { max-width:none; margin-top:3px; }
.classificationCategory { display:block; font-size:12px; font-weight:600; color:#253849; }
.speaker-operator { color:#245c88; font-weight:600; }
.speaker-client { color:#8b492d; font-weight:600; }
.addChatIcon { display:grid; place-items:center; flex:0 0 34px; width:34px; height:34px; border:1px solid #bcc5cc; border-radius:3px; color:#283e4f; background:white; font:26px/1 Arial,sans-serif; cursor:pointer; }
.addChatIcon:hover { background:#e9eef1; border-color:#7f95a6; }
.subCell { display:block; font-size:12px; color:#596675; max-width:430px; }
.descriptionCell { color:#344054; }
.quickEditor { position:fixed; z-index:65; right:20px; top:125px; width:min(520px,calc(100vw - 24px)); max-height:calc(100dvh - 145px); overflow:auto; background:white; border:1px solid #aab8c5; border-radius:4px; box-shadow:0 8px 28px #18223026; }
.quickEditor header { display:flex; justify-content:space-between; align-items:center; padding:10px 14px; border-bottom:1px solid var(--line); }
.quickEditor form { padding:14px; }
.quickEditor label { display:grid; gap:5px; margin-bottom:10px; }
.quickEditor footer { display:flex; flex-wrap:wrap; gap:8px; }
#quickMessage { font-size:12px; color:var(--danger); }
@media(max-width:600px) { .quickEditor { top:65px; right:12px; max-height:calc(100dvh - 80px); } }
.formGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.textGrid { grid-template-columns: 1fr; gap: 10px; margin-top: 12px; }
.flagsGrid { grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.flagFieldset { padding: 10px; margin: 14px 0; border-radius: 3px; }
.flagCheck { align-items: flex-start; padding: 5px 0; min-height: 28px; }
.flagCheck input { flex-shrink: 0; margin-top: 1px; }
.flagCheck span { font-size: 13px; font-weight: 400; color: var(--text); }
.modalFooter { position: sticky; bottom: -1px; background: white; padding: 12px 0; flex-wrap: wrap; z-index: 3; }
.dialoguePreview { position: fixed; z-index: 40; right: 20px; top: 125px; width: min(540px, calc(100vw - 32px)); max-height: calc(100vh - 145px); display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line-strong); border-radius: 4px; box-shadow: 0 8px 30px #18223029; }
.dialoguePreview header, .dialoguePreview footer { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; flex-shrink: 0; }
.dialoguePreview header { border-bottom: 1px solid var(--line); }
.dialoguePreview footer { border-top: 1px solid var(--line); }
.dialoguePreview .dialogueContent { padding: 0 14px; overflow: auto; }
#pageMessage { margin-left: auto; font-size: 12px; }
.topbar, .mainNav { background:#fff; }
.mainNav { gap:8px; }
.navTab { font-weight:500; }
.pageHeading p { font-size:12px; }
.pageHeading { flex-direction:row; align-items:center; }
.filtersBar { background:#fafafa; border-color:#d9dddf; }
.filtersBar label > span { font-weight:500; font-size:12px; }
.filtersBar input, .filtersBar select { min-height:34px; padding:6px 8px; border-radius:3px; }
.textBtn, .secondaryBtn, .primaryBtn, .iconBtn { border-radius:3px; }
.dataTable th { background:#f0f2f3; font-size:12px; font-weight:600; }
.dataTable tbody tr:nth-child(even) { background:#fcfcfb; }
.dataTable tbody tr:hover { background:#f4f7f9; }
.dataTable td { border-bottom:1px solid #e3e6e8; }
.loginPanel { box-shadow:none; border-radius:4px; }
.productMark { border-radius:3px; }
input:disabled, select:disabled { color: #667085; background: #f4f5f6; }
@media (max-width: 1300px) { .filtersBar { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 900px) {
  .chatWorkspace { grid-template-columns: 1fr; }
  .dialoguePane { border-right: 0; border-bottom: 1px solid var(--line); }
  .dialoguePane .dialogueContent { max-height: 260px; position: static; }
  .tableFrame { max-height: 65vh; }
}
@media (max-width: 600px) {
  .content { width: calc(100% - 20px); }
  .filtersBar { grid-template-columns: 1fr 1fr; }
  .formGrid, .flagsGrid { grid-template-columns: 1fr; }
  .summaryStrip > div { border: 0 !important; }
  .tableToolbar { flex-wrap: wrap; padding: 8px 0; }
  .dialoguePreview { right: 10px; top: 70px; max-height: calc(100dvh - 90px); }
  .topbar { height: auto; }
}
