.hidden { display: none !important; }

.info-box {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  text-align: left;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-5px);}
  to {opacity: 1; transform: translateY(0);}
}

.prize-list {
  list-style: none;
  padding: 0;
}

.prize-list li {
  display: flex;
  align-items: center;
  margin: 8px 0;
  gap: 8px;
  font-weight: bold;
}

.prize-list img {
  width: 25px;
  height: 25px;
}

.winner-table {
  width: 100%;
  border-collapse: collapse;
}

.winner-table th, .winner-table td {
  padding: 6px;
  border-bottom: 1px solid #ccc;
  text-align: center;
}
