/* Vanilla Infinite Marquee CSS - Placeholder */
/* This file contains the CSS for the vanilla infinite marquee library */
/* In a real implementation, this would contain the actual library CSS */

.marquee-container {
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
