/* style.css — Chorvachi | Premium liquid-glass SaaS design system */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  /* ---- Core palette: deep pasture night, malachite glow ---- */
  --bg-main: #060a08;
  --bg-main-2: #081310;
  --bg-surface: #0d1815;
  --bg-surface-2: #101f1a;
  --bg-subtle: #142621;
  --border-color: rgba(146, 201, 178, 0.14);
  --border-strong: rgba(146, 201, 178, 0.24);

  --text-primary: #eef7f2;
  --text-secondary: #93aca2;
  --text-muted: #5d746b;

  --primary: #1fdf94;
  --primary-2: #14b980;
  --primary-hover: #35f0a6;
  --primary-light: rgba(31, 223, 148, 0.14);
  --primary-border: rgba(31, 223, 148, 0.35);
  --primary-glow: rgba(31, 223, 148, 0.45);

  --accent-teal: #2ee6c8;
  --accent-cyan: #2bc2e8;
  --accent-amber: #f5b95c;

  --danger: #ff5d6c;
  --danger-light: rgba(255, 93, 108, 0.12);
  --warning: #f5b95c;

  --shadow-raised:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 -18px 30px -20px rgba(0, 0, 0, 0.5) inset,
    0 14px 30px -10px rgba(0, 0, 0, 0.55),
    0 2px 6px rgba(0, 0, 0, 0.4);
  --shadow-raised-sm:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 8px 18px -8px rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.35);
  --shadow-pressed:
    0 2px 10px rgba(0, 0, 0, 0.5) inset,
    0 1px 0 rgba(0, 0, 0, 0.3);
  --shadow-float:
    0 30px 60px -20px rgba(0, 0, 0, 0.65),
    0 10px 24px -12px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 0 1px var(--primary-border), 0 8px 24px -6px var(--primary-glow);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --font-display: "Plus Jakarta Sans", "Manrope", -apple-system, sans-serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: all 0.28s var(--ease);
}

html.dark {
  --bg-main: #060a08;
}

html.light {
  --bg-main: #f4f8f6;
  --bg-main-2: #eef4f1;
  --bg-surface: #ffffff;
  --bg-surface-2: #f6faf8;
  --bg-subtle: #eaf2ee;
  --border-color: rgba(15, 60, 45, 0.10);
  --border-strong: rgba(15, 60, 45, 0.16);

  --text-primary: #0e1f19;
  --text-secondary: #4d6259;
  --text-muted: #82988e;

  --primary: #0c9e6c;
  --primary-2: #0a8a5f;
  --primary-hover: #0eb87c;
  --primary-light: rgba(12, 158, 108, 0.10);
  --primary-border: rgba(12, 158, 108, 0.30);
  --primary-glow: rgba(12, 158, 108, 0.30);

  --accent-teal: #0d9488;
  --accent-cyan: #0891b2;
  --accent-amber: #d98e2b;

  --danger: #e0384a;
  --danger-light: rgba(224, 56, 74, 0.08);
  --warning: #d98e2b;

  --shadow-raised:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 -10px 20px -18px rgba(15, 60, 45, 0.12) inset,
    0 14px 30px -14px rgba(15, 60, 45, 0.16),
    0 2px 6px rgba(15, 60, 45, 0.08);
  --shadow-raised-sm:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 8px 18px -10px rgba(15, 60, 45, 0.14),
    0 2px 4px rgba(15, 60, 45, 0.06);
  --shadow-pressed:
    0 2px 8px rgba(15, 60, 45, 0.12) inset,
    0 1px 0 rgba(15, 60, 45, 0.06);
  --shadow-float:
    0 30px 60px -24px rgba(15, 60, 45, 0.22),
    0 10px 24px -14px rgba(15, 60, 45, 0.14);
  --shadow-glow: 0 0 0 1px var(--primary-border), 0 8px 24px -8px var(--primary-glow);
}

html.light body {
  background:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(12, 158, 108, 0.07), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 100%, rgba(8, 145, 178, 0.05), transparent 60%),
    var(--bg-main);
}

