/* 4. Notification Ticker */
.notification-ticker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color:#b0d1f3;
  color: #000000;
  margin-top: 15px;
  padding: 10px 20px;
  overflow: hidden;
  gap: 10px;
  font-weight: 500;
  font-weight: bold;
  border-top: 1px solid #212529;
  border-bottom: 1px solid #212529;
}

.notice-label {
  background-color: #FFD700;
  color: #212529;
  padding: 6px 6px;
  font-weight: bold;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: bold;
}


/* =================== NOTIFICATION TICKER =================== */
.ticker-wrapper {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-text {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 15s linear infinite;
  animation-play-state: running;
  
  
}

.ticker-text:hover {
  animation-play-state: paused;
}


@keyframes scrollText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

#toggleTicker {
  background-color: #FFD700;
  color: #212529;
  border: 1px solid #ccc;
  padding: 6px 6px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

#pauseButton {
  background-color: #FFD700;
  color:#212529;
  border: 1px solid #ccc;
  padding: 6px 6px;
  border-radius: 5px;
  cursor: pointer;
  pointer-events: auto;
  z-index: 10;
  font-weight: bold;
}
