﻿/* ---------- Rows ---------- */

.row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px 8px 16px;
  border-radius: 14px;
  position: relative;
}
.row .cover {
  width: 52px; height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--elevated);
}
.row .meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.row .title { font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.row .sub { font-size: 11px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.row .actions { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
/* Run cards share the row anatomy (runcards.js mirrors it on purpose, so a
 * track finishing is a small visual step instead of a layout swap). */
.runcard .meta, .failcard .meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.runcard .title, .failcard .title { font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.runcard .sub, .failcard .sub { font-size: 11px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.row.playing .cover { outline: 2px solid var(--violet); outline-offset: 1px; }

/* Playlist reorder (playlist page only): drag grip + dragged row elevation. */
.rowhandle { color: var(--text-2); opacity: 0.75; }
.rowhandle svg { width: 18px; height: 18px; }
.row.dragging { z-index: 5; background: var(--surface); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45); }

.iconbtn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  flex-shrink: 0;
}
.iconbtn svg { width: 19px; height: 19px; }
.iconbtn.hearted { color: var(--heart); }
.iconbtn.heartbtn, .iconbtn.fp-like { transition: color 0.18s ease; }
.iconbtn.pop, .iconbtn.unpop { position: relative; }
.heartbtn svg { transition: transform 0.15s ease; }
.heartbtn:active svg { transform: scale(0.8); }

/* Like: springy pop + expanding ring + particle burst (transform/opacity only). */
.iconbtn.pop svg { animation: heartpop 0.6s cubic-bezier(0.2, 1.4, 0.4, 1) both; }
@keyframes heartpop {
  0% { transform: scale(0) rotate(-12deg); }
  38% { transform: scale(1.32) rotate(3deg); }
  62% { transform: scale(0.88) rotate(-2deg); }
  82% { transform: scale(1.08); }
  100% { transform: scale(1) rotate(0deg); }
}
.iconbtn.pop::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 44px; height: 44px;
  margin: -22px 0 0 -22px;
  border-radius: 50%;
  border: 2px solid var(--heart);
  pointer-events: none;
  opacity: 0;
  animation: heartring 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
@keyframes heartring {
  0% { transform: scale(0.25); opacity: 0.85; }
  100% { transform: scale(1.1); opacity: 0; }
}
.iconbtn.pop::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 5px; height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  pointer-events: none;
  animation: heartburst 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
@keyframes heartburst {
  0% {
    box-shadow:
      0 0 0 0 var(--heart),
      0 0 0 0 var(--violet),
      0 0 0 0 var(--heart),
      0 0 0 0 var(--violet),
      0 0 0 0 var(--heart),
      0 0 0 0 var(--violet);
  }
  100% {
    box-shadow:
      27px -19px 0 -2px transparent,
      -27px -19px 0 -2px transparent,
      23px 17px 0 -2px transparent,
      -23px 17px 0 -2px transparent,
      0 -31px 0 -1px transparent,
      0 29px 0 -1px transparent;
  }
}
/* Unlike: soft shrink back. */
.iconbtn.unpop svg { animation: heartunpop 0.3s ease-out; }
@keyframes heartunpop {
  0% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.iconbtn.small svg { width: 17px; height: 17px; }

/* first-seen marker: a violet dot on the cover corner that persists until the
 * song is PLAYED (claim in player.js), so it survives re-renders and screens */
.row.fresh::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 60px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 2.5px var(--bg);
  pointer-events: none;
  z-index: 1;
  animation: freshdot 0.35s cubic-bezier(0.2, 1.4, 0.4, 1) both;
}
@keyframes freshdot {
  from { transform: scale(0); }
}

/* entrance for rows inserted live (song-saved) */
.row.entering { animation: rowenter 0.45s cubic-bezier(0.2, 0.8, 0.3, 1); }
@keyframes rowenter {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
}

/* ---------- Cards / carousels ---------- */

.carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2px 20px 6px;
}
.card {
  scroll-snap-align: start;
  width: 150px;
  flex-shrink: 0;
  text-align: left;
}
.card .cover {
  width: 150px; height: 150px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--elevated);
  display: block;
}
.card .title { margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card .sub { font-size: 11px; color: var(--text-2); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.sectiontitle { padding: 4px 20px 2px; }
.sectiontitle .t { font-size: 16px; font-weight: 800; color: var(--text); }
.sectiontitle .s { font-size: 11px; color: var(--text-2); margin-top: 1px; }

/* ---------- Chips ---------- */

.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 20px 6px;
}
.chip {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 50px;
  background: var(--elevated);
  color: var(--text-2);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid transparent;
}
.chip.on {
  background: rgba(139, 92, 246, 0.16);
  border-color: var(--violet);
  color: var(--text);
}

/* ---------- Headers ---------- */

.screenheader {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 12px 4px 20px;
}
.screenheader h1 { font-size: 22px; font-weight: 800; flex: 1; letter-spacing: -0.2px; }
.screenheader .iconbtn { width: 40px; height: 40px; }
.screenheader .iconbtn svg { width: 21px; height: 21px; }

.backbtn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
}
.backbtn svg { width: 22px; height: 22px; }

/* ---------- Segmented tabs ---------- */

.seg {
  display: flex;
  margin: 10px 20px 6px;
  background: var(--surface);
  border-radius: 12px;
  padding: 3px;
}
.seg button {
  flex: 1;
  padding: 8px 0;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
}
.seg button.on { background: var(--elevated); color: var(--text); }

/* ---------- Buttons ---------- */

.solidbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  padding: 13px 26px;
}
/* svg() emits a bare viewBox with no intrinsic size - inside a flexed/full
   width solid button an unsized SVG balloons to fill it (giant-icon bug). */