html.light body::before {
  opacity: 0.02;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(31, 223, 148, 0.10), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 100%, rgba(43, 194, 232, 0.06), transparent 60%),
    var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  font-size: 15px;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.app-container {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  min-height: 100dvh;
  background: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.screen {
  display: none;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  flex-direction: column;
}

.screen.active {
  display: flex;
}

/* ============ AUTH SCREEN ============ */
.auth-wrapper {
  padding: 40px 24px 40px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}

.auth-brand {
  margin-top: 20px;
  text-align: center;
}

.brand-logo {
  width: 76px;
  height: 76px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 40%),
    linear-gradient(135deg, #17c988, #0c8f63 120%);
  color: #06110c;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 -10px 16px -6px rgba(0, 0, 0, 0.35) inset,
    0 18px 30px -10px rgba(16, 185, 129, 0.45),
    0 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #f4fffa, #b9dcc9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-subtitle {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.5;
}

.auth-card {
  margin-top: 32px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 30%),
    var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  margin-bottom: 24px;
  backdrop-filter: blur(20px);
  position: relative;
}

.auth-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: radial-gradient(ellipse at top, rgba(31, 223, 148, 0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.auth-info h2 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.auth-info p {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: -0.1px;
  position: relative;
}

.btn:active {
  transform: scale(0.97) translateY(1px);
}

.btn-primary {
  background: linear-gradient(160deg, var(--primary-hover), var(--primary-2) 100%);
  color: #04150e;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 -8px 14px -4px rgba(0, 0, 0, 0.3) inset,
    0 14px 24px -8px rgba(20, 185, 128, 0.5),
    0 3px 8px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-primary:active {
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.4) inset,
    0 4px 10px -4px rgba(20, 185, 128, 0.4);
}

.btn-secondary {
  background: var(--bg-subtle);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-raised-sm);
}

.btn-danger {
  background: linear-gradient(160deg, #ff6b78, #e23b4d);
  color: #2b0508;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 12px 22px -8px rgba(226, 59, 77, 0.5);
}

.btn-danger:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.3);
}

/* ============ HEADER ============ */
.app-header {
  padding: 18px 20px;
  background: var(--bg-surface);
  background: linear-gradient(180deg, var(--bg-surface), color-mix(in srgb, var(--bg-surface) 72%, transparent));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 50%), linear-gradient(135deg, #1fdf94, #0c8f63);
  color: #04150e;
  font-weight: 800;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 8px 16px -6px rgba(20, 185, 128, 0.5);
}

.user-meta {
  display: flex;
  flex-direction: column;
}

.greeting {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.user-name {
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.1px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.network-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 60%), var(--bg-surface-2);
  color: var(--text-secondary);
  box-shadow: var(--shadow-raised-sm);
  transition: var(--transition);
}

.network-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
  flex-shrink: 0;
  transition: var(--transition);
}

.network-status-icon {
  flex-shrink: 0;
  color: var(--text-secondary);
}

.network-status-label {
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
}

.network-status[data-state="offline"] {
  border-color: var(--danger-light);
}

.network-status[data-state="offline"] .network-status-dot {
  background: var(--danger);
  box-shadow: 0 0 0 3px var(--danger-light);
}

.network-status[data-state="offline"] .network-status-icon,
.network-status[data-state="offline"] .network-status-label {
  color: var(--danger);
}

@media (max-width: 380px) {
  .network-status-label {
    display: none;
  }

  .network-status {
    padding: 8px;
  }
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  border: 1px solid var(--border-color);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 60%), var(--bg-surface-2);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-raised-sm);
  transition: var(--transition);
}

.icon-btn:active {
  box-shadow: var(--shadow-pressed);
  transform: scale(0.94);
}

.app-body {
  flex: 1;
  padding: 22px 18px 100px;
  position: relative;
  z-index: 1;
}

.app-view {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 16px;
}

.app-view.active {
  display: flex;
  animation: viewIn 0.36s var(--ease);
}

