/* ============================================================
   RESET & VARIABLES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:       #1a2744;   /* Magnus Karate navy */
  --primary-light: #253660;   /* lighter navy for hover states */
  --accent:        #cc0000;   /* Magnus Karate red */
  --accent-light:  #e60000;
  --bg:            #f1f5f9;
  --card-bg:       #ffffff;
  --text:          #1a2744;
  --text-muted:    #5a6a85;
  --border:        #dde3ee;
  --danger:        #cc0000;
  --success:       #16a34a;
  --warning:       #f59e0b;

  --lead:    #1a2744;   /* navy — most senior */
  --senior:  #cc0000;   /* red */
  --junior:  #16a34a;   /* green */
  --trainee: #ea580c;   /* orange */
}

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
  font-size: 16px;
}

/* ============================================================
   APP SHELL
   ============================================================ */
#app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg);
  position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,0.08);
}

#app-header {
  background: var(--primary);
  color: white;
  padding: 0 1rem;
  padding-top: env(safe-area-inset-top);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 3px solid var(--accent);
  min-height: calc(52px + env(safe-area-inset-top));
}

.header-logo {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}

#page-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  flex: 1;
}

.header-subtitle {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.75;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 1px;
}

#main-content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ============================================================
   BOTTOM NAV
   ============================================================ */
#bottom-nav {
  display: flex;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  padding-bottom: env(safe-area-inset-bottom);
}

.nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-btn.active {
  color: var(--accent);
}

.nav-icon {
  width: 22px;
  height: 22px;
}

/* ============================================================
   VIEW HEADER (week/month nav)
   ============================================================ */
.view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.75rem;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 5;
}

.view-period {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}

.icon-btn {
  width: 2rem;
  height: 2rem;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: var(--card-bg);
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  line-height: 1;
  flex-shrink: 0;
}

.icon-btn:active {
  background: var(--bg);
}

/* ============================================================
   SCHEDULE VIEW
   ============================================================ */
.schedule-days {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.day-section {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card-bg);
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.75rem;
  background: #dde6f0;
}

.day-section.today .day-header {
  background: var(--accent);
  color: white;
}

.day-name {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.day-date-label {
  font-size: 0.8rem;
  font-weight: 500;
}

.no-classes {
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   CLASS CARDS
   ============================================================ */
.class-card {
  padding: 0.55rem 0.75rem;
  border-top: 1px solid var(--border);
}

.class-card.cancelled {
  opacity: 0.55;
  background: #f8f8f8;
}

.admin-class-card {
  cursor: pointer;
}

.admin-class-card:active {
  background: #f0f5ff;
}

.class-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.2rem;
}

.class-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.class-time {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-light);
  flex-shrink: 0;
}

.class-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.class-meta-row {
  display: flex;
  gap: 0.6rem;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.staff-ok   { color: var(--success); font-weight: 600; }
.staff-low  { color: var(--danger);  font-weight: 600; }
.staff-high { color: var(--warning); font-weight: 600; }

.member-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.member-chip {
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 500;
  color: white;
}

.no-staff {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

.cancelled-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--danger);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.tag-oneoff {
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #7c3aed;
  background: #ede9fe;
  padding: 2px 6px;
  border-radius: 10px;
  letter-spacing: 0.04em;
}

.override-badge {
  font-size: 0.63rem;
  font-weight: 700;
  background: #fef3c7;
  color: #92400e;
  padding: 2px 6px;
  border-radius: 10px;
}

.edit-hint {
  font-size: 0.7rem;
  color: var(--primary-light);
  margin-top: 0.25rem;
  font-style: italic;
}

/* ============================================================
   LEVEL COLORS (shared)
   ============================================================ */
.level-lead    { background: var(--lead); }
.level-senior  { background: var(--senior); }
.level-junior  { background: var(--junior); }
.level-trainee { background: var(--trainee); }

.level-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  color: white;
}

/* ============================================================
   PERSON VIEW
   ============================================================ */
