/* ==========================================================================
   Socialo TV v3 — plain HTML/CSS/JS port of the v2 Flutter app.
   Sizes/colors/timings mirror lib/config/theme.dart and the v2 widgets 1:1.
   ========================================================================== */

:root {
  /* Neutral colors (constant) */
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --text: #1F2937;
  --subtle: #F3F4F6;
  --border: #E5E7EB;

  /* Accent colors — overwritten from the API primaryColor (see theme.js part of app.js) */
  --primary: #B91C1C;
  --dark: #8B1515;
  --light: #DC7B7B;
  --card: #BF3B3B;
  --grad-a: #B91C1C;
  --grad-b: #991B1B;
  --card-grad-a: #BF3B3B;
  --card-grad-b: #A83232;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  font-family: 'Inter', sans-serif;
  cursor: none;
  user-select: none;
  -webkit-user-select: none;
}

[hidden] { display: none !important; }

img { display: block; -webkit-user-drag: none; }

/* Material Symbols Rounded (≈ Flutter Icons.*_rounded) */
.msr {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  -webkit-font-smoothing: antialiased;
}
.msr.outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

.center-fill {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Background watermark (cover logo, right-centered) ================= */
#watermark {
  position: fixed;
  top: 17.5%;
  right: 0;
  width: 32%;
  height: 65%;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}
#watermark img { width: 100%; height: 100%; object-fit: contain; }

/* ===== Main layout ======================================================== */
#layout {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 1;
}

#carousel {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  touch-action: pan-y; /* horizontal swipes drive the carousel */
}

#track {
  display: flex;
  height: 100%;
  will-change: transform;
}
#track.animating { transition: transform 800ms cubic-bezier(0.42, 0, 0.58, 1); }

.slide {
  position: relative;
  width: 100%;
  height: 100%;
  flex: none;
  overflow: hidden;
}

/* CircularProgressIndicator */
.spinner {
  width: 36px;
  height: 36px;
  border: 4px solid color-mix(in srgb, var(--primary) 20%, transparent);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
.spinner.small { width: 26px; height: 26px; border-width: 3px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== "You must input a valid TV code" ================================== */
#no-code {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg);
  z-index: 50;
}

/* ===== Announcement banner =============================================== */
#banner {
  width: 100%;
  padding: 8px 0;
  background: color-mix(in srgb, var(--primary) 6%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
}
.ban-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
}
.ban-icon { font-size: 28px; color: color-mix(in srgb, var(--primary) 70%, transparent); }
.ban-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: color-mix(in srgb, var(--primary) 85%, transparent);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ban-marquee {
  height: 32px;
  margin-top: 4px;
  overflow: hidden;
  position: relative;
}
.ban-marquee-inner {
  display: inline-flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  will-change: transform;
  font-size: 22px;
  font-weight: 500;
  color: color-mix(in srgb, var(--text) 75%, transparent);
}
.ban-marquee-inner .gap { display: inline-block; width: 200px; }

/* ===== Bottom bar ========================================================= */
#bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 32px;
  background: var(--white);
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.04);
  z-index: 2;
}
.bb-date, .bb-time { display: flex; align-items: center; min-width: 0; }
.bb-icon {
  font-size: 18px;
  color: color-mix(in srgb, var(--primary) 50%, transparent);
  margin-right: 10px;
}
#bb-date-text {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: color-mix(in srgb, var(--text) 70%, transparent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#bb-hm, #bb-s {
  font-family: 'Space Mono', monospace;
  font-size: 24px;
  font-weight: 700;
  color: color-mix(in srgb, var(--text) 70%, transparent);
}
#bb-s { color: color-mix(in srgb, var(--text) 30%, transparent); }

