/* ==================================================
   BRAND TOKENS — RABBIALLAH
   ================================================== */
:root {
  --primary: #1f5f3b;
  --primary-dark: #174a2e;
  --primary-light: #2d7a4f;
  --secondary: #0fa3a3;
  --secondary-dark: #0b7f7f;

  --gold: #b8893d;
  --gold-soft: #d4af6e;
  --cream: #fdfaf3;
  --cream-deep: #f6efdf;

  --bg-soft: #f8faf9;
  --bg-card: #ffffff;
  --bg-muted: #f1f5f3;

  --text-main: #1a1f1c;
  --text-muted: #5a665e;
  --text-light: #8b9590;

  --border-soft: #e6ece8;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 18px 44px rgba(31, 95, 59, 0.08);

  --font-arabic: "Amiri Quran", "Scheherazade New", "Noto Naskh Arabic", "Traditional Arabic", "Times New Roman", serif;
  --font-arabic-display: "Amiri", "Scheherazade New", "Noto Naskh Arabic", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ==================================================
   GLOBAL SAFE RESET (scoped to plugin output)
   ================================================== */
.quran-index-wrap,
.quran-index,
.surah-header-box,
.bismillah-block,
.bismillah-note,
.ayah-list,
.quran-attribution,
.tafsir-modal {
  box-sizing: border-box;
  font-family: var(--font-body);
}

.quran-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin: 24px 0;
  font-size: 14px;
}

/* ==================================================
   QURAN INDEX (SURAH LIST)
   ================================================== */
.quran-index-intro {
  text-align: center;
  margin: 32px 0 28px;
}
.quran-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}
.quran-index-intro h2 {
  font-size: 28px;
  margin: 0;
  color: var(--text-main);
  font-weight: 600;
}

.quran-index {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 18px;
  margin: 28px 0 48px;
}

.surah-card {
  background: var(--bg-card);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-main);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.surah-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.surah-number {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-right: 14px;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(31, 95, 59, 0.25);
}

.surah-text {
  min-width: 0;
  flex: 1;
}
.surah-text h3 {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 600;
}
.surah-text small {
  color: var(--text-muted);
  font-size: 12px;
}
.surah-rev.meccan { color: var(--gold); font-weight: 600; }
.surah-rev.medinan { color: var(--primary); font-weight: 600; }

.surah-arabic {
  margin-left: auto;
  font-family: var(--font-arabic);
  font-size: 26px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
  padding-left: 12px;
  flex-shrink: 0;
}

/* ==================================================
   SURAH HEADER
   ================================================== */
.surah-header-box {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(15, 163, 163, 0.05), transparent 60%),
    radial-gradient(circle at bottom left, rgba(31, 95, 59, 0.04), transparent 60%),
    linear-gradient(180deg, var(--bg-soft), var(--bg-card));
  padding: 36px 28px 32px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 28px 0 22px;
  box-shadow: var(--shadow-md);
}

.surah-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  transition: color 0.2s, background 0.2s;
}
.surah-back-btn:hover {
  color: var(--primary);
  background: #fff;
}

.surah-arabic-title {
  font-family: var(--font-arabic-display);
  font-size: 56px;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.surah-header-box h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.3px;
}

.surah-meaning {
  color: var(--text-muted);
  font-size: 15px;
  margin: 4px 0 0;
  font-style: italic;
}

.surah-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 26px 0 22px;
}
.surah-meta-grid > div {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.surah-meta-grid .meta-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}
.surah-meta-grid strong {
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
}

.surah-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.surah-actions button {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: 1.5px solid transparent;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.surah-actions button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(31, 95, 59, 0.25);
}
.surah-actions button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* === Toggle button OFF state — outlined, white background === */
.surah-actions button.is-toggle[aria-pressed="false"] {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}
.surah-actions button.is-toggle[aria-pressed="false"]:hover {
  background: var(--bg-soft);
  opacity: 1;
  box-shadow: 0 4px 10px rgba(31, 95, 59, 0.12);
}

/* === iOS-style mini switch inside toggle buttons === */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 16px;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 99px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.toggle-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}
.surah-actions button.is-toggle[aria-pressed="true"] .toggle-switch::after {
  transform: translateX(12px);
}
.surah-actions button.is-toggle[aria-pressed="false"] .toggle-switch {
  background: rgba(31, 95, 59, 0.18);
}
.surah-actions button.is-toggle[aria-pressed="false"] .toggle-switch::after {
  background: var(--text-muted);
  transform: translateX(0);
}

/* Favorites toggle — gold accent when active to differentiate it as a filter */
.surah-actions #filter-favorites[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--gold), #9a7330);
  border-color: transparent;
}
.surah-actions #filter-favorites[aria-pressed="true"] .toggle-switch {
  background: rgba(255, 255, 255, 0.32);
}

