/**
 * Zum Frühstück - Exercise Styles
 * Styles for the eating and drinking exercise
 */

.exercise-container {
  width: 80rem;
  height: 40rem;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 100%;
}

.image-left, .image-right {
  width: 20rem;
  height: 30rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.sentences-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
}

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

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

.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;
}

/**
 * Die Jahreszeiten - Exercise Styles
 * Styles for the seasons table and related elements
 */

.seasons-table {
  width: 68rem;
  border-collapse: collapse;
  margin-top: 2rem;
}

.seasons-table th, .seasons-table td {
  padding: 1rem;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ccc;
}
.seasons-table th img{
  width:10rem;
}
.seasons-table th {
  background-color: #f0f0f0;
  font-weight: bold;
}

.seasons-table td img {
  max-width: 10rem;
  height: auto;
  margin-bottom: 0.5rem;
}

.seasons-table input[type="text"] {
  width: 7rem;
  padding: 0.5rem;
  font-size: 1.2rem;
  border: 1px solid #00699F;
  border-radius: 0.5rem;
  text-align: center;
}

.table-container {
  max-width: 70rem;
  margin: 0 auto;
  overflow-x: auto;
}

.instructions {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.season-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.prefilled {
  font-weight: bold;
}

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

.seasons-table input.incorrect {
  background-color: rgba(255, 0, 0, 0.1);
  border-color: #ff0000;
} 
 /* Umlaut keyboard helper styling */
 