@keyframes viewIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.view-header {
  margin-bottom: 6px;
  padding: 0 2px;
}

.view-title {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.view-desc {
  color: var(--text-secondary);
  font-size: 13.5px;
  margin-top: 2px;
}

.subview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  padding: 0 2px;
}

.back-btn {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  border: 1px solid var(--border-color);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 60%), var(--bg-surface-2);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-raised-sm);
  transition: var(--transition);
}

.back-btn:active {
  box-shadow: var(--shadow-pressed);
  transform: scale(0.94);
}

.subview-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.icon-btn-add {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: linear-gradient(160deg, var(--primary-hover), var(--primary-2));
  color: #04150e;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 10px 18px -6px rgba(20, 185, 128, 0.55);
  transition: var(--transition);
}

.icon-btn-add:active {
  transform: scale(0.92);
}

/* ============ DASHBOARD CARDS — the hero ============ */
.dashboard-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dash-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 35%),
    linear-gradient(175deg, var(--bg-surface-2), var(--bg-surface));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-raised);
  overflow: hidden;
}

.dash-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.dash-card:active {
  transform: scale(0.975) translateY(1px);
  box-shadow: var(--shadow-pressed);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 -6px 10px -4px rgba(0, 0, 0, 0.4) inset,
    0 8px 16px -6px rgba(0, 0, 0, 0.4);
}

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

.icon-emerald {
  background: linear-gradient(150deg, #34f0a4, #0c9e6c);
  color: #04150e;
}

.icon-teal {
  background: linear-gradient(150deg, #3ee8cc, #0d9488);
  color: #03150f;
}

.icon-cyan {
  background: linear-gradient(150deg, #4bd0f2, #0891b2);
  color: #021a20;
}

.icon-green {
  background: linear-gradient(150deg, #7be06a, #2e9e2e);
  color: #051a05;
}

.icon-emerald-dark {
  background: linear-gradient(150deg, #22c98d, #0a7a55);
  color: #021d13;
}

.icon-amber {
  background: linear-gradient(150deg, #f9cd82, #d98e2b);
  color: #1f1204;
}

.card-content {
  flex: 1;
  min-width: 0;
}

.card-content h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: -0.15px;
}

.card-content p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.arrow-icon {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.dash-card:active .arrow-icon {
  transform: translateX(3px);
}

/* ============ ONBOARDING TUTOR ============ */
.onboarding-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 5, 0.72);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

.tutor-card {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 40%), var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow-float);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-sizing: border-box;
  margin-bottom: 20px;
  backdrop-filter: blur(20px);
}

.tutor-avatar-wrapper {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 20px;
  background: var(--primary-light);
  overflow: hidden;
  border: 2px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.5);
}

.tutor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tutor-bubble {
  flex: 1;
  min-width: 0;
}

.tutor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
}

.tutor-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-display);
}

.tutor-step-badge {
  font-size: 11px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  font-weight: 700;
  border: 1px solid var(--primary-border);
}

.tutor-text {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-primary);
  word-break: break-word;
  margin-bottom: 9px;
}

.tutor-hint {
  font-size: 11px;
  color: var(--accent-amber);
  font-weight: 600;
}

/* ============ ANIMAL CARDS LIST ============ */
.cards-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.animal-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 35%),
    linear-gradient(175deg, var(--bg-surface-2), var(--bg-surface));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 15px;
  display: flex;
  gap: 14px;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-raised);
  transition: transform 0.3s var(--ease-spring);
}

.animal-card:active {
  transform: scale(0.98);
}

.animal-thumb {
  width: 82px;
  height: 82px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--bg-subtle);
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border-color);
}

.animal-info {
  flex: 1;
  padding-right: 30px;
  min-width: 0;
}

.animal-title {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}

.animal-meta-row {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.animal-price {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-display);
}

.card-actions-trigger {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
}

/* ============ TRANSACTIONS ============ */
.transactions-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-box {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 35%),
    linear-gradient(175deg, var(--bg-surface-2), var(--bg-surface));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-raised);
}