/* Next slide chip */
#next-chip { display: flex; align-items: center; min-width: 0; }
.nc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.4px;
  color: color-mix(in srgb, var(--primary) 70%, transparent);
  margin-right: 6px;
}
.nc-dots { display: inline-flex; margin-right: 10px; }
.nc-dots i {
  width: 4px;
  height: 4px;
  margin: 0 2px;
  border-radius: 50%;
  background: var(--primary);
  animation: dot-pulse 1.4s linear infinite;
}
.nc-dots i:nth-child(2) { animation-delay: 0.21s; }
.nc-dots i:nth-child(3) { animation-delay: 0.42s; }
@keyframes dot-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.nc-icon { font-size: 14px; color: var(--primary); margin-right: 6px; }
.nc-title-box { max-width: 260px; overflow: hidden; }
#nc-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--text) 80%, transparent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#nc-title.slide-in { animation: nc-slide-in 400ms ease-out both; }
@keyframes nc-slide-in {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== Entrance animations (animate_do equivalents) ======================
   Elements start hidden; when the slide first becomes visible the JS adds
   .animate on the slide and the keyed animations run once. */
.slide .anim { opacity: 0; }
.slide.animate .a-fi   { animation: fadeIn      var(--dur, 800ms) cubic-bezier(0.215, 0.61, 0.355, 1) var(--delay, 0ms) both; }
.slide.animate .a-fid  { animation: fadeInDown  var(--dur, 500ms) cubic-bezier(0.215, 0.61, 0.355, 1) var(--delay, 0ms) both; }
.slide.animate .a-fiu  { animation: fadeInUp    var(--dur, 500ms) cubic-bezier(0.215, 0.61, 0.355, 1) var(--delay, 0ms) both; }
.slide.animate .a-fil  { animation: fadeInLeft  var(--dur, 500ms) cubic-bezier(0.215, 0.61, 0.355, 1) var(--delay, 0ms) both; }
.slide.animate .a-fir  { animation: fadeInRight var(--dur, 400ms) cubic-bezier(0.215, 0.61, 0.355, 1) var(--delay, 0ms) both; }
@keyframes fadeIn      { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown  { from { opacity: 0; transform: translateY(-100px); } to { opacity: 1; transform: none; } }
@keyframes fadeInUp    { from { opacity: 0; transform: translateY(100px); }  to { opacity: 1; transform: none; } }
@keyframes fadeInLeft  { from { opacity: 0; transform: translateX(-100px); } to { opacity: 1; transform: none; } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(100px); }  to { opacity: 1; transform: none; } }

/* ===== Shared slide header (MENÚ / CUMPLEAÑOS / PRÓXIMOS) ================ */
.sl { background: var(--bg); border-bottom: 4px solid var(--primary); }
.sl-pad {
  padding: 36px 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sl-header { display: flex; align-items: center; }
.sl-header .line {
  flex: 1;
  height: 1.5px;
  background: color-mix(in srgb, var(--primary) 35%, transparent);
}
.sl-header .mid {
  display: flex;
  align-items: center;
  padding: 0 28px;
}
.sl-header .logo { width: 96px; height: 96px; margin-right: 24px; }
.sl-header .logo .rimg, .sl-header .logo img { width: 100%; height: 100%; object-fit: contain; }
.sl-header .titles { text-align: center; }
.sl-header .kicker {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 14px;
  line-height: 1;
  color: var(--primary);
}
.sl-header .big {
  margin-top: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 76px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: var(--text);
}

.residence-mark {
  margin-top: 16px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--text);
}

/* ===== Menu slide ========================================================= */
.menu-body { flex: 1; min-height: 0; display: flex; align-items: stretch; margin-top: 12px; }
.menu-col {
  flex: 1;
  min-width: 0;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.menu-col .sec-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 8px;
  color: var(--primary);
  text-transform: uppercase;
}
.menu-col .sec-rule { width: 36px; height: 2px; background: var(--primary); margin: 12px 0 28px; }
.menu-col .dish {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
  padding: 10px 0;
}
.menu-vdiv {
  width: 1px;
  margin: 60px 0;
  background: color-mix(in srgb, var(--primary) 25%, transparent);
}

/* ===== Birthdays slide ==================================================== */
.bd-body {
  flex: 1;
  min-height: 0;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bd-list {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bd-row {
  display: flex;
  align-items: baseline;
  padding: 12px 0;
}
.bd-name {
  flex: 1;
  min-width: 0;
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 24px;
}
.bd-date {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-style: italic;
  line-height: 1.2;
  color: var(--primary);
}

/* ===== Events flying slide =============================================== */
.fly-stage { position: absolute; inset: 0; overflow: hidden; }
.fly-empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-style: italic;
  color: color-mix(in srgb, var(--text) 60%, transparent);
}
.fly-overlay { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; }
.fly-overlay .spacer { flex: 1; }
.flyer {
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 18px 36px -4px rgba(0, 0, 0, 0.14);
  will-change: transform;
}
.flyer-clip {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.flyer-clip .rimg { position: absolute; inset: 0; }
.flyer-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 20px 18px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.flyer-date {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}
.flyer-rule { width: 28px; height: 1px; background: rgba(255, 255, 255, 0.7); margin: 8px 0; }
.flyer-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.15;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Event slide ======================================================== */
.slide-event { display: flex; align-items: stretch; }
.ev-img-col {
  height: 100%;
  aspect-ratio: 1 / 1;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  margin-right: 18px;
}
.ev-img-stack { position: relative; width: 100%; height: 100%; max-width: 100%; }
.ev-img-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 4px 20px 1px rgba(0, 0, 0, 0.15);
}
.ev-img-card .rimg { position: absolute; inset: 0; }
.ev-img-ph {
  position: absolute;
  inset: 0;
  background: #EEEEEE;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ev-img-ph .msr { font-size: 80px; color: #BDBDBD; }

/* Points stamp (starburst, half-out top-left) */
.pts-stamp {
  position: absolute;
  left: -30px;
  top: -30px;
  width: 100px;
  height: 100px;
  transform: rotate(-10.3deg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.pts-stamp svg { position: absolute; inset: 0; filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3)); }
.pts-stamp .pts-num {
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  text-align: center;
}
.pts-stamp .pts-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

/* QR badge */
.qr-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.qr-flash { display: flex; flex-direction: column; align-items: center; animation: qr-pulse 1.2s ease-in-out infinite alternate; }
@keyframes qr-pulse { from { opacity: 1; } to { opacity: 0.3; } }
.qr-label {
  padding: 6px 14px;
  background: var(--primary);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--white);
}
.qr-tri {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid var(--primary);
}
.qr-box {
  margin-top: 4px;
  padding: 12px;
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 26px;
}
.qr-box img { width: 100px; height: 100px; }

/* Event details column */
.ev-details {
  flex: 1;
  min-width: 0;
  margin-right: 48px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.ev-shared { display: flex; align-items: stretch; margin-bottom: 18px; }
.ev-shared .bar { width: 5px; background: var(--primary); margin-right: 18px; }
.ev-shared .lbl {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1;
  color: color-mix(in srgb, var(--text) 55%, transparent);
}
.ev-shared .res {
  margin-top: 6px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 1.6px;
  line-height: 1.1;
  color: var(--primary);
}
.ev-tags { display: flex; flex-wrap: wrap; gap: 8px 10px; margin-bottom: 20px; }
.ev-tag {
  padding: 8px 18px;
  background: var(--primary);
  border-radius: 24px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--white);
  text-transform: uppercase;
}
.ev-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 100%;
}
.ev-card {
  margin-top: 32px;
  padding: 8px 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 22px;
  max-width: 100%;
}
.ev-row { display: flex; align-items: center; padding: 16px 0; }
.ev-row + .ev-row { border-top: 1px solid var(--border); }
.ev-row .ic {
  flex: none;
  padding: 10px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  border-radius: 12px;
  margin-right: 18px;
  display: flex;
}
.ev-row .ic .msr { font-size: 26px; color: var(--primary); }
.ev-row .val {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Home slide (mendel) =============================================== */
.slide-home { border-bottom: 4px solid var(--primary); }
.home-grid {
  height: 100%;
  padding: 48px 56px 32px;
  display: flex;
  align-items: stretch;
}
.home-left { flex: 5; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.home-right { flex: 4; min-width: 0; margin-left: 48px; display: flex; flex-direction: column; }
.home-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 2px;
  color: var(--primary);
}
.home-left .home-heading { margin-bottom: 20px; }
.info-card {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 14px;
  background: var(--white);
  border: 2px solid color-mix(in srgb, var(--primary) 20%, transparent);
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.info-card .ic {
  flex: none;
  padding: 10px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  border-radius: 12px;
  margin-right: 16px;
  display: flex;
}
.info-card .ic .msr { font-size: 26px; color: var(--primary); }
.info-card .t {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
}
.info-card .s {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: color-mix(in srgb, var(--text) 60%, transparent);
}
.home-menu-title { margin: 16px 0 20px; }
.home-menu-row { flex: 1; min-height: 0; width: 100%; display: flex; align-items: stretch; gap: 16px; }
.menu-card {
  flex: 1;
  min-width: 0;
  padding: 24px;
  background: linear-gradient(135deg, var(--card-grad-a), var(--card-grad-b));
  border-radius: 18px;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--primary) 30%, transparent);
}
.menu-card .t {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 12px;
}
.menu-card .d {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.home-right .home-heading { text-align: center; margin-bottom: 24px; }
.bday-card-wrap { flex: 1; min-height: 0; display: flex; flex-direction: column; }
.bday-card-wrap:not(:last-child) { padding-bottom: 10px; }
.bday-card {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--card-grad-a), var(--card-grad-b));
  border-radius: 14px;
  box-shadow: 0 4px 10px color-mix(in srgb, var(--primary) 25%, transparent);
}
.bday-card .n {
  flex: 1;
  min-width: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 12px;
}
.bday-card .d {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.home-logo {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 110px;
  height: 110px;
  pointer-events: none;
}
.home-logo .rimg, .home-logo img { width: 100%; height: 100%; object-fit: contain; }

/* ===== Custom slide ======================================================= */
.slide-custom { border-bottom: 4px solid var(--primary); }
.slide-custom .rimg { width: 100%; height: 100%; }
.slide-custom img { width: 100%; height: 100%; object-fit: contain; }

/* ===== Retrying network image ============================================ */
.rimg { position: relative; overflow: hidden; }
.rimg img { width: 100%; height: 100%; }
.rimg.cover img { object-fit: cover; }
.rimg.contain img { object-fit: contain; }
.rimg .ph {
  position: absolute;
  inset: 0;
  background: #EEEEEE;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.rimg .ph .msr { font-size: 60px; color: #BDBDBD; }
.rimg .ph .e1 { font-size: 12px; color: #757575; }
.rimg .ph .e2 { font-size: 10px; color: #9E9E9E; }

/* ===== Stale data warning ================================================= */
#stale {
  position: fixed;
  top: 8px;
  right: 12px;
  display: flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(178, 106, 0, 0.10);
  border-radius: 20px;
  z-index: 40;
}
.stale-icon { font-size: 16px; color: rgba(178, 106, 0, 0.85); margin-right: 6px; }
#stale-text { font-size: 13px; font-weight: 600; color: #B26A00; }

/* ===== Diagnostics overlay (?debug=true) ================================= */
#diag {
  position: fixed;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 8px;
  font-family: monospace;
  font-size: 13px;
  font-weight: 600;
  color: #7CFC8A;
  white-space: pre;
  pointer-events: none;
  z-index: 60;
}