.person-selector-bar {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.member-select {
  flex: 1;
  padding: 0.45rem 0.6rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem;
  background: var(--card-bg);
  color: var(--text);
  -webkit-appearance: none;
  appearance: none;
}

.person-schedule {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.person-day {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--card-bg);
}

.person-day-header {
  background: #dde6f0;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.person-class-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-top: 1px solid var(--border);
}

.person-class-info {
  flex: 1;
  min-width: 0;
}

.person-class-info .class-name {
  display: block;
  margin-bottom: 1px;
}

.person-class-info .class-meta {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ============================================================
   EMPTY / UTILITY STATES
   ============================================================ */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  gap: 0.5rem;
  color: var(--text-muted);
  text-align: center;
  font-size: 0.9rem;
}

.empty-text {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: italic;
  padding: 0.4rem 0;
}

.hidden { display: none !important; }

/* ============================================================
   ADMIN SUBNAV
   ============================================================ */
.admin-subnav {
  display: flex;
  background: var(--card-bg);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 5;
}

.subnav-btn {
  flex: 1;
  padding: 0.7rem 0;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.15s;
  margin-bottom: -2px;
}

.subnav-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.admin-body {
  padding: 0.75rem;
  padding-bottom: 1.5rem;
}

/* ============================================================
   ADMIN LOGIN
   ============================================================ */
.login-card {
  max-width: 320px;
  margin: 2rem auto;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
}

.login-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.login-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.login-card .form-group {
  width: 100%;
}

.error-text {
  color: var(--danger);
  font-size: 0.82rem;
  text-align: center;
}

/* ============================================================
   ADMIN SECTIONS
   ============================================================ */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.section-header h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.section-gap {
  margin-top: 1.5rem;
}

.item-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.75rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  gap: 0.5rem;
}

.list-item-info {
  flex: 1;
  min-width: 0;
}

.list-item-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.list-item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.list-item-actions {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  flex-shrink: 0;
}

.level-select {
  padding: 0.3rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
}

.level-select:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.1s;
  text-align: center;
  white-space: nowrap;
}

.btn:active { opacity: 0.8; }

.btn-primary   { background: var(--primary); color: white; }
.btn-secondary { background: #e2e8f0; color: var(--text); }
.btn-danger    { background: var(--danger); color: white; }
.btn-ghost     { background: none; color: var(--text-muted); border: 1.5px solid var(--border); }

.btn-sm {
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  border-radius: 6px;
}

.btn-full { width: 100%; }

.btn-icon-danger {
  background: none;
  border: none;
  color: #cbd5e1;
  cursor: pointer;
  font-size: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: color 0.15s, background 0.15s;
}

.btn-icon-danger:active {
  color: var(--danger);
  background: #fee2e2;
}

.logout-btn {
  display: block;
  margin: 0.5rem auto 1rem;
  padding: 0.4rem 1.2rem;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-input {
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  width: 100%;
  background: var(--card-bg);
  color: var(--text);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Search input in admin sections */
.search-input {
  margin: 0.5rem 0 0.75rem;
  font-size: 0.82rem;
  padding: 0.45rem 0.65rem;
}

/* Search input in assign modal */
.assign-search-input {
  margin: 0.25rem 0 0.5rem;
  font-size: 0.82rem;
  padding: 0.45rem 0.65rem;
}

.form-row {
  display: flex;
  gap: 0.6rem;
  width: 100%;
}

.form-row .form-group {
  flex: 1;
}

.warning-note {
  font-size: 0.8rem;
  color: #92400e;
  background: #fef3c7;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
}

/* ============================================================
   MODAL
   ============================================================ */
#modal-container {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  z-index: 101;
  max-height: 92vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: env(safe-area-inset-bottom);
  border: none;
  background: transparent;
  /* dialog close on backdrop handled in JS */
}

#modal-container::backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 100;
}

.modal-sheet {
  background: var(--card-bg);
  border-radius: 16px 16px 0 0;
  padding: 1.25rem max(1.25rem, env(safe-area-inset-right)) 1.5rem max(1.25rem, env(safe-area-inset-left));
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.modal-handle {
  width: 36px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto -0.25rem;
}

.modal-sheet h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.modal-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: -0.5rem;
}

.modal-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.modal-actions-stack {
  flex-direction: column;
}

.modal-actions-stack .btn {
  width: 100%;
}

/* Assign member checkboxes */
.member-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-height: 45vh;
  overflow-y: auto;
}

.member-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.65rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.1s, background 0.1s;
}

.member-checkbox-label:has(input:checked) {
  border-color: var(--primary-light);
  background: #eff6ff;
}

.member-checkbox-label input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  cursor: pointer;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.member-checkbox-name {
  flex: 1;
  font-weight: 500;
  font-size: 0.875rem;
}

