
/* Flash News Marquee Scrolling */
.flash-news-marquee {
  background: #d32f2f;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.marquee-container {
  display: flex;
  align-items: center;
}

.marquee-label {
  background: #b71c1c;
  padding: 8px 15px;
  font-weight: bold;
  font-size: 14px;
  margin-right: 10px;
}

.marquee-content {
  flex: 1;
  overflow: hidden;
}

.marquee-scroll {
  display: inline-block;
  animation: scroll-left 120s linear infinite;
  padding-left: 100%;
}

/* Pause animation on hover */
.marquee-scroll:hover {
  animation-play-state: paused;
}

.news-item a {
  color: white;
  text-decoration: none;
  margin-right: 5px;
}

.news-item a:hover {
  text-decoration: underline;
}

.separator {
  margin: 0 5px;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}/*# sourceMappingURL=theme-style.css.map */