/* Front-end latest winners list */
.slb-prize-winners__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.slb-prize-winners__item {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  background: var(--slb-white, #fff);
}
.slb-prize-winners__name {
  font-weight: 700;
}
.slb-prize-winners__won {
  color: #5A5448;
  font-size: 0.92rem;
}
.slb-prize-winners__empty {
  color: #8A8278;
  font-style: italic;
}

/* Claim popup */
.slb-prize-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.slb-prize-popup {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 2.25rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.slb-prize-popup h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}
.slb-prize-popup ul {
  text-align: left;
  margin: 1rem 0;
  padding-left: 1.25rem;
}
.slb-prize-popup li {
  margin-bottom: 0.4rem;
}
.slb-prize-popup button {
  margin-top: 0.5rem;
}
