/* ==========================================================================
   ME & MY GMC — Continuous Anonymous Bubble Chat Log
   Design System: GMC Professional Grade Dark Automotive Theme
   Colors: Obsidian Carbon (#0B0C0E), GMC Signature Red (#C41230),
           Brushed Chrome (#C0C7D1), Titanium Slate (#1F242E)
   ========================================================================== */

:root {
  --gmc-red: #C41230;
  --gmc-red-bright: #E21B3C;
  --gmc-red-dark: #8E0A20;
  --gmc-red-glow: rgba(196, 18, 48, 0.45);
  
  --bg-obsidian: #090B0E;
  --bg-panel: #11141A;
  --bg-card: #171B23;
  --bg-card-hover: #1D222D;
  --bg-input: #0D0F14;
  
  --border-metal: #2A313E;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-chrome: #495468;
  --border-active: #C41230;

  --text-white: #FFFFFF;
  --text-chrome: #DCE1E8;
  --text-silver: #9EA8B6;
  --text-dim: #657082;
  
  --bubble-bg: linear-gradient(135deg, #181C25 0%, #12151C 100%);
  --bubble-self-bg: linear-gradient(135deg, #221519 0%, #151014 100%);
  --bubble-self-border: rgba(196, 18, 48, 0.4);
  
  --font-display: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden; /* Prevents outer page scrolling on mobile */
  background-color: var(--bg-obsidian);
  color: var(--text-chrome);
  font-family: var(--font-body);
  overscroll-behavior: none;
  -webkit-text-size-adjust: 100%;
}

/* Background Grille Texture Effect */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(196, 18, 48, 0.12) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 32px 32px, 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* Main App Shell — Perfectly fitted to viewport */
.app-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  height: var(--app-height, 100dvh);
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  border-left: 1px solid var(--border-metal);
  border-right: 1px solid var(--border-metal);
  background: rgba(11, 13, 17, 0.95);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

/* ──────────────────────────────────────────────────────────────────────────
   GMC HEADER SECTION
   ────────────────────────────────────────────────────────────────────────── */
.gmc-header {
  flex-shrink: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(180deg, #151821 0%, #0F1218 100%);
  border-bottom: 2px solid var(--border-metal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
}

.gmc-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 140px;
  height: 2px;
  background: var(--gmc-red);
  box-shadow: 0 0 12px var(--gmc-red);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-badge-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Iconic GMC Red Block Logo */
.gmc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #D41434 0%, #A30D24 100%);
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  box-shadow: 
    0 2px 8px rgba(196, 18, 48, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    inset 0 -1px 2px rgba(0, 0, 0, 0.6);
  border: 1px solid #E63952;
}

.gmc-badge-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  line-height: 1;
}

.title-wrap {
  display: flex;
  flex-direction: column;
}

.page-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-white);
  line-height: 1.2;
}

.page-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-silver);
}

/* Header Telemetry Status */
.telemetry-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-silver);
}

.asn-pill {
  font-size: 0.72rem;
  color: #00E676;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  font-weight: 700;
}

.live-pill {
  color: var(--text-silver);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pulse-led {
  width: 8px;
  height: 8px;
  background-color: #00E676;
  border-radius: 50%;
  box-shadow: 0 0 8px #00E676;
  animation: ledPulse 2s infinite ease-in-out;
}

@keyframes ledPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Spec Bar */
.spec-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  gap: 0.5rem;
}

.spec-strip span strong {
  color: var(--text-chrome);
  font-weight: 600;
}

.spec-pipe {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 0.2rem;
}

.rss-link-badge {
  color: #FF9800;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.15s ease;
  display: inline-flex;
  align-items: center;
}

.rss-link-badge:hover {
  color: #FFB74D;
  text-decoration: underline;
}

.channel-share-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-chrome);
  padding: 0.18rem 0.45rem;
  border-radius: 3px;
  font-size: 0.66rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s ease;
}

.channel-share-btn:hover {
  background: rgba(196, 18, 48, 0.35);
  border-color: var(--gmc-red-bright);
  color: #FFF;
  box-shadow: 0 0 8px rgba(196, 18, 48, 0.4);
}

/* ──────────────────────────────────────────────────────────────────────────
   CHAT STREAM CONTAINER
   ────────────────────────────────────────────────────────────────────────── */
.chat-scroll-area {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  scroll-behavior: smooth;
}

