/* ═══════════════════════════════════════════════════════════════
   Sandpiper Resort Co-Op - Admin Dashboard Styles
   Colors: Coral #D9766C, Navy #434C56, Aqua #ADBCB3, Gold #C4A882, Linen #F7F4EF
   ═══════════════════════════════════════════════════════════════ */

:root {
  --coral: #D9766C;
  --coral-light: #E89B93;
  --coral-dark: #C45A4F;
  --navy: #434C56;
  --navy-light: #5A6370;
  --navy-dark: #2E353D;
  --aqua: #ADBCB3;
  --aqua-light: #C8D4CC;
  --gold: #C4A882;
  --gold-light: #D4BFA0;
  --linen: #F7F4EF;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --red: #DC2626;
  --red-light: #FEE2E2;
  --green: #16A34A;
  --green-light: #DCFCE7;
  --blue: #2563EB;
  --blue-light: #DBEAFE;
  --yellow: #D97706;
  --yellow-light: #FEF3C7;
  --sidebar-width: 260px;
  --header-height: 64px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --radius: 8px;
  --radius-lg: 12px;
}

/* ═══════════════ RESET & BASE ═══════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-800);
  background: var(--gray-50);
  min-height: 100vh;
}

a { color: var(--coral); text-decoration: none; }
a:hover { color: var(--coral-dark); }

/* ═══════════════ LOGIN PAGE ═══════════════ */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding: 20px;
}

.login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
}

.login-card .logo {
  text-align: center;
  margin-bottom: 32px;
}

.login-card .logo h1 {
  font-size: 24px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}

.login-card .logo p {
  color: var(--gray-500);
  font-size: 13px;
}

.login-card .form-group {
  margin-bottom: 20px;
}

.login-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.login-card input[type="text"],
.login-card input[type="password"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.login-card input:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(217, 118, 108, 0.15);
}

.login-card .btn-login {
  width: 100%;
  padding: 12px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.login-card .btn-login:hover { background: var(--coral-dark); }
.login-card .btn-login:disabled { opacity: 0.6; cursor: not-allowed; }

.login-error {
  background: var(--red-light);
  color: var(--red);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}

.login-error.visible { display: block; }

/* ═══════════════ LAYOUT ═══════════════ */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

/* ═══════════════ SIDEBAR ═══════════════ */
.sidebar {
  width: var(--sidebar-width);
  background: var(--navy-dark);
  color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 100;
  transition: transform 0.3s;
}

.sidebar-brand {
  padding: 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-brand h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.sidebar-brand small {
  font-size: 11px;
  color: var(--aqua);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-nav {
  padding: 16px 0;
}

.sidebar-nav .nav-section {
  padding: 0 20px;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-top: 20px;
}

.sidebar-nav .nav-section:first-child { margin-top: 0; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: all 0.15s;
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--white);
}

.sidebar-nav a.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-left-color: var(--coral);
  font-weight: 600;
}

.sidebar-nav a .icon {
  width: 20px;
  text-align: center;
  font-size: 16px;
  flex-shrink: 0;
}

.sidebar-nav a .badge {
  margin-left: auto;
  background: var(--coral);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}

.sidebar-user {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-dark);
}

.sidebar-user .user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.sidebar-user .user-info {
  flex: 1;
  min-width: 0;
}

.sidebar-user .user-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-user .user-role {
  font-size: 11px;
  color: var(--gray-400);
}

/* ═══════════════ MAIN CONTENT ═══════════════ */
.main-content {
  flex: 1;
  margin-left: var(--sidebar-width);
  min-width: 0;
}

.content-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.content-header h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.content-header .breadcrumb {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

.content-body {
  padding: 24px 32px;
}

/* ═══════════════ STAT CARDS ═══════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.stat-card .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.stat-icon.coral { background: rgba(217,118,108,0.12); color: var(--coral); }
.stat-icon.navy { background: rgba(67,76,86,0.1); color: var(--navy); }
.stat-icon.aqua { background: rgba(173,188,179,0.2); color: #5A7A65; }
.stat-icon.gold { background: rgba(196,168,130,0.15); color: #9A7D54; }
.stat-icon.blue { background: var(--blue-light); color: var(--blue); }
.stat-icon.green { background: var(--green-light); color: var(--green); }
.stat-icon.red { background: var(--red-light); color: var(--red); }

.stat-card .stat-info { flex: 1; }

.stat-card .stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.stat-card .stat-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ═══════════════ CARDS ═══════════════ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.card-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-header h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.card-body { padding: 24px; }
.card-body.no-padding { padding: 0; }

/* ═══════════════ TABLES ═══════════════ */
.table-wrapper { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
}

table th {
  background: var(--gray-50);
  padding: 10px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--gray-200);
  white-space: nowrap;
}

table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  vertical-align: middle;
}

table tr:last-child td { border-bottom: none; }

table tr:hover td { background: var(--gray-50); }