.solidbtn svg { width: 16px; height: 16px; flex-shrink: 0; }
.solidbtn.full { width: 100%; }
.solidbtn:disabled { opacity: 0.55; }

.ghostbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  padding: 12px 22px;
  background: var(--surface);
}

.followbtn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--violet);
  color: var(--text);
}
.followbtn.on { background: rgba(139, 92, 246, 0.18); }

.dangerbtn {
  color: var(--danger);
  font-weight: 700;
  padding: 12px;
  width: 100%;
  text-align: center;
  font-size: 14px;
}

/* ---------- Sheets / dialogs / toasts ---------- */

.scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 55;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.scrim.open { opacity: 1; }

.bubblesheet {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--elevated);
  border-radius: 22px 22px 0 0;
  padding: 8px 10px calc(18px + var(--safe-bottom));
  z-index: 56;
  transform: translateY(100%);
  transition: transform 0.26s cubic-bezier(0.2, 0.7, 0.3, 1);
  max-height: 76vh;
  overflow-y: auto;
}
.bubblesheet.open { transform: translateY(0); }
.bubblesheet .grab { width: 36px; height: 4px; border-radius: 2px; background: var(--border); margin: 4px auto 10px; }
.bubblesheet .bstitle { font-size: 15px; font-weight: 800; padding: 4px 14px 8px; }
.bubblesheet .bsitem {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.bubblesheet .bsitem svg { width: 19px; height: 19px; color: var(--text-2); flex-shrink: 0; }
.bubblesheet .bsitem.danger, .bubblesheet .bsitem.danger svg { color: var(--danger); }

.dialogscrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 58;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.dialogscrim.open { opacity: 1; }
.dialog {
  width: 100%;
  max-width: 380px;
  background: var(--elevated);
  border-radius: 18px;
  padding: 18px;
  transform: scale(0.82) translateY(22px);
  opacity: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  /* exit - quick ease-in (fits the 190ms scrim teardown) */
  transition: transform 0.18s cubic-bezier(0.4, 0, 1, 1), opacity 0.15s ease, box-shadow 0.18s ease;
}
.dialogscrim.open .dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  /* entry - rises into place with a springy overshoot */
  transition: transform 0.34s cubic-bezier(0.3, 1.4, 0.5, 1), opacity 0.18s ease-out, box-shadow 0.34s ease;
}
.dialog h3 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }

