@keyframes marquee {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

.notice-container {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  padding: 10px 0;
  white-space: nowrap;
  position: relative;
  border: 2px solid #008000; /* Green border */
}

.notice-wrapper {
  display: flex;
  gap: 50px;
  will-change: transform;
  animation: marquee linear infinite;
  animation-duration: var(--marquee-speed);
  min-width: max-content; /* Ensures all notices are in one line */
}

.notice {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #008000;
  padding-right: 50px;
}
