/* Map container */
#ieiow-map {
  width: 100%;
  height: 500px;
  margin-bottom: 15px;
  border: 2px solid #333;
  border-radius: 8px;
}

/* Info panel */
#ieiow-landmark-info {
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 10px;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* Buttons */
#ieiow-start-btn,
#ieiow-reset-btn {
  display: inline-block;
  padding: 10px 18px;
  margin: 10px 5px;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#ieiow-start-btn:hover,
#ieiow-reset-btn:hover {
  background: #005f87;
}

/* Quiz section */
#ieiow-quiz {
  margin-top: 15px;
}

/* Quiz question */
#ieiow-quiz h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Quiz options list */
.ieiow-options {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each option */
.ieiow-option {
  background: #f2f2f2;
  color: #000; /* ensures text is black */
  padding: 10px 12px;
  margin: 6px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Hover effect */
.ieiow-option:hover {
  background: #e0e0e0;
}

/* Correct answer */
.ieiow-option.correct {
  background: #4caf50 !important; /* green */
  color: #fff !important;
}

/* Wrong answer */
.ieiow-option.wrong {
  background: #f44336 !important; /* red */
  color: #fff !important;
}

/* Score panel */
#ieiow-score {
  margin-top: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fafafa;
}
