.ccert-completions {
  background: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  max-width: 600px;
  margin: 20px auto;
}

.ccert-completions h3 {
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
  text-align: center;
}

.ccert-completions ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.ccert-completions li {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 0.6s ease forwards;
  border-bottom: 1px solid #f1f1f1;
  padding: 8px 0;
  font-size: 15px;
  color: #444;
}

.ccert-completions li strong {
  color: #0073aa;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated ticker mode */
.ccert-animated ul {
  overflow: hidden;
  height: 1.5em;
}

.ccert-animated ul li {
  display: none;
  animation: tickerFade 1s ease forwards;
}

@keyframes tickerFade {
  0% {opacity: 0; transform: translateY(10px);}
  20%,80% {opacity: 1; transform: translateY(0);}
  100% {opacity: 0; transform: translateY(-10px);}
}
