/* ============================================================================
   Krishna WhatsApp Cloud — Design System
   Modern Glass UI · Peacock Teal + Marigold Gold · Light/Dark via CSS vars
   ============================================================================ */

:root {
  --primary: #0F766E;
  --primary-600: #0d685f;
  --primary-100: #ccfbf1;
  --accent: #F59E0B;
  --accent-100: #fef3c7;
  --success: #10B981;
  --danger: #EF4444;
  --warning: #F59E0B;
  --info: #3B82F6;

  --surface: #F8FAFC;
  --surface-2: #ffffff;
  --surface-3: #f1f5f9;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.5);
  --text: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(15, 23, 42, .06), 0 8px 24px rgba(15, 23, 42, .07);
  --shadow-lg: 0 8px 40px rgba(15, 23, 42, .14);
  --radius: 14px;
  --radius-sm: 10px;
  --sidebar-w: 256px;
  --sidebar-w-collapsed: 68px;
  --topbar-h: 60px;
  --font: 'Inter', 'Anek Gujarati', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --wa-bubble-out: #d9fdd3;
  --wa-bubble-in: #ffffff;
  --wa-chat-bg: #efeae2;
}

.dark {
  --surface: #0F172A;
  --surface-2: #1e293b;
  --surface-3: #16213a;
  --glass: rgba(30, 41, 59, 0.72);
  --glass-border: rgba(148, 163, 184, 0.12);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: #2c3a52;
  --shadow: 0 1px 3px rgba(0, 0, 0, .3), 0 8px 24px rgba(0, 0, 0, .35);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .5);
  --primary-100: rgba(15, 118, 110, .25);
  --accent-100: rgba(245, 158, 11, .18);
  --wa-bubble-out: #005c4b;
  --wa-bubble-in: #202c33;
  --wa-chat-bg: #0b141a;
}

/* -- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  background: var(--surface);
  min-height: 100vh;
}
img, svg, video { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4, h5 { margin: 0 0 .5rem; line-height: 1.25; font-weight: 650; }
h1 { font-size: 1.5rem; } h2 { font-size: 1.25rem; } h3 { font-size: 1.1rem; }
p { margin: 0 0 .75rem; }
table { border-collapse: collapse; }
[x-cloak] { display: none !important; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

/* -- Glass panels ---------------------------------------------------------- */
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}
.card-header { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-bottom: 1rem; }
.card-title { font-size: 1rem; font-weight: 650; margin: 0; }

/* -- App shell -------------------------------------------------------------- */
.app-shell { display: flex; min-height: 100vh; }

.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--surface-2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 40;
  transition: width .2s ease-out, transform .2s ease-out;
}
.sidebar.collapsed { width: var(--sidebar-w-collapsed); }
.sidebar.collapsed .nav-label, .sidebar.collapsed .brand-name, .sidebar.collapsed .nav-section { display: none; }
.sidebar .brand {
  display: flex; align-items: center; gap: .6rem;
  padding: .9rem 1rem; border-bottom: 1px solid var(--border);
  font-weight: 700; font-size: 1.02rem; color: var(--text);
}
.sidebar .brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav-section { padding: .9rem 1rem .3rem; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.nav-item {
  display: flex; align-items: center; gap: .65rem;
  margin: .1rem .55rem; padding: .55rem .7rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted); font-weight: 500;
  transition: background .15s ease-out, color .15s ease-out;
  white-space: nowrap;
}
.nav-item:hover { background: var(--surface-3); color: var(--text); text-decoration: none; }
.nav-item.active { background: var(--primary-100); color: var(--primary); font-weight: 600; }
.dark .nav-item.active { color: #5eead4; }
.nav-item .icon { width: 20px; height: 20px; flex-shrink: 0; }
.nav-item .badge { margin-left: auto; }

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

.topbar {
  height: var(--topbar-h);
  display: flex; align-items: center; gap: .9rem;
  padding: 0 1.25rem;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 30;
}
.topbar .spacer { flex: 1; }

.content { padding: 1.5rem; max-width: 1440px; width: 100%; margin: 0 auto; }
.page-header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem; margin-bottom: 1.25rem; }
.breadcrumbs { display: flex; gap: .4rem; align-items: center; font-size: .8rem; color: var(--text-muted); margin-bottom: .3rem; }
.breadcrumbs a { color: var(--text-muted); }