/* ═══════════════ BADGES ═══════════════ */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.badge-coral { background: rgba(217,118,108,0.12); color: var(--coral-dark); }
.badge-navy { background: rgba(67,76,86,0.1); color: var(--navy); }
.badge-aqua { background: rgba(173,188,179,0.2); color: #4A6B53; }
.badge-gold { background: rgba(196,168,130,0.15); color: #8A6D44; }
.badge-green { background: var(--green-light); color: var(--green); }
.badge-red { background: var(--red-light); color: var(--red); }
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-yellow { background: var(--yellow-light); color: var(--yellow); }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--coral-dark); color: var(--white); }

.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--gray-600);
  border: 1px solid var(--gray-300);
}
.btn-outline:hover { background: var(--gray-50); border-color: var(--gray-400); }

.btn-sm { padding: 5px 12px; font-size: 13px; }

.btn-danger { background: var(--red); color: var(--white); }
.btn-danger:hover { background: #B91C1C; color: var(--white); }

.btn-success { background: var(--green); color: var(--white); }
.btn-success:hover { background: #15803D; color: var(--white); }

/* ═══════════════ FORMS ═══════════════ */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 9px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(217, 118, 108, 0.15);
}

select.form-control { appearance: auto; }

textarea.form-control { resize: vertical; min-height: 80px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-text {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ═══════════════ SEARCH & FILTERS ═══════════════ */
.toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.toolbar .search-input {
  flex: 1;
  min-width: 200px;
  max-width: 360px;
  padding: 9px 14px 9px 36px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px center;
}

.toolbar .search-input:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(217, 118, 108, 0.15);
}

.toolbar .filter-select {
  padding: 9px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--white);
}

/* ═══════════════ PAGINATION ═══════════════ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-500);
}

.pagination .page-buttons {
  display: flex;
  gap: 4px;
}

.pagination .page-btn {
  padding: 6px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  font-size: 13px;
}

.pagination .page-btn:hover { background: var(--gray-50); }
.pagination .page-btn.active { background: var(--coral); color: var(--white); border-color: var(--coral); }
.pagination .page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ═══════════════ ALERTS ═══════════════ */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success { background: var(--green-light); color: var(--green); }
.alert-error { background: var(--red-light); color: var(--red); }
.alert-warning { background: var(--yellow-light); color: var(--yellow); }
.alert-info { background: var(--blue-light); color: var(--blue); }

/* ═══════════════ MODAL ═══════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.modal-overlay.visible { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.2s;
}

.modal-overlay.visible .modal { transform: translateY(0); }

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 { font-size: 18px; color: var(--navy); }

.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--gray-400);
  font-size: 20px;
  border-radius: var(--radius);
}

.modal-close:hover { background: var(--gray-100); color: var(--gray-600); }

.modal-body { padding: 24px; }

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ═══════════════ ACTIVITY LIST ═══════════════ */
.activity-list { list-style: none; }

.activity-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.activity-list li:last-child { border-bottom: none; }

.activity-list .activity-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.activity-list .activity-text { flex: 1; }
.activity-list .activity-time { color: var(--gray-400); font-size: 12px; white-space: nowrap; }

/* ═══════════════ STATUS DOTS ═══════════════ */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}

.status-dot.active { background: var(--green); }
.status-dot.inactive { background: var(--gray-400); }
.status-dot.warning { background: var(--yellow); }

/* ═══════════════ EMPTY STATE ═══════════════ */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--gray-400);
}

.empty-state .icon { font-size: 48px; margin-bottom: 12px; }
.empty-state h3 { font-size: 16px; color: var(--gray-600); margin-bottom: 4px; }
.empty-state p { font-size: 14px; }

/* ═══════════════ LOADING ═══════════════ */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-300);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 1024px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .mobile-toggle { display: block; }
  .content-header { padding: 12px 20px; }
  .content-body { padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
  .toolbar { flex-direction: column; align-items: stretch; }
  .toolbar .search-input { max-width: none; }
}

/* ═══════════════ SIDEBAR CUSTOMIZER ═══════════════ */
.sidebar-customize-btn {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: var(--radius);
  transition: all 0.15s;
  flex-shrink: 0;
  line-height: 1;
}

.sidebar-customize-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.sidebar-customizer {
  position: fixed;
  top: 0;
  left: var(--sidebar-width);
  bottom: 0;
  width: 280px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 150;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sidebar-customizer.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.sidebar-customizer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.sidebar-customizer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.customizer-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.customizer-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.customizer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.customizer-section {
  padding: 8px 20px 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
}

.customizer-section:first-child {
  padding-top: 4px;
}

.customizer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.1s;
}

.customizer-item:hover {
  background: var(--gray-50);
}

.customizer-item-label {
  font-size: 14px;
  color: var(--gray-700);
  user-select: none;
}

.toggle-switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-300);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--coral);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(18px);
}

.sidebar-prefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 16px;
}

.sidebar-prefs-grid label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-700);
  padding: 4px 0;
  cursor: pointer;
}

.sidebar-prefs-grid label input[type="checkbox"] {
  accent-color: var(--coral);
}

.sidebar-prefs-section-label {
  grid-column: 1 / -1;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-400);
  margin-top: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gray-100);
}

.sidebar-prefs-section-label:first-child {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .sidebar-customizer {
    left: 0;
    width: 100%;
    max-width: 320px;
  }
}
