/* ========================================
   MediaDL - Modern YouTube Downloader
   ======================================== */

/* CSS Variables - Design Tokens */
:root {
  /* Primary Colors - Purple/Violet Gradient */
  --primary-100: #f5f3ff;
  --primary-200: #ede9fe;
  --primary-300: #ddd6fe;
  --primary-400: #c4b5fd;
  --primary-500: #a78bfa;
  --primary-600: #8b5cf6;
  --primary-700: #7c3aed;
  --primary-800: #6d28d9;
  --primary-900: #5b21b6;

  /* Accent Colors - Pink/Rose */
  --accent-400: #f472b6;
  --accent-500: #ec4899;
  --accent-600: #db2777;

  /* Neutral Colors */
  --neutral-50: #fafafa;
  --neutral-100: #f4f4f5;
  --neutral-200: #e4e4e7;
  --neutral-300: #d4d4d8;
  --neutral-400: #a1a1aa;
  --neutral-500: #71717a;
  --neutral-600: #52525b;
  --neutral-700: #3f3f46;
  --neutral-800: #27272a;
  --neutral-900: #18181b;
  --neutral-950: #09090b;

  /* Semantic Colors */
  --success-500: #22c55e;
  --success-600: #16a34a;
  --error-500: #ef4444;
  --error-600: #dc2626;
  --warning-500: #f59e0b;

  /* Backgrounds */
  --bg-primary: #0a0a0f;
  --bg-secondary: #111116;
  --bg-card: rgba(24, 24, 30, 0.8);
  --bg-card-hover: rgba(30, 30, 40, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.05);

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-600) 0%,
    var(--accent-500) 100%
  );
  --gradient-subtle: linear-gradient(
    135deg,
    var(--primary-900) 0%,
    var(--neutral-900) 100%
  );
  --gradient-glow: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.3) 0%,
    rgba(236, 72, 153, 0.3) 100%
  );

  /* Typography */
  --font-family:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;

  /* Spacing */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
  --shadow-glow-accent: 0 0 40px rgba(236, 72, 153, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   Reset & Base Styles
   ======================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--neutral-100);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ========================================
   Animated Background
   ======================================== */

.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse 80% 50% at 20% 20%,
      rgba(139, 92, 246, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 80%,
      rgba(236, 72, 153, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 50% 30% at 50% 50%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: -2;
  animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}

/* ========================================
   Container
   ======================================== */

.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-6) var(--spacing-4);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ========================================
   Header
   ======================================== */

.header {
  text-align: center;
  margin-bottom: var(--spacing-10);
  animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-3);
  margin-bottom: var(--spacing-4);
}

.logo-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  color: white;
  box-shadow: var(--shadow-glow);
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.logo h1 {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--neutral-100);
  letter-spacing: -0.02em;
}

.logo h1 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: var(--font-size-lg);
  color: var(--neutral-400);
  font-weight: 400;
}

/* ========================================
   Search Section
   ======================================== */

.search-section {
  margin-bottom: var(--spacing-8);
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-box {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-2);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.search-box:focus-within {
  border-color: var(--primary-500);
  box-shadow:
    var(--shadow-lg),
    0 0 0 3px rgba(139, 92, 246, 0.2);
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
}

.input-icon {
  font-size: var(--font-size-xl);
  color: var(--neutral-500);
  margin-left: var(--spacing-4);
  flex-shrink: 0;
}

#url-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: var(--font-size-base);
  color: var(--neutral-100);
  padding: var(--spacing-4) 0;
  font-family: var(--font-family);
}

#url-input::placeholder {
  color: var(--neutral-500);
}

