/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jan 10 2026 | 02:00:32 */
.scroll-container {
  height: 400px;
  overflow: hidden;
  padding: 10px;
}

.scroll-text {
  display: inline-block;
  animation: scroll-up 20s linear infinite;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.list-item { 
  color: #fff; 
  margin-bottom: 10px; 
}

.list-item.highlight { 
  color: #E267A8; 
  font-weight: 600; 
}

/* Only show ribbon when popular */
.agendaContainer .is-popular {
    position: absolute;
    top: 0;
    right: 0;
	width: 120px;
	padding: 10px;
    background: #E267A8;
    color: #000;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-align: center;
	border-radius: 0 0 0 15px;
    z-index: 10;
}
.agendaContainer.popular-parent {
  background-color: #f7f7f7!important;
}