body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 20px;
  background-color: #f0f0f0;
}
#form-container, #start-screen, #quiz-area, #practice-selection, #speaking-test-area, #final-score-area, .step {
  margin: 20px auto;
  max-width: 800px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
#start-screen, #practice-selection, #final-score-area {
  display: none;
}
button {
  padding: 10px 20px;
  margin: 10px;
  font-size: 16px;
  cursor: pointer;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
}
button:hover {
  background-color: #45a049;
}
#image-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin: 10px 0;
}
#question-image {
  width: 400px;
  height: 400px;
  object-fit: contain;
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
#speaking-result {
  margin: 10px 0;
  font-size: 18px;
}
.answer-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.green-screen {
  background-color: #d4edda;
}
.orange-screen {
  background-color: #fff3cd;
}
select, textarea {
  padding: 10px;
  font-size: 16px;
  margin: 10px;
  width: calc(100% - 20px);
  border: 1px solid #ccc;
  border-radius: 4px;
}
form {
  text-align: left;
}
label {
  display: block;
  margin: 10px 0 5px;
}
input[type="text"] {
  width: calc(100% - 20px);
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
.image-inputs {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 10px;
}
.image-inputs input[type="text"] {
  width: calc(33.33% - 10px);
  font-size: 14px;
}
.question-entry {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
pre {
  text-align: left;
  background: #f8f8f8;
  padding: 10px;
  border-radius: 4px;
  max-height: 300px;
  overflow-y: auto;
}