.box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.box-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.box-title svg {
  color: var(--primary);
}

.box-badge {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-display);
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-border);
}

.tx-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tx-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 4px 0;
}

.tx-item-name {
  font-weight: 700;
}

.tx-item-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.tx-item-price {
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-display);
}

/* ============ FEED CONTROL ============ */
.feed-hero-action {
  margin-bottom: 6px;
}

.hero-plus-btn {
  width: 100%;
  padding: 20px;
  background:
    linear-gradient(160deg, rgba(31, 223, 148, 0.16), rgba(31, 223, 148, 0.04)),
    var(--bg-surface);
  border: 1.5px dashed var(--primary-border);
  border-radius: var(--radius-lg);
  color: var(--primary);
  font-weight: 800;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.hero-plus-btn:active {
  transform: scale(0.98);
  background: linear-gradient(160deg, rgba(31, 223, 148, 0.22), rgba(31, 223, 148, 0.06)), var(--bg-surface);
}

.feed-group {
  margin-bottom: 6px;
}

.feed-group-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  padding-left: 2px;
}

.feed-item-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 35%),
    var(--bg-surface-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  box-shadow: var(--shadow-raised-sm);
}

.feed-info h4 {
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--font-display);
}

.feed-info span {
  font-size: 11.5px;
  color: var(--text-muted);
}

.feed-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feed-price-tag {
  font-weight: 800;
  font-size: 14.5px;
  color: var(--primary);
  font-family: var(--font-display);
}

.feed-options-wrapper {
  position: relative;
}

.feed-options-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.feed-options-btn:hover,
.feed-options-btn.active {
  background: var(--bg-subtle);
  color: var(--text-primary);
}

.feed-options-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 40%),
    var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: var(--shadow-float);
  width: 176px;
  display: none;
  z-index: 50;
  padding: 6px;
  backdrop-filter: blur(20px);
}

.feed-options-menu.active {
  display: block;
  animation: menuPop 0.2s var(--ease-spring);
}

.feed-options-item {
  width: 100%;
  padding: 10px 11px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 11px;
  cursor: pointer;
  transition: var(--transition);
}

.feed-options-item svg {
  flex-shrink: 0;
}

.feed-options-item.danger {
  color: var(--danger);
}

.feed-options-item:hover {
  background: var(--bg-subtle);
}

/* ============ REPORTS ============ */
.report-cards-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.report-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 35%),
    linear-gradient(175deg, var(--bg-surface-2), var(--bg-surface));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-raised);
}

.report-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.report-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.report-value {
  font-size: 17px;
  font-weight: 800;
  font-family: var(--font-display);
}

.report-value.primary {
  font-size: 24px;
  color: var(--primary);
}

.report-bar-bg {
  height: 8px;
  background: var(--bg-main-2);
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4) inset;
}

.report-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  position: relative;
}

.report-bar-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), transparent);
}

