* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #181824;
  color: #f5f7ff;
}

.app {
  max-width: 760px;
  margin: 0 auto;
  padding: 16px;
}

.card {
  background: #242438;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
}

.row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

button,
input {
  border: 0;
  border-radius: 8px;
  padding: 10px;
}

button {
  cursor: pointer;
  background: #5b7bff;
  color: white;
}

input {
  width: 100%;
  background: #121220;
  color: #f5f7ff;
}

.muted {
  opacity: 0.8;
}

.hidden {
  display: none;
}

#drawCanvas {
  width: min(90vw, 320px);
  height: min(90vw, 320px);
  touch-action: none;
  border: 2px solid #777;
  background: white;
}

img {
  max-width: 100%;
  border-radius: 8px;
  background: white;
}

#optionsList button {
  width: 100%;
  margin-top: 8px;
  text-align: left;
}

#optionsList button:disabled {
  background: #4a4a58;
  color: #c6c8d6;
  cursor: not-allowed;
  opacity: 1;
}

#optionsList button.selected-vote,
#optionsList button.selected-vote:disabled {
  background: #2f9e44;
  color: #ffffff;
}
