/**
 * Marc mag gar nichts - Exercise Styles
 * Styles for the thoughts and sentences exercise
 */

.exercise-container {
  width: 80rem;
  height: 40rem;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.thoughts-container {
  position: relative;
  width: 40rem;
  height: 36rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image {
  width: 20rem;
  height: 20rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
}

.thought-images {
  position: absolute;
  width: 100%;
  height: 100%;
}

.thought-image {
  position: absolute;
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.thought-image:nth-child(1) {
  top: 0;
  left: 0;
  transform: rotate(-15deg);
}

.thought-image:nth-child(2) {
  top: 0;
  right: 0;
  transform: rotate(15deg);
}

.thought-image:nth-child(3) {
  bottom: 0;
  left: 0;
  transform: rotate(-10deg);
}

.thought-image:nth-child(4) {
  bottom: 0;
  right: 0;
  transform: rotate(10deg);
}

.thought-image:hover {
  transform: scale(1.1) rotate(0);
  z-index: 1;
}

.sentences-container {
  width: 36rem;
  height: 17rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
}

.sentence {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #333;
}

.fill-in {
  width: 8rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  font-size: 1.2rem;
  border: 0.2rem solid #00699F;
  border-radius: 0.5rem;
  text-align: center;
  background-color: #fff;
  transition: all 0.2s ease;
  margin: 0 0.5rem;
}

.fill-in:focus {
  outline: none;
  border-color: #004D7F;
  box-shadow: 0 0 0.3rem rgba(0, 105, 159, 0.3);
}

/* 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;
} 
 /* Umlaut keyboard helper styling */
 