.assign-status {
  font-size: 0.78rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-weight: 600;
}

.status-default  { background: #f1f5f9; color: var(--text-muted); }
.status-override { background: #fef3c7; color: #92400e; }

/* ============================================================
   AUTH SCREEN
   ============================================================ */
#auth-screen,
#pending-screen {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg);
  box-shadow: 0 0 40px rgba(0,0,0,0.08);
}

.auth-header {
  background: var(--primary);
  color: white;
  padding: 2.5rem 1.5rem 1.75rem;
  padding-top: calc(2.5rem + env(safe-area-inset-top));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 3px solid var(--accent);
  text-align: center;
}

.auth-logo {
  height: 64px;
  width: auto;
  margin-bottom: 0.25rem;
}

.auth-header h1 {
  font-size: 1.2rem;
  font-weight: 700;
}

.auth-subtitle {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
}

.auth-tabs {
  display: flex;
  background: var(--card-bg);
  border-bottom: 2px solid var(--border);
  flex-shrink: 0;
}

.auth-tab {
  flex: 1;
  padding: 0.75rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
}

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

.auth-pane {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.auth-pane form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================================
   PENDING SCREEN
   ============================================================ */
.pending-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  gap: 1rem;
  text-align: center;
  max-width: 340px;
  margin: 0 auto;
}

.pending-card h2 {
  font-size: 1.15rem;
  color: var(--primary);
}

.pending-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ============================================================
   SETTINGS VIEW
   ============================================================ */
.settings-body {
  padding: 0.75rem;
  padding-left: max(0.75rem, env(safe-area-inset-left));
  padding-right: max(0.75rem, env(safe-area-inset-right));
  padding-bottom: 2rem;
}

.settings-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem;
  margin-top: 0.5rem;
}

/* ============================================================
   MISC HELPERS
   ============================================================ */
.push-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: #f1f5f9;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  line-height: 1.45;
}

.success-text {
  color: var(--success);
  font-size: 0.82rem;
  text-align: center;
}

.user-role-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: 10px;
  background: var(--primary);
  color: white;
  vertical-align: middle;
  margin-left: 2px;
}

.user-self-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  vertical-align: middle;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: calc(80px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 200;
  white-space: nowrap;
  pointer-events: none;
  animation: toastFade 3.2s ease forwards;
}

.toast-error { background: var(--danger); }

@keyframes toastFade {
  0%   { opacity: 0; transform: translateX(-50%) translateY(8px); }
  12%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  75%  { opacity: 1; }
  100% { opacity: 0; }
}

/* ============================================================
   iOS INSTALL BANNER & CARD
   ============================================================ */
.ios-install-banner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #1a2744;
  color: #fff;
  padding: 0.6rem 1rem 0.6rem calc(1rem + env(safe-area-inset-left));
  font-size: 0.8125rem;
  position: sticky;
  top: 0;
  z-index: 50;
}

.ios-banner-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.ios-banner-text {
  flex: 1;
  line-height: 1.3;
}

.ios-banner-dismiss {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  cursor: pointer;
  padding: 0 0.25rem;
  flex-shrink: 0;
  line-height: 1;
}

.ios-install-card {
  background: #f0f4ff;
  border: 1px solid #c7d4f0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-top: 0.5rem;
}

.ios-install-title {
  font-weight: 600;
  color: #1a2744;
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
}

.ios-install-subtitle {
  color: #475569;
  font-size: 0.875rem;
  margin: 0 0 0.625rem;
}

.ios-install-steps {
  margin: 0;
  padding-left: 1.25rem;
  color: #334155;
  font-size: 0.875rem;
  line-height: 1.7;
}

.ios-share-icon {
  display: inline-block;
  background: #e2e8f0;
  border-radius: 4px;
  padding: 0 4px;
  font-size: 0.8em;
}

/* ── Environment badge (dev/preview/prod) ──────────────── */
.env-badge {
  position: fixed;
  bottom: 8px;
  right: 8px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-family: monospace;
  border-radius: 999px;
  color: #fff;
  opacity: 0.7;
  z-index: 9999;
  pointer-events: none;
}

.env-badge--prod {
  background: #e53e3e;
}

.env-badge--preview {
  background: #3182ce;
}

.env-badge--dev {
  background: #38a169;
}
