/* Prevent CSS display rules from overriding the [hidden] attribute */
[hidden] {
  display: none !important;
}

/* ── Reset & Variables ──────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #09090b;
  --surface: #111113;
  --surface-2: #18181b;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.13);
  --text: #f4f4f5;
  --text-muted: #71717a;
  --text-subtle: #3f3f46;
  --positive: #22c55e;
  --positive-bg: rgba(34, 197, 94, 0.12);
  --positive-glow: rgba(34, 197, 94, 0.07);
  --negative: #f87171;
  --negative-bg: rgba(248, 113, 113, 0.12);
  --negative-glow: rgba(248, 113, 113, 0.07);
  --accent: #6366f1;
  --btn-bg: #18181b;
  --btn-border: rgba(255, 255, 255, 0.09);
  --btn-hover: #1f1f23;
  --btn-active-bg: #1a1a22;
  --btn-active-border: rgba(99, 102, 241, 0.45);
  --btn-active-color: #a5b4fc;
  --btn-active-shadow: rgba(99, 102, 241, 0.12);
  --radius-card: 18px;
  --radius-btn: 9px;
  --radius-pill: 999px;
  /* Theme-specific overrides */
  --card-bg: linear-gradient(175deg, #0e0f13 0%, #111318 100%);
  --card-border: rgba(255, 255, 255, 0.06);
  --modal-bg: #111318;
  --body-radial: rgba(99, 102, 241, 0.07);
  --body-dot: rgba(255, 255, 255, 0.02);
  --shimmer-base: rgba(255, 255, 255, 0.04);
  --shimmer-peak: rgba(255, 255, 255, 0.09);
}

/* ── Base ────────────────────────────────────────────────────────────────────── */
body {
  background-color: var(--bg);
  background-image:
    radial-gradient(
      ellipse 80% 40% at 50% -5%,
      var(--body-radial) 0%,
      transparent 100%
    ),
    radial-gradient(circle, var(--body-dot) 1px, transparent 1px);
  background-size:
    100% 100%,
    28px 28px;
  color: var(--text);
  font-family:
    "DM Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  min-height: 100vh;
  height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Layout ──────────────────────────────────────────────────────────────────── */
.app {
  max-width: 1600px;
  margin: 0 auto;
  padding: 32px 32px 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  min-height: 0; /* allow flex child to shrink */
  display: flex;
  flex-direction: column;
  padding-bottom: 32px;
}

/* ── Top Bar ─────────────────────────────────────────────────────────────────── */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 14px;
}

.title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
}

.title-name {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.3px;
}

.title-sep {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-subtle);
  letter-spacing: 0;
}

.title-sub {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Badges ──────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}

.mode-badge {
  color: var(--text-muted);
  background: none;
  border: none;
  font: inherit;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}

.mode-badge:hover {
  color: var(--text);
}

.mode-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #eab308;
  flex-shrink: 0;
  box-shadow: 0 0 7px rgba(234, 179, 8, 0.6);
}

.mode-dot.real {
  background: var(--positive);
  box-shadow: 0 0 7px rgba(34, 197, 94, 0.6);
}

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn {
  background: var(--btn-bg);
  color: var(--text);
  border: 1px solid var(--btn-border);
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  transition:
    background 0.15s,
    border-color 0.15s,
    opacity 0.15s;
  white-space: nowrap;
}

.btn:hover {
  background: var(--btn-hover);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn.active {
  background: var(--btn-active-bg);
  border-color: var(--btn-active-border);
  color: var(--btn-active-color);
  box-shadow: 0 0 0 1px var(--btn-active-shadow);
}

/* ── Price Grid ──────────────────────────────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1000px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Asset Card ──────────────────────────────────────────────────────────────── */
@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  cursor: default;
  position: relative;
  overflow: hidden;
  animation: card-in 0.35s ease both;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

/* Top-edge highlight */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.07) 40%,
    rgba(255, 255, 255, 0.07) 60%,
    transparent
  );
  pointer-events: none;
}

/* Bottom-left asset-color glow */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 85% 65% at 5% 95%,
    var(--card-glow, transparent),
    transparent
  );
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.card.positive:hover {
  border-color: rgba(34, 197, 94, 0.25);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 60px var(--positive-glow);
}

.card.negative:hover {
  border-color: rgba(248, 113, 113, 0.22);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 60px var(--negative-glow);
}

/* Skeleton loading state */
.card.skeleton {
  background: #0e0f13;
  animation: pulse 1.6s ease-in-out infinite;
}

.card.skeleton::before,
.card.skeleton::after {
  display: none;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.15;
  }
}

/* Card header */
.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.asset-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Icon */
.asset-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
  position: relative;
}

/* inner top-edge highlight on icon */
.asset-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.asset-icon.circle {
  border-radius: 50%;
}

