 .submission-card {
      max-width: 400px;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      background: #fff;
    }
    .submission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.submission-list li {
  position: relative;
  padding-left: 26px;
  margin: 12px 0;
}

/* Arrow before text */
.submission-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #0d6efd;
  font-size: 14px;
  animation: arrowBlink 1.4s infinite;
}

/* Delay for smooth stagger */
.submission-list li:nth-child(odd)::before {
  animation-delay: 0.3s;
}
.submission-list li:nth-child(even)::before {
  animation-delay: 0.6s;
}

@keyframes arrowBlink {
  0%, 100% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
  50% {
    opacity: 0.3;
    transform: translateY(-50%) translateX(4px);
  }
}

/* Link styling */
.submission-list a {
  text-decoration: none;
  color: #0d6efd;
  font-weight: 500;
}

.submission-list a:hover {
  text-decoration: underline;
}


