/* Styl pro Top 10 emoji medaile */

.top-item-vertical {
  position: relative;
  margin: 10px;
  text-align: center;
}

.top-number {
  font-weight: bold;
  margin-bottom: 4px;
  color: white;
}

.top-votes {
  margin-top: 6px;
  font-weight: bold;
  color: white;
  font-size: 15px;
}

.thumb {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}

.thumb:hover {
  transform: scale(1.05);
}

.emoji-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 22px;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.6));
  animation: pulse 2s infinite;
}

/* Zvýraznění TOP 3 */
.top-item-vertical.gold img {
  outline: 3px solid gold;
  box-shadow: 0 0 15px gold;
}

.top-item-vertical.silver img {
  outline: 3px solid silver;
  box-shadow: 0 0 15px silver;
}

.top-item-vertical.bronze img {
  outline: 3px solid #cd7f32;
  box-shadow: 0 0 15px #cd7f32;
}

/* Pulzující efekt */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}