

.content-wrapper {
  width: 68rem;
  max-height: 36rem;
  display: flex;
  padding-top:6rem;
}

.text-container {
  width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2rem;
  max-height: 36rem;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
}

.text-line {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.text-line p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
}

.verb-hint {
  font-size: 1.1rem;
  font-style: italic;
  color: #3498db;
  margin-left: 1rem;
}

.fill-in {
  width: 5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  font-size: 1.2rem;
  border: 0.2rem solid #F9B002;
  border-radius: 1.5rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  margin: 0 0.3rem;
}

.fill-in:focus {
  outline: none;
  border-color: #00699f;
  box-shadow: 0 0 0.3rem rgba(52, 152, 219, 0.5);
  background-color: rgba(255, 255, 255, 0.9);
}

/* Visual feedback for correct/incorrect answers */
.fill-in.correct {
  background-color: rgba(37, 129, 116, 0.1);
  border-color: #258174;
}

.fill-in.incorrect {
  background-color: rgba(255, 0, 0, 0.1);
  border-color: #ff0000;
}

/* Custom scrollbar */
.text-container::-webkit-scrollbar {
  width: 0.8rem;
}

.text-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0.4rem;
}

.text-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 0.4rem;
}

.text-container::-webkit-scrollbar-thumb:hover {
  background: #aaa;
} 
.image-container{
  padding: 1rem;
  width:22rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
}
.image-container img{
  width:22rem;
}