/* Voxogo Flow demo UI — minimal custom CSS on top of Tailwind CDN. */

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

/* Smooth scrollbar in dark theme. */
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb {
  background: rgb(51 65 85 / 0.7);
  border-radius: 4px;
}
*::-webkit-scrollbar-thumb:hover { background: rgb(71 85 105 / 0.9); }

/* Scroll-margin so anchor jumps clear the sticky nav. */
section[id] { scroll-margin-top: 4rem; }

/* Pre/code inside event cards stays compact. */
pre { tab-size: 2; }