.search-btn {
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-xl);
  padding: var(--spacing-4) var(--spacing-6);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.search-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.search-btn:hover::before {
  opacity: 1;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.search-btn:active {
  transform: translateY(0);
}

.search-btn .btn-loader {
  display: none;
}

.search-btn.loading .btn-text {
  display: none;
}

.search-btn.loading .btn-loader {
  display: block;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Error Message */
.error-message {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  margin-top: var(--spacing-4);
  padding: var(--spacing-4);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-lg);
  color: var(--error-500);
  animation: shake 0.4s ease-out;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.hidden {
  display: none !important;
}

/* ========================================
   Video Info Section
   ======================================== */

.video-info {
  animation: fadeInUp 0.5s ease-out;
}

.video-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  gap: var(--spacing-6);
  padding: var(--spacing-5);
  margin-bottom: var(--spacing-6);
  box-shadow: var(--shadow-lg);
}

.thumbnail-container {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.thumbnail-container img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.duration-badge {
  position: absolute;
  bottom: var(--spacing-2);
  right: var(--spacing-2);
  background: rgba(0, 0, 0, 0.85);
  padding: var(--spacing-1) var(--spacing-2);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: white;
}

.video-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.video-details h2 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--neutral-100);
  margin-bottom: var(--spacing-3);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-4);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  color: var(--neutral-400);
  font-size: var(--font-size-sm);
}

.meta-item i {
  color: var(--primary-400);
}

/* ========================================
   Format Tabs
   ======================================== */

.format-tabs {
  display: flex;
  gap: var(--spacing-2);
  margin-bottom: var(--spacing-4);
  background: var(--bg-card);
  padding: var(--spacing-2);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2);
  padding: var(--spacing-3) var(--spacing-4);
  background: transparent;
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--neutral-400);
  cursor: pointer;
  transition: all var(--transition-base);
}

.tab-btn:hover {
  color: var(--neutral-200);
  background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.tab-btn i {
  font-size: var(--font-size-lg);
}

/* ========================================
   Format Lists
   ======================================== */

.formats-container {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.format-list {
  display: none;
}

.format-list.active {
  display: block;
}

.format-header {
  display: grid;
  grid-template-columns: 1fr 120px 120px;
  padding: var(--spacing-4) var(--spacing-5);
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.format-items {
  max-height: 400px;
  overflow-y: auto;
}

.format-items::-webkit-scrollbar {
  width: 6px;
}

.format-items::-webkit-scrollbar-track {
  background: transparent;
}

.format-items::-webkit-scrollbar-thumb {
  background: var(--neutral-700);
  border-radius: var(--radius-full);
}

.format-items::-webkit-scrollbar-thumb:hover {
  background: var(--neutral-600);
}

.format-item {
  display: grid;
  grid-template-columns: 1fr 120px 120px;
  padding: var(--spacing-4) var(--spacing-5);
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--transition-fast);
}

.format-item:last-child {
  border-bottom: none;
}

.format-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.format-quality {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
}

.quality-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-1) var(--spacing-3);
  background: var(--gradient-subtle);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--primary-300);
}

.quality-badge.hd {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.2) 0%,
    rgba(16, 163, 74, 0.2) 100%
  );
  border-color: rgba(34, 197, 94, 0.4);
  color: var(--success-500);
}

.quality-badge.audio {
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.2) 0%,
    rgba(219, 39, 119, 0.2) 100%
  );
  border-color: rgba(236, 72, 153, 0.4);
  color: var(--accent-400);
}

.format-ext {
  font-size: var(--font-size-xs);
  color: var(--neutral-500);
  text-transform: uppercase;
}

.format-size {
  color: var(--neutral-400);
  font-size: var(--font-size-sm);
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2);
  padding: var(--spacing-2) var(--spacing-4);
  background: transparent;
  border: 1px solid var(--primary-500);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--primary-400);
  cursor: pointer;
  transition: all var(--transition-base);
}

.download-btn:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.download-btn:active {
  transform: translateY(0);
}

.download-btn i {
  font-size: var(--font-size-base);
}

/* ========================================
   Analysis Overlay
   ======================================== */

.analysis-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.analysis-content {
    text-align: center;
    position: relative;
    padding: var(--spacing-10);
}

/* Animated Rings */
.analysis-visual {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto var(--spacing-8);
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid transparent;
}

.ring-1 {
    width: 180px;
    height: 180px;
    border-top-color: var(--primary-500);
    border-right-color: var(--primary-500);
    animation: ring-spin 2s linear infinite;
}

