body {
  background: #021317;
  color: #bce9fa;
  font-family: sans-serif;
  text-align: center;
  padding: 20px;
}

#game-board {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.category-column {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.category-title {
  background: #49c2f2;
  color: #021317;
  font-weight: bold;
  padding: 10px;
}

.question-button {
  padding: 10px;
  background-color: #49c2f2;
  color: #021317;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.question-button:disabled {
  background-color: #555;
  cursor: not-allowed;
}

#question-modal {
  position: fixed;
  top: 30%;
  left: 25%;
  width: 50%;
  background: #021317;
  border: 2px solid #49c2f2;
  padding: 20px;
}

.hidden {
  display: none;
}

#choices button {
  margin: 5px;
  padding: 10px;
  font-weight: bold;
}
.choice-button.selected {
  background-color: #bce9fa;
  font-weight: bold;
}

.submit-button {
  margin-top: 10px;
  padding: 10px;
  font-weight: bold;
  background-color: #49c2f2;
  color: #021317;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.rationale {
  margin-top: 10px;
  color: #bce9fa;
  font-style: italic;
}
.post {
    background-color: #111a25;
    color: #bce9fa;
    padding: 15px;
    border: 1px solid #21b5ef;
    border-radius: 8px;
    margin-bottom: 15px;
}
