body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 20px;
  background-color: #f0f0f0;
}

.green-screen {
  background-color: #ccffcc !important;
}

.orange-screen {
  background-color: #ffebcc !important;
}

#mode-selection, #type-selection, #quiz-area {
  margin-bottom: 20px;
  display: none; /* Hidden by default, shown via JS */
}

#mode-selection {
  display: block; /* Visible on page load */
}

button {
  margin: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #4CAF50;
  color: white;
}

button:hover {
  background-color: #45a049;
}

button.selected {
  background-color: #2196F3;
}

#image-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

#left-image, #right-image {
  width: 150px;
  height: auto;
  object-fit: contain;
}

#typing-input {
  margin-bottom: 10px;
  padding: 8px;
  font-size: 16px;
}

#score {
  font-size: 18px;
  margin-bottom: 10px;
}

.correct-circle {
  border: 4px solid #00cc00;
  border-radius: 10px;
}

.image-label {
  display: block;
  font-size: 16px; /* Increased from 14px for larger text */
  margin-top: 5px;
}

[data-mode="typing-test"] .image-label {
  display: none;
}