/* Additional custom styles to ensure 1:1 match with original Tailwind */
/* Most styling is handled by Tailwind CDN */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Ensure smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Fix for any specific hover or transitions already in Tailwind */
.group:hover .group-hover\\:scale-105 {
  transform: scale(1.05);
}