/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 *
 *= require tailwind
 *= require_tree .
 *= require_self
 */

/* Document Marquee Animation Styles */
@keyframes marqueeVertical1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes marqueeVertical2 {
  0% {
    transform: translateY(-25%);
  }
  100% {
    transform: translateY(-75%);
  }
}

@keyframes marqueeVertical3 {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* Document marquee content styling */
.document-marquee .marquee-content {
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/* Pause animation on hover */
.document-marquee [data-document-marquee-target="column"]:hover .marquee-content {
  animation-play-state: paused !important;
}

.arrow {
  background-color: white;
  border-radius: 50%;
  border: 1px solid black;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.left-arrow {
  left: -20px;
}

.right-arrow {
  right: -20px;
}
