/*
 * SPDX-License-Identifier: MIT
 * Copyright (c) 2026 Clove Nytrix Doughmination Twilight
 *
 * ===== /admin — STANDALONE 2001 RETRO STYLESHEET =====
 *
 * This file is loaded ONLY by the /admin route (via partials/admin-header.ejs).
 * style.css is NOT loaded on /admin, and admin.css is NOT loaded anywhere
 * else. That means:
 *   - No selector specificity wars with the modern site.
 *   - No risk of bleeding into /, /habitats, /events, /faq, etc.
 *   - No need for "!important" anywhere.
 *
 * Class names are all "retro-*" so even by accident they can't collide
 * with the modern markup, which uses .navbar / .page-hero / .footer-inner
 * etc.
 *
 * The aesthetic deliberately throws back to the GeoCities / "Best viewed
 * in IE 6" / Comic Sans / under-construction-sash era.
 */

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* ---------- ROOT BODY ---------- */
.retro-body {
  min-height: 100vh;
  background-color: #008080;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 0, 0.35) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.6) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 80%, rgba(255, 0, 255, 0.4) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 20%, rgba(0, 255, 255, 0.4) 0 2px, transparent 3px),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.04) 0 2px, transparent 2px 8px),
    linear-gradient(180deg, #008080 0%, #4040a0 50%, #008080 100%);
  background-size:
    120px 120px,
    160px 160px,
    140px 140px,
    180px 180px,
    100% 100%,
    100% 100%;
  background-attachment: fixed;
  color: #ffff00;
  font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", cursive;
  text-shadow:
    1px 1px 0 #000,
    0 0 2px #000;
  word-break: break-word;
}

/* ---------- SKIP LINK ---------- */
.retro-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background: #ffff00;
  color: #000;
  padding: 6px 10px;
  border: 2px solid #000;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  font-weight: bold;
}
.retro-skip:focus {
  position: fixed;
  left: 8px;
  top: 8px;
  width: auto;
  height: auto;
  z-index: 99999;
}

/* ---------- LINKS (classic blue / purple visited) ---------- */
.retro-body a {
  color: #0000ee;
  text-decoration: underline;
  font-weight: bold;
  background: transparent;
  text-shadow: none;
}
.retro-body a:visited {
  color: #551a8b;
}
.retro-body a:hover {
  color: #ff0000;
  background: #ffff00;
}
.retro-body a:active {
  color: #ff0000;
}