/* Read-only info dialog (prompt text) with copy - simple, flat */
.textdlg .dscroll {
  max-height: 48vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  white-space: pre-wrap;
  text-align: left;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  padding: 4px 0 8px;
}
.textdlg .drow { display: flex; gap: 10px; padding-top: 14px; }
.dialog.textdlg .drow button { flex: 1; display: flex; align-items: center; justify-content: center; padding: 11px 12px; color: var(--text); }
.textdlg .drow svg { width: 16px; height: 16px; }

/* Edit-cover full-screen sheet (Generate with AI / Upload photo) */
.covhead {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 14px 4px 14px;
}
.covhead h2 { font-size: 20px; font-weight: 800; flex: 1; }
.covhead .credits {
  font-size: 11px;
  font-weight: 700;
  color: var(--violet);
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 50px;
  padding: 6px 12px;
  white-space: nowrap;
}
.covbody { padding: 4px 20px calc(24px + var(--safe-bottom)); }
.covgallery { margin-top: 12px; }
.covgallery .gt { font-size: 12px; font-weight: 800; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.4px; padding: 6px 2px; }
.covgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-height: 42vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain; /* don't chain into the sheet's scroll/swipe */
  padding: 2px;
}
.covgrid .hint { grid-column: 1 / -1; padding: 10px 2px; }
.covgrid button {
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  border: 2px solid transparent;
  padding: 0;
  position: relative;
}
/* Square via padding-top spacer, NOT aspect-ratio - aspect-ratio sizing inside
   this scrolled grid collapsed to overlapping rows in the Android WebView
   (only while the pending tile/anims were present). The spacer cannot break. */
.covgrid button::before { content: ""; display: block; padding-top: 100%; }
.covgrid button img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.covgrid button.sel { border-color: var(--violet); box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.35); }
.covgrid button.sel::after {
  content: "";
  position: absolute;
  right: 5px; bottom: 5px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--violet) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/12px no-repeat;
}
.csupload {
  margin-top: 8px;
  border: 1.5px dashed var(--border);
  border-radius: 16px;
  padding: 34px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-size: 13px;
  width: 100%;
}
.csupload svg { width: 28px; height: 28px; color: var(--violet); }
.csprev { margin-top: 12px; display: flex; justify-content: center; }
.csprev img {
  width: 200px; height: 200px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
}
/* Pending 1:1 shimmer tile in the gallery while an image generates.
   Shimmer = compositor transform (translateX), never background-position -
   an animating background inside this scroll container repainted the whole
   scroller every frame and the WebView stacked the grid rows mid-generation. */
.covgrid .covpending {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}
.covgrid .covpending::before { content: ""; display: block; padding-top: 100%; }
.covgrid .covpending::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, var(--elevated) 50%, transparent 70%);
  animation: covshimmer 1.4s linear infinite;
}
@keyframes covshimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.covpending .cpspin {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-top-color: var(--violet);
  animation: covspin 0.9s linear infinite;
}
@keyframes covspin { to { transform: rotate(360deg); } }
.covgrid button.fresh img { animation: covfade 0.45s ease-out; }
@keyframes covfade { from { opacity: 0; transform: scale(0.9); } }