.ring-2 {
    width: 140px;
    height: 140px;
    border-bottom-color: var(--accent-500);
    border-left-color: var(--accent-500);
    animation: ring-spin 1.5s linear infinite reverse;
}

.ring-3 {
    width: 100px;
    height: 100px;
    border-top-color: var(--primary-400);
    border-left-color: var(--accent-400);
    animation: ring-spin 2.5s linear infinite;
}

@keyframes ring-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.analysis-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: var(--shadow-glow);
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: var(--shadow-glow);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 60px rgba(139, 92, 246, 0.5);
    }
}

.analysis-text h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--neutral-100);
    margin-bottom: var(--spacing-2);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.analysis-status {
    color: var(--neutral-400);
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-6);
    animation: text-pulse 1.5s ease-in-out infinite;
}

@keyframes text-pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Audio-like animated bars */
.analysis-bars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 40px;
}

.bar {
    width: 6px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: bar-dance 1s ease-in-out infinite;
}

.bar-1 { height: 20px; animation-delay: 0s; }
.bar-2 { height: 35px; animation-delay: 0.1s; }
.bar-3 { height: 25px; animation-delay: 0.2s; }
.bar-4 { height: 40px; animation-delay: 0.3s; }
.bar-5 { height: 15px; animation-delay: 0.4s; }

@keyframes bar-dance {
    0%, 100% { 
        transform: scaleY(1);
        opacity: 0.7;
    }
    50% { 
        transform: scaleY(0.4);
        opacity: 1;
    }
}

/* Scanning line effect */
.scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-500), var(--accent-500), transparent);
    animation: scan 2s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes scan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { top: 100%; opacity: 0; }
}

/* ========================================
   Download Progress
   ======================================== */

.download-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.progress-content {
  text-align: center;
}

.progress-spinner {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-6);
  font-size: var(--font-size-3xl);
  color: white;
  box-shadow: var(--shadow-glow);
}

.progress-text h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--neutral-100);
  margin-bottom: var(--spacing-2);
}

.progress-text p {
  color: var(--neutral-400);
  font-size: var(--font-size-base);
}

/* ========================================
   Footer
   ======================================== */

.footer {
  margin-top: auto;
  padding-top: var(--spacing-10);
  text-align: center;
  color: var(--neutral-500);
  font-size: var(--font-size-sm);
}

.footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2);
  margin-bottom: var(--spacing-2);
}

.footer .heart {
  color: var(--accent-500);
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.footer .disclaimer {
  font-size: var(--font-size-xs);
  color: var(--neutral-600);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
  .container {
    padding: var(--spacing-4) var(--spacing-3);
  }

  .logo h1 {
    font-size: var(--font-size-3xl);
  }

  .logo-icon {
    width: 48px;
    height: 48px;
    font-size: var(--font-size-xl);
  }

  .tagline {
    font-size: var(--font-size-base);
  }

  .input-wrapper {
    flex-wrap: wrap;
  }

  .input-icon {
    display: none;
  }

  #url-input {
    padding: var(--spacing-3) var(--spacing-4);
  }

  .search-btn {
    width: 100%;
    justify-content: center;
    margin-top: var(--spacing-2);
  }

  .video-card {
    flex-direction: column;
  }

  .thumbnail-container {
    width: 100%;
  }

  .format-header,
  .format-item {
    grid-template-columns: 1fr 80px 80px;
    padding: var(--spacing-3) var(--spacing-4);
    font-size: var(--font-size-sm);
  }

  .download-btn {
    padding: var(--spacing-2) var(--spacing-3);
  }

  .download-btn span {
    display: none;
  }
}

@media (max-width: 480px) {
  .format-header,
  .format-item {
    grid-template-columns: 1fr 70px 60px;
  }

  .quality-badge {
    font-size: var(--font-size-xs);
    padding: var(--spacing-1) var(--spacing-2);
  }

  .format-size {
    font-size: var(--font-size-xs);
  }
}
