/* ============================================
   MeetAI — Design System & Global Styles
   Mobile-first, dark theme, glass-morphism
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors */
  --bg-primary: #0A0A14;
  --bg-secondary: #0F0F1A;
  --bg-surface: #1A1A2E;
  --bg-surface-hover: #222240;
  --bg-elevated: #252545;

  /* Accent */
  --accent-primary: #6C63FF;
  --accent-primary-hover: #7B73FF;
  --accent-primary-glow: rgba(108, 99, 255, 0.25);
  --accent-gradient: linear-gradient(135deg, #6C63FF, #A855F7);

  /* Status */
  --color-recording: #FF4757;
  --color-recording-glow: rgba(255, 71, 87, 0.3);
  --color-success: #2ED573;
  --color-warning: #FFA502;
  --color-error: #FF4757;
  --color-info: #45AAF2;

  /* Speakers */
  --speaker-1: #2ED573;
  --speaker-2: #45AAF2;
  --speaker-3: #FFA502;
  --speaker-4: #FF6B81;
  --speaker-5: #A855F7;

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #8B8BA3;
  --text-tertiary: #5A5A7A;
  --text-accent: #6C63FF;

  /* Borders */
  --border-color: #2A2A4A;
  --border-subtle: #1E1E38;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px var(--accent-primary-glow);

  /* Glass */
  --glass-bg: rgba(26, 26, 46, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-blur: blur(20px);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50%;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Z-index */
  --z-navbar: 100;
  --z-modal: 200;
  --z-toast: 300;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;

  /* Safe areas for mobile */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-primary-hover);
}

/* --- Scrollbar (Desktop) --- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}

/* --- Layout --- */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.page-content {
  flex: 1;
  padding: var(--space-md);
  padding-bottom: calc(80px + var(--safe-bottom));
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

/* --- Top Navigation Bar --- */
.top-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-navbar);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  padding-top: calc(var(--space-md) + var(--safe-top));
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
}

.top-nav .brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.top-nav .brand-icon {
  font-size: 1.5rem;
}

.top-nav .nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* --- Bottom Tab Bar (Mobile) --- */
.bottom-tabs {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: calc(64px + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: var(--space-sm) var(--space-md);
  color: var(--text-tertiary);
  font-size: 0.65rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
  cursor: pointer;
  border: none;
  background: none;
}

.tab-item .tab-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.tab-item.active {
  color: var(--accent-primary);
}

.tab-item:hover {
  color: var(--text-secondary);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px var(--accent-primary-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-surface-hover);
  border-color: var(--accent-primary);
}

.btn-danger {
  background: var(--color-recording);
  color: white;
}

.btn-danger:hover {
  background: #ff5e6d;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: var(--space-sm) var(--space-md);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-surface);
}

.btn-icon {
  padding: 10px;
  border-radius: var(--radius-full);
  min-width: 44px;
  min-height: 44px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* --- Cards --- */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-normal);
}

.card:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md);
}

.card-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.card-clickable {
  cursor: pointer;
}

.card-clickable:active {
  transform: scale(0.98);
}

/* --- Inputs --- */
.input-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.input-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-primary-glow);
}

.input::placeholder {
  color: var(--text-tertiary);
}

.input-chat {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
}

.input-chat .input {
  border: none;
  background: transparent;
  padding: 10px 12px;
}

.input-chat .input:focus {
  box-shadow: none;
}

/* --- Tags --- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--accent-primary-glow);
  color: var(--accent-primary);
}

.tag-status {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-recording {
  background: var(--color-recording-glow);
  color: var(--color-recording);
}

.tag-processing {
  background: rgba(255, 165, 2, 0.15);
  color: var(--color-warning);
}

.tag-ready {
  background: rgba(46, 213, 115, 0.15);
  color: var(--color-success);
}

/* --- Meeting Card --- */
.meeting-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg);
  text-decoration: none;
  color: inherit;
}

.meeting-card .meeting-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.meeting-card .meeting-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.meeting-card .meeting-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.meeting-card .meeting-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

/* --- Tabs --- */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab {
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
  font-family: var(--font-primary);
}

.tab.active {
  color: var(--accent-primary);
  border-bottom-color: var(--accent-primary);
}