/* ==================================================
   BISMILLAH BLOCK — the centerpiece of every surah
   ================================================== */
.bismillah-block {
  position: relative;
  background:
    radial-gradient(circle at center, rgba(184, 137, 61, 0.06), transparent 70%),
    linear-gradient(180deg, var(--cream), var(--cream-deep));
  border: 1px solid rgba(184, 137, 61, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  margin: 0 0 32px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(184, 137, 61, 0.08);
}

.bismillah-block::before,
.bismillah-block::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(184, 137, 61, 0.4);
  pointer-events: none;
}
.bismillah-block::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: var(--radius-md);
}
.bismillah-block::after {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: var(--radius-md);
}

.bismillah-ornament {
  color: var(--gold);
  margin: 0 auto 22px;
  width: 200px;
  max-width: 70%;
  height: 16px;
  display: block;
}
.bismillah-ornament svg {
  width: 100%;
  height: 100%;
}
.bismillah-ornament-bottom {
  margin: 22px auto 0;
}

.bismillah-arabic {
  font-family: var(--font-arabic);
  font-size: 48px;
  line-height: 1.6;
  color: var(--primary-dark);
  margin: 0 0 14px;
  letter-spacing: 0.5px;
  font-weight: 400;
  font-feature-settings: "kern" on, "liga" on;
}

.bismillah-translit {
  font-size: 16px;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

.bismillah-english {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Note shown only for Surah 9 (At-Tawbah) — no Bismillah by tradition */
.bismillah-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--cream);
  border: 1px dashed rgba(184, 137, 61, 0.5);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}
.bismillah-note i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.bismillah-note p {
  margin: 0;
}

/* ==================================================
   AYAH CARD
   ================================================== */
.ayah-card {
  position: relative; /* fixes the "Now Playing" pseudo-element placement */
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.ayah-card:hover {
  border-color: rgba(31, 95, 59, 0.25);
  box-shadow: var(--shadow-sm);
}
.ayah-card.playing {
  background: #f3faf6;
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.ayah-card.has-sajdah {
  border-left: 3px solid var(--gold);
}

.ayah-card.playing::after {
  content: "Now Playing";
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(31, 95, 59, 0.08);
  padding: 4px 10px;
  border-radius: 99px;
}

/* ==================================================
   AYAH SIDEBAR
   ================================================== */
.ayah-sidebar {
  width: 64px;
  background: linear-gradient(180deg, var(--secondary), var(--secondary-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px;
  gap: 10px;
  flex-shrink: 0;
}

.ayah-number-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.ayah-sidebar button {
  all: unset;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.2s, transform 0.15s;
}
.ayah-sidebar button i {
  font-size: 14px;
  color: #fff;
  pointer-events: none;
}
.ayah-sidebar button:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: scale(1.05);
}
.ayah-sidebar button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.ayah-sidebar button.bookmarked i {
  color: var(--gold-soft);
}

.ayah-sidebar-separator {
  width: 26px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin: 2px 0;
  border-radius: 2px;
}

.ayah.playing .ayah-sidebar {
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
}

/* ==================================================
   AYAH CONTENT
   ================================================== */
.ayah-content {
  padding: 26px 30px;
  flex: 1;
  min-width: 0;
}

.ayah-sajdah-marker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(184, 137, 61, 0.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
}

/* Arabic text — proper Quranic typography */
.ayah-arabic-text {
  font-family: var(--font-arabic);
  font-size: 32px;
  line-height: 2.1;
  text-align: right;
  color: var(--text-main);
  margin-bottom: 18px;
  font-weight: 400;
  font-feature-settings: "kern" on, "liga" on;
  word-spacing: 2px;
}

/* Ornate end-of-ayah marker (the traditional ﷽-style circle with the ayah number) */
.ayah-end-marker {
  display: inline-block;
  font-family: var(--font-arabic);
  font-size: 18px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: var(--primary);
  background:
    radial-gradient(circle, rgba(184, 137, 61, 0.08) 0%, transparent 70%),
    var(--cream);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  margin: 0 8px;
  vertical-align: middle;
  font-weight: 600;
  position: relative;
  top: -4px;
}

/* Transliteration */
.ayah-transliteration-text {
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.65;
}

/* Translation block */
.ayah-translation-box {
  background: var(--bg-soft);
  border-left: 4px solid var(--secondary);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.translation-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--secondary-dark);
  margin-bottom: 6px;
}
.ayah-translation-text {
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.7;
}

/* ==================================================
   ATTRIBUTION FOOTER
   ================================================== */
.quran-attribution {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin: 36px 0 90px; /* extra bottom margin so the fixed player doesn't cover it */
  font-size: 14px;
  color: var(--text-muted);
}
.quran-attribution h4 {
  margin: 0 0 12px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.quran-attribution ul {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 6px 18px;
}
.quran-attribution li {
  font-size: 13px;
  line-height: 1.5;
}
.quran-attribution li strong {
  color: var(--text-main);
  font-weight: 600;
}
.quran-disclaimer {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  font-style: italic;
  color: var(--text-light);
  border-top: 1px solid var(--border-soft);
  padding-top: 12px;
}

/* ==================================================
   TAFSIR MODAL
   ================================================== */
.tafsir-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.tafsir-modal[hidden] {
  display: none;
}
.tafsir-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 22, 0.55);
  backdrop-filter: blur(2px);
}
.tafsir-modal-box {
  position: relative;
  background: #fff;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 28px 28px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.tafsir-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg-muted);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-main);
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.tafsir-close:hover {
  background: #e5ebe7;
}
.tafsir-modal-box h3 {
  margin: 0 0 4px;
  color: var(--primary);
  font-size: 22px;
}
.tafsir-ref {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}
.tafsir-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-main);
}
.tafsir-source {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
}

