body { 
  font-family: Arial, sans-serif; 
  text-align: center; 
}

button {
  margin: 5px;
  padding: 10px 20px;
  font-size: 18px;
  background: gold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#question { 
  font-size: 24px; 
  margin: 20px 0; 
}

#answerArea button { 
  margin: 5px; 
}

#feedback { 
  font-size: 20px; 
  margin: 10px; 
}

/* =========================
   Image Answer Buttons ONLY
   ========================= */
#literacy-answerArea button.img-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 8px;
  padding: 6px;
  border: 2px solid #ddd;
  border-radius: 12px;
  background: #fff !important;   /* ✅ override gold background */
  cursor: pointer;
}

#literacy-answerArea button.img-option:hover {
  border-color: gold;
}

#literacy-answerArea button.img-option img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ✅ Extra strong override for background */
div#literacy-answerArea button.img-option {
  background: #fff !important;
}
