/* public/components/analytics/analytics.css */

.collapsible-section .section-header {
  transition: background 0.2s ease, border-color 0.2s ease;
}

.collapsible-section .section-header:hover {
  background: var(--bg2) !important;
}

.collapsible-section .chevron {
  font-size: 10px;
  color: var(--text3);
  transition: transform 0.25s ease;
}

.collapsible-section.open .chevron {
  transform: rotate(180deg);
}

.collapsible-section .section-body {
  animation: fadeInDown 0.2s ease-out;
}

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

.funnel-step-card {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.funnel-step-card:hover {
  transform: translateY(-2px);
}

#analytics-chart circle {
  transition: r 0.2s ease;
}

#analytics-chart circle:hover {
  r: 6;
  cursor: pointer;
}
