/* News ticker styles */
.news-ticker-container {
  background-color: #ff5100; 
  color: white;
  padding: 10px 0;
  margin: 20px 0;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}

.news-ticker {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%; 
  animation: ticker-scroll 15s linear infinite;
}

.ticker-content:hover {
  animation-play-state: paused;
}

.breaking-news {
  font-weight: bold;
  margin-right: 20px;
  text-transform: uppercase;
}

.ticker-text {
  font-weight: bold;
  margin-right: 40px;
  color: #ffff00; 
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}