.chat-scroll-area::-webkit-scrollbar {
  width: 6px;
}
.chat-scroll-area::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
.chat-scroll-area::-webkit-scrollbar-thumb {
  background: var(--border-metal);
  border-radius: 3px;
}
.chat-scroll-area::-webkit-scrollbar-thumb:hover {
  background: var(--gmc-red);
}

/* Welcome Log Notice */
.system-notice {
  align-self: center;
  background: rgba(22, 26, 34, 0.8);
  border: 1px solid var(--border-metal);
  border-left: 3px solid var(--gmc-red);
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-silver);
  text-align: center;
  max-width: 550px;
}

/* ──────────────────────────────────────────────────────────────────────────
   CHAT BUBBLE STYLING
   ────────────────────────────────────────────────────────────────────────── */
.chat-bubble-row {
  display: flex;
  flex-direction: column;
  max-width: 82%;
  animation: bubbleSlideIn 0.28s ease-out;
}

@keyframes bubbleSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-bubble-row.incoming {
  align-self: flex-start;
}

.chat-bubble-row.outgoing {
  align-self: flex-end;
}

/* Bubble Meta (Author Badge & Time) */
.bubble-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.outgoing .bubble-meta {
  justify-content: flex-end;
}

.author-tag {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.author-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gmc-red);
}

.bubble-time {
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.carrier-tag {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: #00E676;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.22);
  padding: 0.1rem 0.38rem;
  border-radius: 3px;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
}

.bubble-share-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.15s ease;
}

.bubble-share-btn:hover {
  opacity: 1;
  color: #00E676;
  background: rgba(0, 230, 118, 0.12);
}

/* The Message Capsule */
.bubble-card {
  position: relative;
  background: var(--bubble-bg);
  border: 1px solid var(--border-metal);
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  word-break: break-word;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.incoming .bubble-card {
  border-top-left-radius: 2px;
}

.outgoing .bubble-card {
  border-top-right-radius: 2px;
  background: var(--bubble-self-bg);
  border-color: var(--bubble-self-border);
}

.bubble-card:hover {
  border-color: var(--border-chrome);
}

.outgoing .bubble-card:hover {
  border-color: var(--gmc-red);
}

.bubble-text {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-white);
}

/* Uploaded Image Capsule */
.bubble-image-wrap {
  margin-top: 0.65rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
  max-width: 380px;
  cursor: zoom-in;
  position: relative;
}

.bubble-image-wrap img {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.bubble-image-wrap:hover img {
  transform: scale(1.02);
  opacity: 0.95;
}

.image-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--text-silver);
  font-size: 0.65rem;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  pointer-events: none;
  font-family: var(--font-mono);
}

/* ──────────────────────────────────────────────────────────────────────────
   COMPOSER / INPUT CONSOLE
   ────────────────────────────────────────────────────────────────────────── */
.composer-dock {
  flex-shrink: 0;
  background: linear-gradient(180deg, #11141A 0%, #0A0C0F 100%);
  border-top: 1px solid var(--border-metal);
  padding: 1rem 1.25rem 1.25rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.composer-dock.drag-over {
  border-top-color: var(--gmc-red);
  box-shadow: 0 -4px 25px rgba(196, 18, 48, 0.45);
}

/* Error/Notification Banner */
.composer-alert {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196, 18, 48, 0.15);
  border: 1px solid var(--gmc-red);
  color: #FFA3AF;
  font-size: 0.8rem;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.composer-alert.active {
  display: flex;
}

/* Image Attachment Staging Preview */
.staged-media-panel {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: rgba(23, 27, 35, 0.95);
  border: 1px solid var(--border-metal);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.staged-media-panel.active {
  display: flex;
}

.staged-thumb {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border-chrome);
}

.staged-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.staged-filename {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-white);
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.staged-filesize {
  font-size: 0.72rem;
  color: var(--text-silver);
  font-family: var(--font-mono);
}

.staged-remove-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-silver);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.15s ease;
}

.staged-remove-btn:hover {
  background: var(--gmc-red);
  color: #FFF;
  border-color: var(--gmc-red);
}

/* CallSign Config Bar */
.composer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
}

.callsign-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.callsign-label {
  color: var(--text-silver);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.callsign-input {
  background: var(--bg-input);
  border: 1px solid var(--border-metal);
  color: var(--text-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  max-width: 170px;
  outline: none;
  transition: border-color 0.2s;
}

.callsign-input:focus {
  border-color: var(--gmc-red);
}

.callsign-shuffle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-metal);
  color: var(--text-silver);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.72rem;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.15s;
}

