/* Kontainer untuk marquee */

.marquee-container {
  width: 100%;
  max-width: 500px;
  background-color: #ffffff;
  overflow: hidden;
  /*Penting: menyembunyikan teks yang keluar dari kontainer;*/
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  border: 1px solid #e5e7eb;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 16px;
}

/* Elemen teks yang akan berjalan */

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  animation: marquee-animation 20s linear infinite;
}

/* Definisi animasi menggunakan @keyframes */

@keyframes marquee-animation {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Opsi untuk menghentikan animasi saat kursor mouse di atasnya */

.marquee-container:hover .marquee-text {
  animation-play-state: paused;
}