.report-bar-fill.green {
  background: linear-gradient(90deg, #0c9e6c, #34f0a4);
}

.report-bar-fill.teal {
  background: linear-gradient(90deg, #0d9488, #3ee8cc);
}

.report-bar-fill.amber {
  background: linear-gradient(90deg, #d98e2b, #f5b95c);
}

.grand-total-card {
  border: 1.5px solid var(--primary-border);
  background:
    linear-gradient(160deg, rgba(31, 223, 148, 0.14), rgba(31, 223, 148, 0.03)),
    var(--bg-surface);
  box-shadow: var(--shadow-glow), var(--shadow-raised);
}

.report-formula-note {
  font-size: 11.5px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ============ DROPDOWN MENU ============ */
.menu-dropdown-wrapper {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 40%),
    var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  box-shadow: var(--shadow-float);
  width: 220px;
  display: none;
  z-index: 50;
  padding: 8px;
  backdrop-filter: blur(20px);
}

.dropdown-menu.active {
  display: block;
  animation: menuPop 0.2s var(--ease-spring);
}

@keyframes menuPop {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dropdown-item {
  width: 100%;
  padding: 11px 12px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.dropdown-item.danger {
  color: var(--danger);
}

.dropdown-item:hover {
  background: var(--bg-subtle);
}

/* ============ MODALS ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 5, 0.65);
  backdrop-filter: blur(8px);
  display: none;
  z-index: 100;
  align-items: flex-end;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.2s ease-out;
}

.modal-overlay.centered {
  align-items: center;
  padding: 20px;
}

.modal-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 30%),
    var(--bg-surface);
  width: 100%;
  max-width: 480px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  display: flex;
  flex-direction: column;
  max-height: 92vh;
  box-shadow: var(--shadow-float);
  border: 1px solid var(--border-strong);
  border-bottom: none;
  animation: sheetUp 0.32s var(--ease-spring);
}

@keyframes sheetUp {
  from {
    transform: translateY(40px);
    opacity: 0.6;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-card.dialog-card {
  border-radius: 26px;
  padding: 24px 22px;
  text-align: center;
  border-bottom: 1px solid var(--border-strong);
  animation: dialogPop 0.25s var(--ease-spring);
}

@keyframes dialogPop {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.full-page-modal {
  height: 92vh;
}

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

.modal-title {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.modal-close-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body {
  padding: 22px;
}

.modal-footer {
  padding-top: 18px;
}

.scrollable-body {
  overflow-y: auto;
  flex: 1;
}

/* ============ FORMS ============ */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

.req {
  color: var(--danger);
}

.opt {
  color: var(--text-muted);
  font-weight: 400;
}

.form-control {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-main-2);
  color: var(--text-primary);
  font-size: 14.5px;
  outline: none;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35) inset;
  font-family: var(--font-sans);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light), 0 2px 6px rgba(0, 0, 0, 0.35) inset;
}

.form-control.is-invalid {
  border-color: var(--danger);
}

.readonly-field {
  background: var(--bg-subtle);
  color: var(--text-muted);
}

.textarea {
  resize: none;
}

.field-error {
  font-size: 11.5px;
  color: var(--danger);
  margin-top: 5px;
  display: block;
  min-height: 14px;
  font-weight: 600;
}

.label-with-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.photo-picker-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.photo-previews-container {
  display: flex;
  gap: 10px;
}

.photo-preview-item {
  width: 74px;
  height: 74px;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.5);
}

.photo-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-photo-btn {
  position: absolute;
  top: 3px;
  right: 3px;
  background: rgba(6, 10, 8, 0.75);
  backdrop-filter: blur(4px);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.photo-upload-box {
  width: 74px;
  height: 74px;
  border-radius: var(--radius-sm);
  border: 1.5px dashed var(--border-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 10px;
  gap: 4px;
  cursor: pointer;
  background: var(--bg-main-2);
  transition: var(--transition);
}

.photo-upload-box:active {
  background: var(--bg-subtle);
}

/* ============ DIALOGS ============ */
.dialog-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 10px 18px -6px rgba(0, 0, 0, 0.4);
}

.dialog-icon.warning {
  background: linear-gradient(150deg, #ffcf7d, #f5a23c);
  color: #341a00;
}

.dialog-icon.danger {
  background: linear-gradient(150deg, #ff8b96, #e23b4d);
  color: #340008;
}

.dialog-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.dialog-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 22px;
  line-height: 1.5;
}

.dialog-actions {
  display: flex;
  gap: 10px;
}

.countdown-badge {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 9px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}

/* ============ EMPTY STATES ============ */
.empty-state {
  text-align: center;
  padding: 52px 20px;
  color: var(--text-muted);
}

.empty-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 4px;
  font-family: var(--font-display);
}

/* ============ GALLERY / DETAILS ============ */
.gallery-main-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  box-shadow: var(--shadow-raised);
}

.gallery-thumbs {
  display: flex;
  gap: 9px;
  margin-bottom: 20px;
}

.gallery-thumb {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: var(--transition);
}

.gallery-thumb.active {
  border-color: var(--primary);
  opacity: 1;
  box-shadow: 0 0 0 3px var(--primary-light);
}

.detail-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 4px 16px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--text-secondary);
}

