.breakingnews {
  background-color: #dd0000; /* Red background for breaking news */
  font-family: 'Poppins', sans-serif;
  color: #fff; /* White text */
  padding: 2px 3px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 3px;
  line-height: 1.2; /* Adjusted for better text alignment */
  font-size: 15px;
}
.tcontainer {
  width: 100%;
  overflow: hidden;
}
.tcontainer a {
  text-decoration: none;
  color: #000; /* Black text for links */
}
.ticker-wrap {
  background-color: #1c1c1c;
  width: 100%;
  padding-left: 100%; /* For ticker scroll effect */
  font-family: 'Poppins', serif;
  font-size: 21px;
  line-height: 1.5; /* Improved text readability */
  font-weight: 800;
}
@keyframes ticker {
  100% {
    transform: translate3d(-100%, 0, 0); /* Smooth scrolling effect */
  }
}
.ticker-move {
  display: inline-block;
  white-space: nowrap;
  padding-right: 100%; /* Smooth looping scroll */
  animation: ticker 100s linear infinite;
}
.ticker-move:hover {
  animation-play-state: paused; /* Pause animation on hover */
}
.ticker-item {
  display: inline-block;
  padding: 4px;
  font-size: 15px;
}
