.sbt-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.sbt-scroll-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
}

.sbt-list {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.6em; /* adjust based on font size */
  white-space: nowrap;
  will-change: transform;
  margin-left: 0;
  padding: 0;
  list-style: none;
}


.sbt-list li {
  display: inline-block;
  margin: 0 20px;
}


.sbt-horizontal ul,
.sbt-vertical ul {
  margin: 0;
  padding: 0;
  list-style: none;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

.sbt-horizontal ul {
  display: flex;
  flex-wrap: nowrap;
  animation-name: sbt-scroll-horizontal;
}

.sbt-vertical ul {
  display: block;
  animation-name: sbt-scroll-vertical;
}

.sbt-horizontal li {
  display: inline-block;
  margin-right: 40px;
  white-space: nowrap;
}

.sbt-vertical li {
  margin-bottom: 20px;
}

@keyframes sbt-scroll-horizontal {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes sbt-scroll-vertical {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