/* -- Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .52rem 1rem;
  font: inherit; font-weight: 600; font-size: .855rem;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  cursor: pointer; white-space: nowrap;
  transition: background .15s ease-out, box-shadow .15s ease-out, transform .1s ease-out;
  text-decoration: none !important;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-600); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { background: var(--surface-3); }
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { background: var(--surface-3); color: var(--text); }
.btn-sm { padding: .3rem .65rem; font-size: .78rem; }
.btn-lg { padding: .7rem 1.4rem; font-size: .95rem; }
.btn-block { width: 100%; }
.btn-icon { padding: .5rem; width: 36px; height: 36px; }

/* -- Forms ------------------------------------------------------------------ */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-weight: 600; font-size: .82rem; margin-bottom: .35rem; }
.form-hint { font-size: .76rem; color: var(--text-muted); margin-top: .25rem; }
.form-error { font-size: .78rem; color: var(--danger); margin-top: .25rem; }
.input, select.input, textarea.input {
  width: 100%;
  padding: .55rem .8rem;
  font: inherit; font-size: .875rem;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease-out, box-shadow .15s ease-out;
}
.input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15, 118, 110, .15); }
.input.is-invalid { border-color: var(--danger); }
textarea.input { resize: vertical; min-height: 90px; }
.input-group { display: flex; }
.input-group .input { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.input-group .btn { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.checkbox-row { display: flex; align-items: center; gap: .5rem; font-size: .86rem; }

.toggle { position: relative; display: inline-block; width: 40px; height: 22px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle .slider {
  position: absolute; inset: 0; cursor: pointer;
  background: var(--border); border-radius: 22px; transition: background .2s ease-out;
}
.toggle .slider::before {
  content: ''; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px;
  background: #fff; border-radius: 50%; transition: transform .2s ease-out;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.toggle input:checked + .slider { background: var(--primary); }
.toggle input:checked + .slider::before { transform: translateX(18px); }

/* -- Tables ------------------------------------------------------------------ */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface-2); }
.table { width: 100%; font-size: .855rem; }
.table th {
  text-align: left; padding: .65rem .9rem;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .05em;
  color: var(--text-muted); border-bottom: 1px solid var(--border);
  background: var(--surface-3); white-space: nowrap;
}
.table td { padding: .68rem .9rem; border-bottom: 1px solid var(--border); vertical-align: middle; font-variant-numeric: tabular-nums; }
.table tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: var(--surface-3); }

/* -- Badges & status --------------------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .14rem .55rem; font-size: .72rem; font-weight: 600;
  border-radius: 999px; white-space: nowrap;
}
.badge-primary { background: var(--primary-100); color: var(--primary); }
.dark .badge-primary { color: #5eead4; }
.badge-success { background: rgba(16,185,129,.14); color: #059669; }
.badge-danger { background: rgba(239,68,68,.12); color: var(--danger); }
.badge-warning { background: var(--accent-100); color: #b45309; }
.badge-info { background: rgba(59,130,246,.12); color: var(--info); }
.badge-muted { background: var(--surface-3); color: var(--text-muted); }
.dark .badge-success { color: #34d399; }
.dark .badge-warning { color: #fbbf24; }

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-online { background: var(--success); }
.dot-away { background: var(--warning); }
.dot-offline { background: var(--text-muted); }

/* -- Alerts & toasts --------------------------------------------------------- */
.alert {
  display: flex; gap: .6rem; align-items: flex-start;
  padding: .8rem 1rem; border-radius: var(--radius-sm);
  font-size: .86rem; margin-bottom: 1rem;
  border: 1px solid transparent;
}
.alert-success { background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.3); color: #047857; }
.alert-danger { background: rgba(239,68,68,.08); border-color: rgba(239,68,68,.3); color: #b91c1c; }
.alert-warning { background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.3); color: #92400e; }
.alert-info { background: rgba(59,130,246,.08); border-color: rgba(59,130,246,.3); color: #1d4ed8; }
.dark .alert-success { color: #34d399; } .dark .alert-danger { color: #f87171; }
.dark .alert-warning { color: #fbbf24; } .dark .alert-info { color: #93c5fd; }

.toast-stack { position: fixed; right: 1rem; bottom: 1rem; display: flex; flex-direction: column; gap: .5rem; z-index: 100; }
.toast {
  min-width: 260px; max-width: 380px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  padding: .75rem 1rem; font-size: .85rem;
  animation: toast-in .22s ease-out;
}
.toast.toast-success { border-left-color: var(--success); }
.toast.toast-danger { border-left-color: var(--danger); }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* -- Modal ------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(15, 23, 42, .5);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 90; padding: 1rem;
}
.modal {
  background: var(--surface-2); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--glass-border);
  width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
  animation: modal-in .18s ease-out;
}
.modal-lg { max-width: 800px; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); }
.modal-body { padding: 1.25rem; }
.modal-footer { display: flex; justify-content: flex-end; gap: .6rem; padding: 1rem 1.25rem; border-top: 1px solid var(--border); }
@keyframes modal-in { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }

/* -- Stat cards -------------------------------------------------------------- */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-bottom: 1.25rem; }
.stat-card { display: flex; flex-direction: column; gap: .25rem; }
.stat-card .stat-label { font-size: .78rem; color: var(--text-muted); font-weight: 600; }
.stat-card .stat-value { font-size: 1.6rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.stat-card .stat-delta { font-size: .76rem; }
.stat-delta.up { color: var(--success); }
.stat-delta.down { color: var(--danger); }

/* -- Avatars ----------------------------------------------------------------- */
.avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary-100); color: var(--primary);
  font-weight: 700; font-size: .85rem; overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-sm { width: 28px; height: 28px; font-size: .7rem; }
.avatar-lg { width: 52px; height: 52px; font-size: 1.1rem; }

/* -- Empty state / skeleton --------------------------------------------------- */
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
.empty-state .icon { font-size: 2.4rem; margin-bottom: .6rem; }
.skeleton {
  background: linear-gradient(90deg, var(--surface-3) 25%, var(--border) 50%, var(--surface-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* -- Auth pages --------------------------------------------------------------- */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(1000px 500px at 10% -10%, rgba(15, 118, 110, .18), transparent 60%),
    radial-gradient(800px 400px at 100% 110%, rgba(245, 158, 11, .14), transparent 55%),
    var(--surface);
}
.auth-card { width: 100%; max-width: 420px; padding: 2rem; }
.auth-logo { display: flex; align-items: center; justify-content: center; gap: .6rem; margin-bottom: 1.25rem; font-size: 1.15rem; font-weight: 700; }

/* -- Inbox (three-pane) -------------------------------------------------------- */
.inbox-shell { display: flex; height: calc(100vh - var(--topbar-h)); overflow: hidden; }
.inbox-list { width: 340px; flex-shrink: 0; border-right: 1px solid var(--border); display: flex; flex-direction: column; background: var(--surface-2); }
.inbox-list-header { padding: .75rem; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: .5rem; }
.inbox-filters { display: flex; gap: .35rem; overflow-x: auto; padding-bottom: 2px; }
.inbox-filters .chip {
  padding: .25rem .7rem; font-size: .76rem; font-weight: 600; border-radius: 999px;
  background: var(--surface-3); color: var(--text-muted); cursor: pointer; white-space: nowrap; border: none;
}
.inbox-filters .chip.active { background: var(--primary); color: #fff; }
.inbox-items { flex: 1; overflow-y: auto; }
.conv-item {
  display: flex; gap: .7rem; padding: .7rem .85rem; cursor: pointer;
  border-bottom: 1px solid var(--border); transition: background .12s ease-out;
  color: inherit; text-decoration: none !important;
}
.conv-item:hover { background: var(--surface-3); }
.conv-item.active { background: var(--primary-100); }
.conv-item .conv-main { flex: 1; min-width: 0; }
.conv-item .conv-top { display: flex; justify-content: space-between; gap: .5rem; }
.conv-item .conv-name { font-weight: 600; font-size: .875rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.conv-item .conv-time { font-size: .7rem; color: var(--text-muted); flex-shrink: 0; }
.conv-item .conv-preview { font-size: .8rem; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-top: .1rem; }
.conv-item .unread-pill { background: var(--primary); color: #fff; font-size: .68rem; font-weight: 700; border-radius: 999px; padding: .05rem .42rem; margin-left: auto; }

.chat-pane { flex: 1; min-width: 0; display: flex; flex-direction: column; background: var(--wa-chat-bg); }
.chat-header {
  display: flex; align-items: center; gap: .7rem; padding: .6rem 1rem;
  background: var(--surface-2); border-bottom: 1px solid var(--border);
}
.chat-scroll { flex: 1; overflow-y: auto; padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: .35rem; }
.bubble {
  max-width: 72%; padding: .45rem .7rem; border-radius: 10px;
  font-size: .875rem; box-shadow: 0 1px 1px rgba(0,0,0,.08);
  position: relative; word-wrap: break-word; white-space: pre-wrap;
}
.bubble-in { background: var(--wa-bubble-in); align-self: flex-start; border-top-left-radius: 2px; }
.bubble-out { background: var(--wa-bubble-out); align-self: flex-end; border-top-right-radius: 2px; }
.bubble .meta { display: flex; gap: .3rem; align-items: center; justify-content: flex-end; font-size: .66rem; color: var(--text-muted); margin-top: .15rem; }
.bubble.note { background: var(--accent-100); align-self: center; max-width: 85%; font-size: .8rem; border: 1px dashed var(--accent); }
.bubble img, .bubble video { border-radius: 8px; max-width: 280px; display: block; }
.day-divider { align-self: center; background: var(--surface-2); color: var(--text-muted); font-size: .7rem; padding: .2rem .7rem; border-radius: 8px; margin: .5rem 0; box-shadow: var(--shadow); }

.composer { background: var(--surface-2); border-top: 1px solid var(--border); padding: .6rem .9rem; }
.composer-inner { display: flex; align-items: flex-end; gap: .5rem; }
.composer textarea {
  flex: 1; resize: none; max-height: 140px; min-height: 40px;
  border: 1px solid var(--border); border-radius: 20px;
  padding: .55rem .95rem; font: inherit; font-size: .875rem;
  background: var(--surface); color: var(--text);
}
.composer textarea:focus { outline: none; border-color: var(--primary); }
.session-timer { font-size: .72rem; padding: .18rem .6rem; border-radius: 999px; font-weight: 600; }
.session-timer.open { background: rgba(16,185,129,.14); color: #059669; }
.session-timer.closing { background: var(--accent-100); color: #b45309; }
.session-timer.closed { background: rgba(239,68,68,.12); color: var(--danger); }

.contact-pane { width: 300px; flex-shrink: 0; border-left: 1px solid var(--border); background: var(--surface-2); overflow-y: auto; padding: 1rem; }

/* -- Progress bar ------------------------------------------------------------- */
.progress { height: 8px; background: var(--surface-3); border-radius: 999px; overflow: hidden; }
.progress-bar { height: 100%; background: var(--primary); border-radius: 999px; transition: width .3s ease-out; }
.progress-bar.striped {
  background-image: linear-gradient(45deg, rgba(255,255,255,.2) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.2) 50%, rgba(255,255,255,.2) 75%, transparent 75%);
  background-size: 20px 20px;
  animation: progress-stripes 1s linear infinite;
}
@keyframes progress-stripes { from { background-position: 20px 0; } to { background-position: 0 0; } }

/* -- Utilities ---------------------------------------------------------------- */
.flex { display: flex; } .flex-col { flex-direction: column; }
.items-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-1 { gap: .25rem; } .gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.mt-1 { margin-top: .25rem; } .mt-2 { margin-top: .5rem; } .mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: .5rem; } .mb-4 { margin-bottom: 1rem; }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: .8rem; } .text-xs { font-size: .72rem; }
.text-center { text-align: center; } .text-right { text-align: right; }
.font-bold { font-weight: 700; } .font-semi { font-weight: 600; }
.w-full { width: 100%; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tabular { font-variant-numeric: tabular-nums; }
.hidden { display: none; }
.pagination { display: flex; gap: .3rem; align-items: center; margin-top: 1rem; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: .35rem .7rem; border: 1px solid var(--border); border-radius: 8px;
  font-size: .8rem; color: var(--text); background: var(--surface-2);
}
.pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination a:hover { background: var(--surface-3); text-decoration: none; }

.impersonation-banner {
  background: var(--danger); color: #fff; text-align: center;
  padding: .4rem 1rem; font-size: .82rem; font-weight: 600;
  position: sticky; top: 0; z-index: 60;
}
.impersonation-banner a { color: #fff; text-decoration: underline; }

/* -- Responsive ---------------------------------------------------------------- */
.mobile-nav-toggle { display: none; }
@media (max-width: 1100px) {
  .contact-pane { display: none; }
}
@media (max-width: 860px) {
  .sidebar { position: fixed; left: 0; transform: translateX(-100%); box-shadow: var(--shadow-lg); }
  .sidebar.open { transform: translateX(0); }
  .mobile-nav-toggle { display: inline-flex; }
  .content { padding: 1rem; }
  .inbox-list { width: 100%; border-right: none; }
  .inbox-shell.chat-open .inbox-list { display: none; }
  .inbox-shell:not(.chat-open) .chat-pane { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .bubble { max-width: 88%; }
}

/* -- Print --------------------------------------------------------------------- */
@media print {
  .sidebar, .topbar, .composer, .btn, .no-print { display: none !important; }
  .content { padding: 0; max-width: none; }
  body { background: #fff; color: #000; }
}
