/* Bottom Ticker Container */
.bottom-ticker {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 14px;
  color: #333;
  background-color: rgb(250, 250, 250);

  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;

  border-top: 1px solid #ccc; /* grey border */

}

/* Label */
.ticker-label {
  padding: 0 15px;
  font-weight: bold;
  white-space: nowrap;
  color: #555;
  border-right: 1px solid #ddd;
  margin-right: 10px;
}

/* Wrapper */
.ticker-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* Scrolling Text */
.ticker-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: tickerScroll 18s linear infinite;
}

/* Animation */
@keyframes tickerScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Pause on Hover */
.ticker-text:hover {
  animation-play-state: paused;
}

/* Prevent content hiding behind ticker */
body {
  padding-bottom: 40px;
}