.asset-icon svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

/* Asset name / ticker */
.asset-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.asset-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.asset-ticker {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Change badge */
.change-badge {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.2px;
}

.change-badge.positive {
  color: var(--positive);
  background: var(--positive-bg);
}

.change-badge.negative {
  color: var(--negative);
  background: var(--negative-bg);
}

.change-badge.neutral {
  color: var(--text-muted);
  background: rgba(113, 113, 122, 0.12);
}

/* Card footer — price */
.card-footer {
  margin-top: 24px;
}

.asset-price {
  font-size: 62px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -2px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price-symbol {
  font-size: 36px;
  font-weight: 300;
  opacity: 0.45;
  letter-spacing: 0;
  margin-bottom: 3px;
}

.price-value {
  letter-spacing: -2px;
}

.asset-unit {
  font-size: 13px;
  color: var(--text-subtle);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ── Carousel ────────────────────────────────────────────────────────────────── */
.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 0 56px;
  position: relative;
  flex: 1;
  min-height: 0;
}

.carousel-card-wrapper {
  flex: 1;
  max-width: 100%;
  align-self: stretch; /* fill full height of carousel row */
}

.carousel-card-wrapper .card {
  height: 100%;
  min-height: unset;
  animation: none;
  padding: 48px 56px 52px;
}

.carousel-card-wrapper .asset-price {
  font-size: clamp(72px, 10vw, 120px);
  letter-spacing: -3px;
}

.carousel-card-wrapper .price-symbol {
  font-size: clamp(44px, 6vw, 72px);
}

.carousel-card-wrapper .asset-icon {
  width: 72px;
  height: 72px;
  font-size: 28px;
  border-radius: 18px;
}

.carousel-card-wrapper .asset-icon svg {
  width: 32px;
  height: 32px;
}

.carousel-card-wrapper .asset-name {
  font-size: 26px;
}

.carousel-card-wrapper .asset-ticker {
  font-size: 15px;
}

.carousel-card-wrapper .change-badge {
  font-size: 17px;
  padding: 8px 18px;
}

.carousel-card-wrapper .asset-unit {
  font-size: 15px;
  margin-top: 14px;
}

.carousel-nav {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 32px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
  line-height: 1;
}

.carousel-nav:hover {
  background: var(--surface-2);
  border-color: var(--border-hover);
  color: var(--text);
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  align-items: center;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--text-subtle);
  cursor: pointer;
  border: none;
  padding: 0;
  transition:
    background 0.2s,
    width 0.25s ease;
}

.carousel-dot.active {
  background: var(--text-muted);
  width: 20px;
}

/* ── Status Modal ────────────────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal {
  background: var(--modal-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: min(480px, calc(100vw - 40px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--border);
}

.modal-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  line-height: 1;
  transition:
    color 0.15s,
    background 0.15s;
}

.modal-close:hover {
  color: var(--text);
  background: var(--surface-2);
}

.modal-body {
  padding: 8px 0;
  max-height: 360px;
  overflow-y: auto;
}

.modal-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  min-height: 40px;
  display: flex;
  align-items: center;
}

.modal-loading,
.modal-error {
  padding: 24px 20px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.modal-error {
  color: #f87171;
}

/* Status rows */
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  transition: background 0.15s;
}

.status-row:hover {
  background: var(--surface-2);
}

.status-row-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-row-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.status-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.status-source {
  font-size: 11px;
  color: var(--text-muted);
}