/* Add-to-playlist CHECKLIST sheet */
.addsheet .addhead { display: flex; align-items: center; gap: 10px; padding: 4px 10px 10px; }
.addsheet .addhead .bstitle { flex: 1; padding: 0; }
.addsheet .adddone {
  font-size: 13px;
  font-weight: 800;
  color: var(--violet);
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(139, 92, 246, 0.14);
  white-space: nowrap;
}
.addsheet .addsong {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 2px 6px 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.addsheet .addsong .cover { width: 40px; height: 40px; border-radius: 9px; }
.addsheet .addsong .qt { font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.addsheet .addsong .qs { font-size: 11px; color: var(--text-2); margin-top: 2px; }
.addsheet .addsong .qm { flex: 1; min-width: 0; }
.addsheet .addcreate {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 6px 8px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--violet);
  text-align: left;
}
.addsheet .addcreate .plus {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.addsheet .addcreate .plus svg { width: 20px; height: 20px; }
.addsheet .addrow { position: relative; width: 100%; text-align: left; }
.addsheet .playlistitem .collage { width: 44px; height: 44px; border-radius: 10px; }
.addsheet .pname { font-size: 14px; font-weight: 700; }
.addsheet .psub { font-size: 11px; color: var(--text-2); margin-top: 2px; }
.addsheet .addbox {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.addsheet .addbox svg { width: 14px; height: 14px; }
.addsheet .addrow.checked .addbox {
  background: var(--violet);
  border-color: var(--violet);
  color: #fff;
}

/* Full-screen lyrics: blurred cover backdrop, centered scrolling lines */
.lyricsview {
  position: absolute;
  inset: 0;
  z-index: 53; /* above .fullplayer (52), same layer as .sheet */
  background: var(--bg);
  padding-top: var(--safe-top);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
  overflow: hidden;
  will-change: transform;
}
.lyricsview.open { transform: translateY(0); }
.lyricsview.closing { transform: translateY(100%); }
.lv-bg {
  position: absolute;
  left: -70px; top: calc(-70px - var(--safe-top));
  width: calc(100% + 140px);
  height: calc(100% + 140px);
  object-fit: cover;
  filter: blur(46px) brightness(0.5) saturate(1.25);
  transform: translateZ(0); /* own composited layer - the blur must not re-rasterize on drag */
  pointer-events: none;
}
.lv-bgph { background: linear-gradient(160deg, #2a2340, #14121c 60%, #1d1830); }
.lv-fg { position: relative; height: 100%; display: flex; flex-direction: column; }
.lv-head { display: flex; align-items: center; gap: 8px; padding: 12px 12px 6px; }
.lv-head .iconbtn { color: rgba(255, 255, 255, 0.85); }
.lv-t {
  flex: 1;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.lv-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 26px 30px calc(48px + var(--safe-bottom));
  text-align: center;
}
.lv-line {
  font-size: 17px;
  font-weight: 600;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}
.dialog .dmsg { font-size: 13px; color: var(--text-2); margin-bottom: 12px; }
.dialog .dfield { margin-bottom: 10px; }
.dialog .dfield label { display: block; font-size: 11px; color: var(--text-2); margin-bottom: 5px; font-weight: 600; }
.dialog .drow { display: flex; justify-content: flex-end; gap: 6px; margin-top: 14px; }
.dialog .drow button { padding: 9px 16px; border-radius: 10px; font-weight: 700; font-size: 13px; color: var(--text-2); }
.dialog .drow button.primary { color: var(--violet); }
.dialog .switchrow { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; }
.dialog .switchrow span { font-size: 13px; }

.switch {
  position: relative;
  width: 44px; height: 26px;
  border-radius: 13px;
  background: var(--border);
  transition: background 0.18s ease;
  flex-shrink: 0;
}
.switch.on { background: var(--violet); }
.switch::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.18s ease;
}
.switch.on::after { transform: translateX(18px); }

#toasts {
  position: absolute;
  left: 0; right: 0;
  bottom: calc(var(--nav-h) + 16px + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 70;
  pointer-events: none;
}
.toast {
  background: var(--elevated);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: toastIn 0.22s ease;
  max-width: 86vw;
}
@keyframes toastIn { from { opacity: 0; transform: translateY(8px); } }

/* ---------- Skeletons / empty ---------- */

@keyframes shimmer { 0% { opacity: 0.5; } 50% { opacity: 1; } 100% { opacity: 0.5; } }
.skel {
  background: var(--elevated);
  border-radius: 12px;
  animation: shimmer 1.3s ease-in-out infinite;
}
.skelrow { display: flex; gap: 12px; padding: 8px 20px; align-items: center; }
.skelrow .c { width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0; }
.skelrow .l1 { height: 13px; width: 55%; }
.skelrow .l2 { height: 11px; width: 35%; margin-top: 6px; }

.empty {
  padding: 46px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.empty .eicon {
  width: 64px; height: 64px;
  border-radius: 20px;
  background: var(--elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  margin-bottom: 6px;
}
.empty .eicon svg { width: 30px; height: 30px; }
.empty .et { font-size: 15px; font-weight: 700; }
.empty .es { font-size: 12px; color: var(--text-2); }

.errorbox {
  margin: 40px 24px;
  text-align: center;
  color: var(--text-2);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
