:root {
  --navy: #24416b;
  --blue: #00abed;
  --orange: #ea7400;
  --green: #009900;
  --light: #f5f7fa;
  --border: #dde3ec;
  --text: #1a1a2e;
  --muted: #6b7a99;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Arial, sans-serif;
  background: var(--light);
  color: var(--text);
  min-height: 100vh;
}

/* ── Auth ── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}

.auth-card {
  background: #fff;
  border-radius: 12px;
  padding: 48px 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.auth-card .logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-card .logo h1 {
  font-size: 28px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.auth-card .logo span {
  color: var(--blue);
}

.auth-card .logo p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

/* ── Forms ── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: Arial, sans-serif;
  transition: border-color 0.2s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.18s;
  text-decoration: none;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 15px;
}
.btn-primary:hover { background: #1a3055; }

.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #0099d4; }

.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: #cc6600; }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--navy);
}
.btn-outline:hover { background: var(--light); }

.btn-sm { padding: 7px 14px; font-size: 13px; }

.btn-danger { background: #e53e3e; color: #fff; }
.btn-danger:hover { background: #c53030; }

/* ── Layout ── */
.app-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.sidebar-logo {
  padding: 24px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-logo h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.sidebar-logo span { color: var(--blue); }

.sidebar-logo .subtitle {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.sidebar-nav {
  flex: 1;
  padding: 16px 0;
}

.nav-section {
  padding: 8px 20px 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.15s;
  text-decoration: none;
}
.nav-item:hover, .nav-item.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.nav-item .icon { font-size: 16px; width: 20px; text-align: center; }

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.user-info .name { font-weight: 600; color: #fff; }
.user-info .role { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: capitalize; }

/* ── Main content ── */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.top-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.top-bar h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.top-bar .actions { display: flex; gap: 12px; align-items: center; }

.page-body {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
}

/* ── Client Cards ── */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.client-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.18s;
}

.client-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(0,171,237,0.12);
  transform: translateY(-1px);
}

.client-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.client-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.status-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-active { background: #e6f4e6; color: var(--green); }
.status-at_risk { background: #fff3e0; color: var(--orange); }
.status-on_hold { background: #f5f5f5; color: var(--muted); }
.status-inactive { background: #feeee; color: #e53e3e; }

.client-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.client-card-footer {
  display: flex;
  justify-content: flex-end;
}

/* ── Tabs ── */
.tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  gap: 4px;
}

.tab {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.15s;
}

.tab:hover { color: var(--navy); }
.tab.active { color: var(--navy); border-bottom-color: var(--blue); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Tables ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.data-table th {
  background: var(--light);
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 13px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--light); }

/* ── Cards / Panels ── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── COMPASS content ── */
.compass-content {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  white-space: pre-wrap;
  font-family: Arial, sans-serif;
}

/* ── Agent Run ── */
.agent-output {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
  max-height: 600px;
  overflow-y: auto;
}

.workflow-select {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.workflow-option {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}

.workflow-option:hover { border-color: var(--blue); }
.workflow-option.selected { border-color: var(--navy); background: #f0f4ff; }
.workflow-option .icon { font-size: 28px; margin-bottom: 8px; }
.workflow-option .label { font-size: 14px; font-weight: 600; color: var(--navy); }
.workflow-option .desc { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── Alerts ── */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}
.alert-error { background: #fff5f5; border: 1px solid #feb2b2; color: #c53030; }
.alert-success { background: #f0fff4; border: 1px solid #9ae6b4; color: #276749; }

/* ── Loading ── */
.spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border: 2px solid rgba(0,0,0,0.1);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-state {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px;
  color: var(--muted);
  font-size: 15px;
}

/* ── Misc ── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.empty-state .icon { font-size: 40px; margin-bottom: 12px; }
.empty-state p { font-size: 15px; }

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  max-width: 300px;
}
.search-bar input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 100%;
  font-family: Arial, sans-serif;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 20px;
  text-decoration: none;
}
.back-link:hover { color: var(--navy); }

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  display: none;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.modal-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* ── Projects / Chat ── */
.projects-layout {
  display: flex;
  gap: 0;
  height: calc(100vh - 120px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.projects-sidebar {
  width: 280px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.projects-sidebar-header {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.project-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

.project-item {
  padding: 12px 16px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.15s;
}
.project-item:hover { background: var(--light); }
.project-item.active {
  background: #f0f4ff;
  border-left-color: var(--navy);
}
.project-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.project-item-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}

.type-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 10px;
  background: #e8f4fd;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.chat-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  background: #fff;
}

.chat-header-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
}

.messages-area {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message {
  display: flex;
  flex-direction: column;
  max-width: 75%;
}
.message.user { align-self: flex-end; align-items: flex-end; }
.message.assistant { align-self: flex-start; align-items: flex-start; }

.message-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.message.user .message-bubble {
  background: var(--navy);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.message.assistant .message-bubble {
  background: var(--light);
  color: var(--text);
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border);
}

.message-meta {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  padding: 0 4px;
}

.typing-indicator .message-bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
}
.typing-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--muted);
  animation: typingBounce 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.chat-input-area {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
  background: #fff;
}

.chat-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  resize: none;
  max-height: 120px;
  line-height: 1.5;
  transition: border-color 0.2s;
  overflow-y: auto;
}
.chat-input:focus { outline: none; border-color: var(--blue); }

.chat-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-align: center;
  padding: 40px;
}
.chat-empty .icon { font-size: 40px; margin-bottom: 12px; }
.chat-empty p { font-size: 15px; margin-bottom: 6px; }
.chat-empty small { font-size: 13px; }

.delete-proj-btn {
  background: none;
  border: none;
  color: transparent;
  cursor: pointer;
  padding: 0 2px;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
  border-radius: 4px;
  transition: all 0.15s;
}
.project-item:hover .delete-proj-btn {
  color: rgba(255,120,120,0.7);
}
.delete-proj-btn:hover {
  color: #ff6b6b !important;
  background: rgba(255,100,100,0.15);
}

.coming-soon {
  text-align: center;
  padding: 80px 40px;
  color: var(--muted);
}
.coming-soon .icon { font-size: 48px; margin-bottom: 16px; }
.coming-soon h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.coming-soon p { font-size: 14px; line-height: 1.6; max-width: 400px; margin: 0 auto; }

/* ── Agency Dashboard ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 4px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.stat-card.stat-highlight {
  border-color: var(--blue);
  background: linear-gradient(135deg, #f0f9ff 0%, #e8f4fd 100%);
}

.stat-card.stat-warning {
  border-color: var(--orange);
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.client-health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.client-health-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--light);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.15s;
  cursor: pointer;
}

.client-health-card:hover {
  border-color: var(--blue);
  background: #f0f8ff;
}

.client-health-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.client-health-indicator.status-active { background: var(--green); }
.client-health-indicator.status-at_risk { background: var(--orange); }
.client-health-indicator.status-on_hold { background: var(--muted); }
.client-health-indicator.status-inactive { background: #ccc; }

.client-health-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-health-status {
  font-size: 11px;
  color: var(--muted);
  text-transform: capitalize;
}

.alert-success {
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #276749;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  margin-bottom: 12px;
}

/* ── Mobile Responsive ─────────────────────────────────────────── */

/* Mobile user/logout button — hidden on desktop */
.mobile-user-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
}
.mobile-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile overlay when sidebar is open */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99;
}
.sidebar-overlay.open { display: block; }

@media (max-width: 768px) {

  /* ── Layout ── */
  .app-layout {
    flex-direction: column;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100vh;
    z-index: 100;
    transition: left 0.25s ease;
    overflow-y: auto;
  }

  .sidebar.open {
    left: 0;
  }

  .main-content {
    width: 100%;
    min-height: 100vh;
  }

  /* ── Top bar ── */
  .top-bar {
    padding: 0 16px;
    height: 52px;
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
  }

  .top-bar h1 {
    font-size: 16px;
  }

  .hamburger {
    display: flex;
  }

  .mobile-user-btn {
    display: flex;
  }

  /* ── Page body ── */
  .page-body {
    padding: 16px;
  }

  /* ── Agency dashboard stats ── */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-value {
    font-size: 22px;
  }

  /* ── Client grid ── */
  .client-grid {
    grid-template-columns: 1fr;
  }

  .client-health-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── Projects / Chat — two-panel becomes single panel ── */
  .projects-layout {
    flex-direction: column;
    height: auto;
    min-height: calc(100vh - 80px);
  }

  .projects-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    max-height: 220px;
    overflow-y: auto;
  }

  /* When a project is open on mobile, hide the sidebar */
  .projects-layout.project-open .projects-sidebar {
    display: none;
  }

  .projects-layout.project-open .chat-area {
    height: calc(100vh - 52px);
    position: fixed;
    inset: 52px 0 0 0;
    z-index: 40;
    background: #fff;
  }

  /* ── Chat ── */
  .messages-area {
    padding: 12px 16px;
  }

  .message {
    max-width: 90%;
  }

  .chat-input-area {
    padding: 10px 12px;
    position: sticky;
    bottom: 0;
    background: #fff;
    border-top: 1px solid var(--border);
  }

  .chat-header {
    padding: 10px 14px;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
  }

  /* Back button in mobile chat header */
  .mobile-back-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--blue);
    cursor: pointer;
    margin-right: 10px;
    background: none;
    border: none;
    padding: 0;
  }

  /* ── Cards ── */
  .card {
    padding: 16px;
  }

  /* ── Tables — horizontal scroll ── */
  .data-table {
    font-size: 12px;
  }

  /* ── Modals ── */
  .modal {
    padding: 20px 16px;
    margin: 12px;
    max-width: calc(100vw - 24px);
  }

  /* ── Tabs (hide on small screens, use sidebar nav) ── */
  .tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .tab {
    white-space: nowrap;
    padding: 10px 14px;
    font-size: 13px;
  }

  /* ── Agents / KB two-panel ── */
  .projects-layout .projects-sidebar {
    max-height: 180px;
  }

  /* ── ROI strip ── */
  .roi-strip {
    grid-template-columns: 1fr;
  }

  /* ── Back link ── */
  .back-link {
    font-size: 13px;
    margin-bottom: 12px;
  }

  /* ── Buttons ── */
  .btn-sm {
    padding: 6px 10px;
    font-size: 12px;
  }

  /* ── Hide non-essential top-bar actions on mobile ── */
  .top-bar .actions {
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .client-health-grid {
    grid-template-columns: 1fr;
  }

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

  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
