/* Random Draw — single-winner raffle.
   Reuses hidden_score.css for the card, stage, and winner-block styling.
   The shooter's name is the hero here (there's no winning score), so the
   rolling name is enlarged and a secondary PITA line sits beneath it. */

.draw-stage .stage-name {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.1;
}
.draw-stage .stage-sub {
  margin-top: 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  opacity: 0.85;
}
.draw-stage.rolling .stage-sub { color: rgba(255, 255, 255, 0.75); }
.draw-stage.final .stage-name {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(242, 193, 78, 0.6);
}
.draw-stage.final .stage-sub { color: white; }

.draw-detail {
  margin-top: 0.6rem;
  font-size: 0.85rem;
}

/* Uploaded-file list */
.file-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.35rem;
}
.file-list li {
  font-size: 0.9rem;
  background: var(--card, #fff);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.4rem 0.7rem;
}

/* Roster columns */
#rosterTable .col-cls    { width: 60px; }
#rosterTable .col-status {
  width: 130px;
  font-size: 0.82rem;
  color: var(--muted);
}
#rosterTable .col-src {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