.tab:hover {
  color: var(--text-primary);
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

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

/* --- Transcript --- */
.transcript-segment {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.transcript-segment .speaker-indicator {
  width: 4px;
  border-radius: 2px;
  flex-shrink: 0;
}

.transcript-segment .segment-content {
  flex: 1;
  min-width: 0;
}

.transcript-segment .segment-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.transcript-segment .speaker-name {
  font-size: 0.8rem;
  font-weight: 600;
}

.transcript-segment .segment-time {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
}

.transcript-segment .segment-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Chat Bubbles --- */
.chat-messages {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

.chat-message {
  max-width: 85%;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  line-height: 1.6;
  font-size: 0.95rem;
  animation: slideUp 0.3s ease;
}

.chat-message.user {
  align-self: flex-end;
  background: var(--accent-gradient);
  color: white;
  border-bottom-right-radius: var(--space-xs);
}

.chat-message.ai {
  align-self: flex-start;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-bottom-left-radius: var(--space-xs);
}

.chat-sources {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.chat-source-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-primary);
  font-size: 0.8rem;
}

/* --- Recording Screen --- */
.recording-timer {
  font-size: 3.5rem;
  font-weight: 300;
  font-family: var(--font-mono);
  text-align: center;
  color: var(--text-primary);
  padding: var(--space-xl) 0;
  letter-spacing: 2px;
}

.recording-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
}

.btn-record-stop {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--color-recording);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 0 20px var(--color-recording-glow);
  transition: all var(--transition-normal);
}

.btn-record-stop:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--color-recording-glow);
}

.btn-pause {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-primary);
  transition: all var(--transition-normal);
}

.btn-pause:hover {
  background: var(--bg-surface-hover);
}

/* Recording indicator pulse */
.recording-pulse {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--color-recording);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* --- Live Transcript Feed --- */
.live-transcript {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  max-height: 40vh;
}

.live-transcript .segment {
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  animation: fadeIn 0.3s ease;
}

.live-transcript .segment .speaker {
  font-weight: 600;
  margin-right: var(--space-sm);
}

/* --- Auth Page --- */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: var(--space-lg);
  background: var(--bg-primary);
}

.auth-card {
  width: 100%;
  max-width: 420px;
  padding: var(--space-2xl);
}

.auth-logo {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.auth-logo .logo-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: block;
}

.auth-logo h1 {
  font-size: 2rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-logo p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: var(--space-xs);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.auth-toggle {
  text-align: center;
  margin-top: var(--space-lg);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* --- Summary Section --- */
.summary-section {
  margin-bottom: var(--space-xl);
}

.summary-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.summary-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.action-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

.action-item .action-assignee {
  font-weight: 600;
  color: var(--accent-primary);
  font-size: 0.85rem;
  white-space: nowrap;
}

.action-item .action-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.decision-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* --- Empty States --- */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
  text-align: center;
}

.empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.empty-state h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.empty-state p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 300px;
}

/* --- Loading --- */
.loading-spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid var(--border-color);
  border-top: 3px solid var(--accent-primary);
  border-radius: var(--radius-full);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-surface) 25%, var(--bg-elevated) 50%, var(--bg-surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

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

/* --- Toast / Notification --- */
.toast-container {
  position: fixed;
  top: calc(var(--space-md) + var(--safe-top));
  right: var(--space-md);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.toast {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  animation: slideIn 0.3s ease;
  max-width: 350px;
}

.toast-success { background: var(--color-success); }
.toast-error { background: var(--color-error); }
.toast-info { background: var(--color-info); }

/* --- Search --- */
.search-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px var(--space-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: border-color var(--transition-fast);
}

.search-bar:focus-within {
  border-color: var(--accent-primary);
}

.search-bar .search-icon {
  color: var(--text-tertiary);
  font-size: 1.1rem;
}

.search-bar input {
  flex: 1;
  border: none;
  background: none;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  outline: none;
}

.search-bar input::placeholder {
  color: var(--text-tertiary);
}

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: var(--z-modal);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}

.modal {
  width: 100%;
  max-width: 500px;
  max-height: 80vh;
  background: var(--bg-surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: var(--space-xl);
  animation: slideUp 0.3s ease;
  overflow-y: auto;
}

/* --- Scope Selector --- */
.scope-selector {
  padding: 8px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
}

.scope-selector:focus {
  border-color: var(--accent-primary);
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* --- Utility Classes --- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.text-center { text-align: center; }
.text-sm { font-size: 0.85rem; }
.text-secondary { color: var(--text-secondary); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.hidden { display: none !important; }

/* --- Desktop (> 768px) --- */
@media (min-width: 768px) {
  .page-content {
    padding: var(--space-xl);
    padding-bottom: var(--space-xl);
    max-width: 900px;
  }

  .bottom-tabs {
    top: 0;
    bottom: unset;
    left: 0;
    right: unset;
    width: 80px;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    padding-bottom: 0;
    border-top: none;
    border-right: 1px solid var(--glass-border);
  }

  .tab-item {
    padding: var(--space-md);
    width: 100%;
  }

  .app-container {
    flex-direction: row;
  }

  .page-content {
    padding-bottom: var(--space-xl);
    margin-left: 80px;
  }

  .modal-overlay {
    align-items: center;
  }

  .modal {
    border-radius: var(--radius-xl);
    max-width: 500px;
  }

  .recording-timer {
    font-size: 5rem;
  }

  .auth-card {
    padding: var(--space-2xl) var(--space-2xl);
  }
}

/* --- Large Desktop (> 1200px) --- */
@media (min-width: 1200px) {
  .page-content {
    max-width: 1000px;
  }
}