/* ==================================================
   FIXED BOTTOM AUDIO PLAYER
   ================================================== */
#quran-bottom-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 76px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 9999;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.06);
}

#quran-bottom-player .player-left,
#quran-bottom-player .player-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

#quran-bottom-player .player-center {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  min-width: 0;
}
#player-ayah-text {
  font-family: var(--font-arabic);
  font-size: 18px;
  line-height: 1.4;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  direction: rtl;
}
#player-reciter {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
  letter-spacing: 0.3px;
}
#player-reciter strong {
  color: var(--text-muted);
  font-weight: 600;
}

#quran-bottom-player button,
#quran-bottom-player a {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--primary);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
#quran-bottom-player button:hover,
#quran-bottom-player a:hover {
  background: var(--bg-muted);
  color: var(--primary-dark);
}
#player-play {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: #fff !important;
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  display: grid;
  place-items: center;
  font-size: 16px !important;
}
#player-play:hover {
  color: #fff !important;
  opacity: 0.92;
}

/* ==================================================
   MOBILE OPTIMIZATION
   ================================================== */
@media (max-width: 768px) {
  .surah-arabic-title { font-size: 42px; }
  .surah-header-box h1 { font-size: 24px; }
  .surah-header-box { padding: 28px 20px 22px; }

  .bismillah-block { padding: 28px 18px 24px; }
  .bismillah-arabic { font-size: 34px; line-height: 1.7; }
  .bismillah-translit { font-size: 14px; }
  .bismillah-english { font-size: 14px; }
  .bismillah-block::before,
  .bismillah-block::after { width: 36px; height: 36px; }

  .ayah-card { flex-direction: column; }
  .ayah-sidebar {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 8px;
    gap: 8px;
  }
  .ayah-sidebar-separator {
    width: 1px;
    height: 22px;
    margin: 0 4px;
  }
  .ayah-card.has-sajdah {
    border-left: 1px solid var(--border-soft);
    border-top: 3px solid var(--gold);
  }
  .ayah-content { padding: 22px 20px; }
  .ayah-arabic-text { font-size: 26px; line-height: 2; }
  .ayah-end-marker { font-size: 14px; width: 30px; height: 30px; line-height: 30px; }

  .surah-actions { flex-direction: column; }
  .surah-actions button { width: 100%; justify-content: center; }

  .quran-attribution ul { grid-template-columns: 1fr; }

  #quran-bottom-player {
    height: 68px;
    padding: 0 12px;
  }
  #player-ayah-text { font-size: 14px; }
  #player-reciter { display: none; }
  #player-play { width: 38px; height: 38px; }

  .surah-card { padding: 14px 16px; }
  .surah-arabic { font-size: 22px; }
}

@media (max-width: 480px) {
  .surah-arabic-title { font-size: 36px; }
  .bismillah-arabic { font-size: 28px; }
  .ayah-arabic-text { font-size: 24px; }
}

/* ==================================================
   PRINT STYLES — clean printable Quran pages
   ================================================== */
@media print {
  .surah-actions,
  .ayah-sidebar,
  #quran-bottom-player,
  .tafsir-modal,
  .surah-back-btn { display: none !important; }

  .ayah-card {
    page-break-inside: avoid;
    border: none;
    box-shadow: none;
    margin-bottom: 16px;
  }
  .bismillah-block {
    box-shadow: none;
    border: 1px solid #ccc;
    page-break-after: avoid;
  }
  .ayah-content { padding: 8px 0; }
  body { background: #fff; }
}

/* ==================================================
   ACCESSIBILITY — reduced motion support
   ================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