.callsign-shuffle-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFF;
}

/* Character Counter */
.char-meter {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-silver);
  font-weight: 600;
}

.char-meter.warning {
  color: #FFB300;
}

.char-meter.danger {
  color: #FF3D57;
}

/* Input Row */
.input-row {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.textarea-wrap {
  flex: 1;
  position: relative;
}

.message-textarea {
  width: 100%;
  min-height: 48px;
  max-height: 120px;
  background: var(--bg-input);
  border: 1px solid var(--border-metal);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.4;
  resize: none;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.message-textarea:focus {
  border-color: var(--border-chrome);
  box-shadow: 0 0 0 2px rgba(196, 18, 48, 0.25);
}

.message-textarea::placeholder {
  color: var(--text-dim);
}

/* Attachment Button */
.attach-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-metal);
  color: var(--text-chrome);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.attach-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-chrome);
  color: #FFF;
}

.attach-btn.has-media {
  border-color: var(--gmc-red);
  color: var(--gmc-red-bright);
}

/* Hidden file input */
.hidden-file-input {
  display: none;
}

/* GMC Red Transmit Button */
.transmit-btn {
  background: linear-gradient(180deg, #D41434 0%, #A30D24 100%);
  border: 1px solid #E63952;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  height: 48px;
  padding: 0 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(196, 18, 48, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transition: all 0.15s ease;
}

.transmit-btn:hover:not(:disabled) {
  background: linear-gradient(180deg, #E21B3C 0%, #B8102C 100%);
  box-shadow: 0 6px 20px rgba(196, 18, 48, 0.6);
  transform: translateY(-1px);
}

.transmit-btn:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(196, 18, 48, 0.4);
}

.transmit-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(40%);
}

/* ──────────────────────────────────────────────────────────────────────────
   LIGHTBOX MODAL FOR IMAGES
   ────────────────────────────────────────────────────────────────────────── */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 6px;
  border: 1px solid var(--border-chrome);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  object-fit: contain;
}

.lightbox-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.lightbox-close-btn:hover {
  background: var(--gmc-red);
}

/* ──────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN (MOBILE / TABLET)
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
  .app-container {
    height: 100%;
    height: var(--app-height, 100dvh);
    border-left: none;
    border-right: none;
  }
  
  .gmc-header {
    padding: max(0.45rem, env(safe-area-inset-top, 0px)) max(0.75rem, env(safe-area-inset-right, 0px)) 0.45rem max(0.75rem, env(safe-area-inset-left, 0px));
  }
  
  .gmc-badge {
    padding: 0.2rem 0.6rem;
  }
  
  .gmc-badge-text {
    font-size: 1.15rem;
  }
  
  .page-title {
    font-size: 1.05rem;
  }
  
  .telemetry-status {
    padding: 0.25rem 0.55rem;
    font-size: 0.7rem;
  }

  .telemetry-status span:last-child {
    display: none;
  }
  
  .spec-strip {
    margin-top: 0.35rem;
    padding-top: 0.35rem;
    font-size: 0.65rem;
  }
  
  .chat-scroll-area {
    padding: 0.75rem 0.65rem;
    gap: 0.75rem;
  }
  
  .chat-bubble-row {
    max-width: 90%;
  }

  .bubble-card {
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
  }

  .bubble-text {
    font-size: 0.88rem;
  }
  
  .composer-dock {
    padding: 0.45rem 0.65rem max(0.55rem, env(safe-area-inset-bottom, 8px));
  }

  .composer-topbar {
    margin-bottom: 0.35rem;
  }

  /* 16px font-size prevents iOS Safari from automatically zooming the viewport on tap */
  .callsign-input {
    max-width: 135px;
    padding: 0.2rem 0.45rem;
    font-size: 16px;
  }

  .callsign-shuffle-btn {
    padding: 0.2rem 0.45rem;
    font-size: 0.75rem;
  }

  .char-meter {
    font-size: 0.72rem;
  }

  .input-row {
    gap: 0.5rem;
  }

  /* 16px font-size prevents iOS Safari from automatically zooming the viewport on tap */
  .message-textarea {
    min-height: 40px;
    max-height: 75px;
    padding: 0.55rem 0.65rem;
    font-size: 16px;
    line-height: 1.3;
  }

  .attach-btn {
    width: 40px;
    height: 40px;
  }

  .transmit-btn {
    height: 40px;
    padding: 0 0.85rem;
    font-size: 0.88rem;
  }
}