.status-time {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.status-ok {
  background: var(--positive);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}
.status-dot.status-fail {
  background: #f87171;
  box-shadow: 0 0 6px rgba(248, 113, 113, 0.5);
}
.status-dot.status-pending {
  background: #eab308;
  box-shadow: 0 0 6px rgba(234, 179, 8, 0.4);
}

.status-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.status-badge.status-ok {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}
.status-badge.status-fail {
  background: rgba(248, 113, 113, 0.15);
  color: #f87171;
}
.status-badge.status-pending {
  background: rgba(234, 179, 8, 0.15);
  color: #fde047;
}

.status-error-msg {
  font-size: 11px;
  color: #f87171;
  padding: 4px 20px 8px 38px;
  opacity: 0.85;
  word-break: break-word;
}

.status-footer-time {
  font-size: 12px;
  color: var(--text-muted);
}

.status-fetching {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.spinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid var(--border);
  border-top-color: var(--text-muted);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Skeleton loading state ──────────────────────────────────────────────────── */
.price-skeleton {
  display: block;
  width: 130px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    var(--shimmer-base) 0%,
    var(--shimmer-peak) 50%,
    var(--shimmer-base) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-inline {
  display: inline-block;
  width: 54px;
  height: 22px;
  border-radius: 5px;
  vertical-align: middle;
  background: linear-gradient(
    90deg,
    var(--shimmer-base) 0%,
    var(--shimmer-peak) 50%,
    var(--shimmer-base) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ── Theme: Dim (dark navy / GitHub-inspired) ────────────────────────────────── */
[data-theme="dim"] {
  --bg: #0d1117;
  --surface: #161b22;
  --surface-2: #1c2230;
  --border: rgba(240, 246, 252, 0.1);
  --border-hover: rgba(240, 246, 252, 0.18);
  --text: #c9d1d9;
  --text-muted: #6e7b8b;
  --text-subtle: #30363d;
  --positive: #3fb950;
  --positive-bg: rgba(63, 185, 80, 0.1);
  --positive-glow: rgba(63, 185, 80, 0.07);
  --negative: #f85149;
  --negative-bg: rgba(248, 81, 73, 0.1);
  --negative-glow: rgba(248, 81, 73, 0.07);
  --accent: #58a6ff;
  --btn-bg: #21262d;
  --btn-border: rgba(240, 246, 252, 0.1);
  --btn-hover: #30363d;
  --btn-active-bg: #1f2d3d;
  --btn-active-border: rgba(88, 166, 255, 0.4);
  --btn-active-color: #58a6ff;
  --btn-active-shadow: rgba(88, 166, 255, 0.1);
  --card-bg: linear-gradient(175deg, #0d1117 0%, #161b22 100%);
  --card-border: rgba(240, 246, 252, 0.08);
  --modal-bg: #161b22;
  --body-radial: rgba(88, 166, 255, 0.05);
  --body-dot: rgba(240, 246, 252, 0.025);
  --shimmer-base: rgba(240, 246, 252, 0.04);
  --shimmer-peak: rgba(240, 246, 252, 0.09);
}

/* ── Theme: Light ────────────────────────────────────────────────────────────── */
[data-theme="light"] {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-2: #eef0f5;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.14);
  --text: #111827;
  --text-muted: #6b7280;
  --text-subtle: #9ca3af;
  --positive: #16a34a;
  --positive-bg: rgba(22, 163, 74, 0.1);
  --positive-glow: rgba(22, 163, 74, 0.06);
  --negative: #dc2626;
  --negative-bg: rgba(220, 38, 38, 0.1);
  --negative-glow: rgba(220, 38, 38, 0.06);
  --accent: #4f46e5;
  --btn-bg: #ffffff;
  --btn-border: rgba(0, 0, 0, 0.1);
  --btn-hover: #f3f4f6;
  --btn-active-bg: #ede9fe;
  --btn-active-border: rgba(79, 70, 229, 0.35);
  --btn-active-color: #4f46e5;
  --btn-active-shadow: rgba(79, 70, 229, 0.1);
  --card-bg: linear-gradient(175deg, #ffffff 0%, #f8f9fc 100%);
  --card-border: rgba(0, 0, 0, 0.07);
  --modal-bg: #ffffff;
  --body-radial: rgba(99, 102, 241, 0.04);
  --body-dot: rgba(0, 0, 0, 0.025);
  --shimmer-base: rgba(0, 0, 0, 0.03);
  --shimmer-peak: rgba(0, 0, 0, 0.07);
}

/* Light theme targeted fixes */
[data-theme="light"] .card::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.04) 40%,
    rgba(0, 0, 0, 0.04) 60%,
    transparent
  );
}

[data-theme="light"] .card:hover {
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.04) inset;
  border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .card.positive:hover {
  border-color: rgba(22, 163, 74, 0.3);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.08),
    0 0 60px var(--positive-glow);
}

[data-theme="light"] .card.negative:hover {
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.08),
    0 0 60px var(--negative-glow);
}

[data-theme="light"] .modal-backdrop {
  background: rgba(0, 0, 0, 0.35);
}

/* ── Theme Picker ────────────────────────────────────────────────────────────── */
.theme-picker-wrap {
  position: relative;
}

.theme-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--modal-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  z-index: 200;
  min-width: 190px;
}

[data-theme="light"] .theme-popover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.theme-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-muted);
  font: inherit;
  font-size: 13px;
  transition:
    background 0.12s,
    color 0.12s;
}

.theme-option:hover {
  background: var(--surface-2);
  color: var(--text);
}

.theme-option.active {
  color: var(--text);
}

.theme-option-swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}

.theme-swatch-dark {
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.theme-swatch-dim {
  background: #161b22;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.theme-swatch-light {
  background: #f6f7fb;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.theme-option-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.theme-option-label {
  font-weight: 500;
  font-size: 13px;
  color: var(--text);
}

.theme-option-desc {
  font-size: 11px;
  color: var(--text-muted);
}

.theme-option-check {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