.detail-val {
  font-weight: 700;
  text-align: right;
  max-width: 60%;
}

/* ============ TOASTS ============ */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 200;
  pointer-events: none;
}

.toast {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 40%),
    var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideUp 0.25s var(--ease-spring);
  backdrop-filter: blur(16px);
}

.toast svg {
  color: var(--primary);
  flex-shrink: 0;
}

.toast.error {
  border-color: var(--danger);
  color: var(--danger);
}

.toast.error svg {
  color: var(--danger);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 10px;
}

/* ============ FOCUS VISIBILITY (a11y) ============ */
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.dash-card:focus-visible,
.animal-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
/* ============ ONBOARDING TOUR ============ */
.tour-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  pointer-events: none;
}

.tour-overlay.active {
  display: block;
}

.tour-spotlight {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 0 0 9999px rgba(2, 6, 4, 0.78);
  transition: top 0.4s var(--ease-spring), left 0.4s var(--ease-spring),
    width 0.4s var(--ease-spring), height 0.4s var(--ease-spring);
  pointer-events: none;
}

.tour-spotlight::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(31, 223, 148, 0.18), 0 0 24px rgba(31, 223, 148, 0.35);
  animation: tourPulse 1.8s ease-in-out infinite;
}

@keyframes tourPulse {

  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

.tour-tooltip {
  position: absolute;
  width: min(340px, calc(100vw - 40px));
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 40%),
    var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  padding: 18px 18px 16px;
  backdrop-filter: blur(20px);
  pointer-events: auto;
  transition: top 0.4s var(--ease-spring), left 0.4s var(--ease-spring);
}

.tour-skip-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 6px;
  transition: var(--transition);
}

.tour-skip-btn:hover {
  color: var(--text-primary);
}

.tour-tooltip-body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-right: 70px;
}

.tour-mascot {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-mascot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(31, 223, 148, 0.3));
}

.tour-step-badge {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}

.tour-tooltip-title {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.tour-tooltip-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.tour-tooltip-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  gap: 12px;
}

.tour-dots {
  display: flex;
  gap: 5px;
}

.tour-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: var(--transition);
}

.tour-dot.active {
  background: var(--primary);
  width: 16px;
  border-radius: 3px;
}

.tour-next-btn {
  padding: 9px 18px;
  font-size: 13px;
  width: auto;
  min-width: 0;
}

/* ============ SEARCH BAR ============ */
.search-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  height: 48px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin: 4px 20px 16px;
  color: var(--text-muted);
  box-shadow: var(--shadow-raised-sm);
}

.search-bar-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-sans);
}

.search-bar-input::placeholder {
  color: var(--text-muted);
}

/* ============ TX FILTER TABS ============ */
.tx-filter-tabs {
  display: flex;
  gap: 8px;
  padding: 0 20px;
  margin-bottom: 10px;
}

.tx-filter-tab {
  flex: 1;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-surface-2);
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.tx-filter-tab.active {
  background: var(--primary-light);
  border-color: var(--primary-border);
  color: var(--primary);
}

.tx-sort-row {
  display: flex;
  gap: 6px;
  padding: 0 20px;
  margin-bottom: 18px;
  overflow-x: auto;
}

.tx-sort-btn {
  flex-shrink: 0;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-muted);
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tx-sort-btn.active {
  background: var(--bg-subtle);
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.section-box.filtered-hidden {
  display: none;
}

/* ============ REPORT CHART ============ */
.report-chart-card {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 40%),
    var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-raised-sm);
}

.report-chart-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}

.report-chart-canvas-wrapper {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-chart-empty {
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  padding: 40px 0;
}

.report-chart-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-secondary);
  font-weight: 600;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* ============ PDF EXPORT BUTTON EXTRA ============ */
.dropdown-item.pdf-item svg {
  color: var(--accent-cyan);
}
