body {
  font-family: Arial;
  margin: 0;
  background: #111;
  color: white;
  text-align: center;
}

.container {
  padding: 15px;
  max-width: 500px;
  margin: auto;
}

/* ✅ Input + dropdown styling */
input, select {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  font-size: 1.1rem;
  border-radius: 10px;
  border: none;
  box-sizing: border-box;
}

/* ✅ Make dropdown visible (dark theme) */
select {
  background: #222;
  color: white;
}

/* ✅ Buttons */
button {
  padding: 15px;
  font-size: 1.1rem;
  border-radius: 12px;
  border: none;
  color: white;
  cursor: pointer;
}

/* Answer colours */
button:nth-child(1){background:#e21b3c;}
button:nth-child(2){background:#1368ce;}
button:nth-child(3){background:#d89e00;}
button:nth-child(4){background:#26890c;}

/* Main start button */
.primary {
  background: purple;
  width: 100%;
}

/* Layout */
.choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.poke-img {
  width: 250px;
}

/* Timer bar */
#timer-bar-container {
  width: 100%;
  height: 10px;
  background: #333;
  margin-bottom: 10px;
}

#timer-bar {
  height: 100%;
  width: 100%;
  background: lime;
  transition: width 1s linear;
}

/* States */
.hidden {
  display: none;
}

.correct {
  outline: 4px solid lime;
}

.wrong {
  opacity: 0.5;
}
#leaderboard {
  list-style: none;
  padding-left: 0;
}