/* ---------- TOP MARQUEE BANNER ---------- */
.retro-banner {
  background: linear-gradient(180deg, #000080 0%, #1084d0 100%);
  color: #ffff00;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #404040;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 4px 0;
  text-shadow: 1px 1px 0 #000;
  letter-spacing: 1px;
  overflow: hidden;
}
.retro-banner marquee {
  display: block;
}

/* ---------- NAV ---------- */
.retro-nav {
  background: #c0c0c0;
  background-image: linear-gradient(180deg, #e0e0e0 0%, #a0a0a0 100%);
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #404040;
  border-bottom: 3px solid #404040;
  box-shadow: 0 2px 0 #000;
  padding: 8px 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.retro-brand {
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #ff00ff !important;
  text-decoration: none !important;
  text-shadow:
    1px 1px 0 #ffff00,
    2px 2px 0 #000;
  white-space: nowrap;
}
.retro-brand:hover {
  background: transparent !important;
  color: #ff00ff !important;
}

.retro-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.retro-nav-links a {
  display: inline-block;
  background: #ffffff;
  color: #0000ee;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  padding: 4px 10px;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.88rem;
}
.retro-nav-links a:hover {
  background: #ffff00;
  color: #ff0000;
}
.retro-nav-links a.retro-active {
  background: #000080;
  color: #ffffff;
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

/* ---------- MAIN ---------- */
.retro-main {
  padding: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- HERO CARD ---------- */
.retro-hero {
  position: relative;
  background: #ffffff;
  color: #000000;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  border-right: 3px solid #808080;
  border-bottom: 3px solid #808080;
  outline: 2px solid #000;
  margin: 24px auto;
  padding: 24px;
  max-width: 720px;
  text-align: center;
  box-shadow: 6px 6px 0 #000;
}

/* "Under construction" sash glued to the top */
.retro-hero::before {
  content: "🚧 UNDER CONSTRUCTION 🚧 UNDER CONSTRUCTION 🚧";
  display: block;
  background: repeating-linear-gradient(45deg, #ffff00 0 14px, #000000 14px 28px);
  color: #ff0000;
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  padding: 4px 0;
  margin: -24px -24px 18px -24px;
  text-shadow:
    1px 1px 0 #ffffff,
    2px 2px 0 #000000;
  white-space: nowrap;
  overflow: hidden;
  border-bottom: 2px solid #000;
  pointer-events: none;
}

.retro-h1 {
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  color: #ff0000;
  background: linear-gradient(
    90deg,
    #ff0000 0%,
    #ff8000 16%,
    #ffff00 33%,
    #00ff00 50%,
    #00ffff 66%,
    #0000ff 83%,
    #ff00ff 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: retro-rainbow 6s linear infinite;
  text-shadow: none;
}

@keyframes retro-rainbow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.retro-lead {
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-size: 1rem;
  color: #000080;
  margin: 8px 0;
  text-shadow: none;
}
.retro-lead::before {
  content: "★彡 ";
  color: #ff00ff;
}
.retro-lead::after {
  content: " 彡★";
  color: #ff00ff;
}

.retro-tinyprint {
  font-family: "Comic Sans MS", cursive;
  color: #ff00ff;
  font-size: 0.85rem;
  font-style: italic;
  margin: 6px 0 0 0;
  text-shadow: none;
}

/* The hit-counter style timer */
.retro-timer-line {
  font-family: "Courier New", Courier, monospace;
  background: #000000;
  color: #00ff00;
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  display: inline-block;
  padding: 8px 14px;
  margin: 12px auto;
  text-shadow: 0 0 4px #00ff00;
  letter-spacing: 1px;
  max-width: 100%;
}

.retro-timer-value {
  font-family: "Courier New", Courier, monospace;
  color: #ffff00;
  background: #000000;
  padding: 0 4px;
  text-shadow: 0 0 6px #ffff00;
  border: 1px dashed #00ff00;
}

.retro-timer-hint {
  color: #ff00ff;
  font-family: "Comic Sans MS", cursive;
  font-style: italic;
  text-shadow: none;
}

/* ---------- VIDEO FRAME (Windows Media Player vibe) ---------- */
.retro-video {
  display: flex;
  justify-content: center;
  margin: 32px auto;
}

.retro-video-frame {
  background: #c0c0c0;
  border-top: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  border-right: 4px solid #404040;
  border-bottom: 4px solid #404040;
  padding: 4px 4px 6px 4px;
  box-shadow: 8px 8px 0 #000;
  width: min(620px, calc(100% - 16px));
  max-width: 100%;
}

.retro-video-titlebar {
  background: linear-gradient(90deg, #000080 0%, #1084d0 100%);
  color: #ffffff;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 4px 8px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  text-shadow: none;
}

.retro-titlebar-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.retro-titlebar-controls {
  display: inline-flex;
  gap: 2px;
  flex-shrink: 0;
}
.retro-titlebar-controls span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 16px;
  background: #c0c0c0;
  color: #000;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #404040;
  border-bottom: 1px solid #404040;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  font-size: 0.7rem;
  line-height: 1;
}

.retro-video-el {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  background: #000;
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

/* ---------- FINE PRINT (yellow guestbook) ---------- */
.retro-fineprint {
  background: #ffffcc;
  color: #000000;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  border-right: 3px solid #808080;
  border-bottom: 3px solid #808080;
  outline: 2px solid #000;
  max-width: 720px;
  margin: 32px auto;
  padding: 20px;
  box-shadow: 6px 6px 0 #000;
  font-family: "Times New Roman", Times, serif;
  text-shadow: none;
}

.retro-fineprint-h {
  font-family: "Impact", "Arial Black", sans-serif;
  color: #ff0000;
  background: #ffff00;
  border: 2px ridge #ff0000;
  display: inline-block;
  padding: 4px 12px;
  margin: 0 0 12px 0;
  text-shadow: 1px 1px 0 #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.retro-fineprint-h::before {
  content: "<<< ";
}
.retro-fineprint-h::after {
  content: " >>>";
}

.retro-fineprint p {
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #000080;
  margin: 0 0 10px 0;
  padding-bottom: 6px;
  border-bottom: 1px dotted #888;
  text-shadow: none;
}
.retro-fineprint p:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* ---------- FOOTER ---------- */
.retro-footer {
  background: #c0c0c0;
  background-image: linear-gradient(180deg, #d4d0c8 0%, #808080 100%);
  color: #000080;
  border-top: 3px solid #ffffff;
  border-bottom: 3px solid #404040;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  padding: 16px;
  margin-top: 24px;
  text-shadow: none;
}

.retro-rule {
  height: 4px;
  border: none;
  background: repeating-linear-gradient(90deg, #ff00ff 0 8px, #ffff00 8px 16px, #00ffff 16px 24px);
  margin: 0 0 14px 0;
}

.retro-footer-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffcc;
  color: #000080;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  margin-bottom: 14px;
  box-shadow: 4px 4px 0 #000;
}
.retro-footer-table td {
  vertical-align: top;
  padding: 12px;
  border: 1px dotted #888;
}

.retro-h4 {
  font-family: "Impact", "Arial Black", sans-serif;
  color: #ff00ff;
  background: #ffff00;
  border: 2px ridge #ff0000;
  display: inline-block;
  padding: 2px 8px;
  margin: 0 0 8px 0;
  letter-spacing: 1px;
  text-shadow: none;
}

.retro-footer-p {
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  color: #000080;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 4px 0;
  text-shadow: none;
}
.retro-footer-p--small {
  font-size: 0.75rem;
  font-style: italic;
  color: #404040;
}

.retro-counter {
  font-family: "Courier New", Courier, monospace;
  background: #000;
  color: #00ff00;
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  display: inline-block;
  padding: 4px 10px;
  letter-spacing: 4px;
  font-size: 1.15rem;
  text-shadow: 0 0 4px #00ff00;
}

/* Badge row — those tiny 88x31 GeoCities buttons */
.retro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 10px 0 14px 0;
}
.retro-badge {
  display: inline-block;
  padding: 4px 8px;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-shadow: none;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  white-space: nowrap;
}
.retro-badge--ie {
  background: #1084d0;
  color: #ffffff;
}
.retro-badge--ns {
  background: #00aa00;
  color: #ffffff;
}
.retro-badge--html {
  background: #ffff00;
  color: #ff0000;
}
.retro-badge--made {
  background: #ff00ff;
  color: #ffffff;
}

.retro-cap {
  text-align: center;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.85rem;
  color: #ffffff;
  background: #000080;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  margin: 6px auto;
  max-width: 720px;
  padding: 6px 8px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 #000;
  word-break: break-word;
}
.retro-cap a {
  color: #ffff00;
}
.retro-cap a:hover {
  background: #ffff00;
  color: #000080;
}

.retro-cap--blink {
  animation: retro-blink 1.4s steps(2, start) infinite;
}
@keyframes retro-blink {
  to {
    visibility: hidden;
  }
}

/* ---------- PAGE EXIT (added by main.js on link click) ----------
   main.js adds .page-leaving to <body> for 180ms before navigating.
   Without a transition rule, the page just hangs visually. Quick fade
   keeps the click-to-navigate feel smooth. */
.retro-body {
  transition: opacity 180ms ease;
}
.retro-body.page-leaving {
  opacity: 0;
}

/* ---------- CURSOR SPARKLE TRAIL (injected by main.js) ----------
   main.js spawns div.cursor-bubble elements with inline width/height/
   left/top and listens for animationend to remove them. We have to
   give them position:fixed and an animation here, otherwise they'd
   accumulate forever (animationend never fires) and leak memory.

   Retro re-skin: 2001 sparkle/star instead of soft pink bubble. */
.cursor-bubble {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    #ffffff 0%,
    #ffff00 35%,
    #ff00ff 70%,
    transparent 100%
  );
  box-shadow:
    0 0 6px #ffff00,
    0 0 12px #ff00ff;
  z-index: 9999;
  opacity: 0;
  will-change: transform, opacity;
  animation: retro-sparkle-rise 1400ms ease-out forwards;
}
@keyframes retro-sparkle-rise {
  0% {
    transform: translate(0, 0) scale(0.4);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--drift, 0px), -80px) scale(1.1);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cursor-bubble {
    display: none;
  }
}
@media (hover: none) {
  .cursor-bubble {
    display: none;
  }
}

/* ---------- DVD-SCREENSAVER BOUNCER (injected by main.js) ----------
   The img.dvd-bouncer is appended to <body> at runtime; it positions
   itself via inline transform but needs position:fixed to anchor. */
.dvd-bouncer {
  position: fixed;
  top: 0;
  left: 0;
  width: 140px;
  height: auto;
  pointer-events: none;
  z-index: 9000;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(2px 2px 0 #000);
}
.dvd-bouncer--sparkle {
  animation: retro-dvd-corner 900ms ease-out;
}
@keyframes retro-dvd-corner {
  0% {
    filter: drop-shadow(2px 2px 0 #000);
  }
  50% {
    filter: drop-shadow(0 0 18px #ffff00) drop-shadow(0 0 36px #ff00ff);
  }
  100% {
    filter: drop-shadow(2px 2px 0 #000);
  }
}
@media (prefers-reduced-motion: reduce) {
  .dvd-bouncer {
    display: none;
  }
}
@media (max-width: 640px) {
  .dvd-bouncer {
    width: 90px;
  }
}

/* ---------- CLICK-TRAP OVERLAY (created at runtime by main.js) ---------- */
.admin-click-trap {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: transparent;
  cursor: pointer;
  transition: background-color 600ms ease;
}
.admin-click-trap--show-hint {
  background: rgba(0, 0, 64, 0.45);
}
.admin-click-trap--show-hint::before {
  content: "►  Click anywhere to begin  ◄";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 22px;
  background: #c0c0c0;
  background-image: linear-gradient(180deg, #e0e0e0, #a0a0a0);
  color: #000080;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 1px;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  border-right: 3px solid #404040;
  border-bottom: 3px solid #404040;
  box-shadow: 4px 4px 0 #000;
  white-space: nowrap;
}

/* ---------- SCROLLBAR (Win98 chrome) ---------- */
.retro-body::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}
.retro-body::-webkit-scrollbar-track {
  background: repeating-conic-gradient(#c0c0c0 0% 25%, #a0a0a0 0% 50%) 0 0 / 4px 4px;
}
.retro-body::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
}
.retro-body {
  scrollbar-color: #c0c0c0 #808080;
  scrollbar-width: auto;
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  .retro-h1 {
    animation: none;
  }
  .retro-cap--blink {
    animation: none;
  }
  .retro-banner marquee {
    /* let UA decide; <marquee> doesn't honor this either way */
  }
}

/* ---------- TABLET (max-width: 768px) ---------- */
@media (max-width: 768px) {
  .retro-banner {
    font-size: 0.78rem;
    letter-spacing: 0;
  }

  .retro-nav {
    padding: 8px;
    gap: 6px 10px;
  }
  .retro-brand {
    font-size: 1.2rem;
    flex: 1 0 100%;
  }
  .retro-nav-links {
    gap: 4px;
  }
  .retro-nav-links a {
    font-size: 0.78rem;
    padding: 3px 6px;
  }

  .retro-main {
    padding: 8px;
  }

  .retro-hero {
    margin: 16px auto;
    padding: 18px;
    box-shadow: 4px 4px 0 #000;
  }
  .retro-hero::before {
    margin: -18px -18px 14px -18px;
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  .retro-h1 {
    font-size: 1.7rem;
    letter-spacing: 1px;
  }
  .retro-lead {
    font-size: 0.95rem;
  }

  .retro-timer-line {
    font-size: 0.85rem;
    padding: 6px 10px;
    line-height: 1.5;
    display: block;
  }

  .retro-video {
    margin: 20px auto;
  }
  .retro-video-titlebar {
    font-size: 0.72rem;
    padding: 3px 6px;
  }

  .retro-fineprint {
    margin: 20px auto;
    padding: 14px;
    box-shadow: 4px 4px 0 #000;
  }
  .retro-fineprint-h {
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 3px 8px;
  }

  /* Stack the footer columns */
  .retro-footer-table,
  .retro-footer-table tbody,
  .retro-footer-table tr,
  .retro-footer-table td {
    display: block;
    width: 100%;
  }
  .retro-footer-table td {
    border: 1px dotted #888;
    border-bottom: none;
  }
  .retro-footer-table tr td:last-child {
    border-bottom: 1px dotted #888;
  }

  .retro-cap {
    font-size: 0.7rem;
    letter-spacing: 0;
    padding: 6px;
  }
}

/* ---------- PHONE (max-width: 480px) ---------- */
@media (max-width: 480px) {
  .retro-hero {
    padding: 14px;
    margin: 12px 6px;
  }
  .retro-hero::before {
    margin: -14px -14px 10px -14px;
    font-size: 0.65rem;
    letter-spacing: 0;
  }
  .retro-h1 {
    font-size: 1.35rem;
    letter-spacing: 0;
  }
  .retro-lead {
    font-size: 0.88rem;
  }
  .retro-timer-line {
    font-size: 0.75rem;
    padding: 5px 8px;
  }
  .retro-fineprint {
    padding: 10px;
    margin: 14px 6px;
  }
  .retro-fineprint-h {
    font-size: 0.9rem;
  }
  .retro-fineprint p {
    font-size: 0.88rem;
    line-height: 1.4;
  }
  .retro-cap {
    font-size: 0.6rem;
    white-space: normal;
    line-height: 1.4;
  }
  .retro-counter {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }
}

/* ---------- ULTRA-NARROW SAFETY (max-width: 360px) ---------- */
@media (max-width: 360px) {
  .retro-h1 {
    font-size: 1.15rem;
  }
  .retro-hero::before {
    font-size: 0.55rem;
  }
}
