/**
 * 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-radius: 1.5rem;
  text-align: center;
  
}

/*
input:placeholder-shown {
  background: #ffe5e5;
}
input:not(:placeholder-shown) {
  background: #e5ffe7;
}
*/
.table-container {
  max-width: 68rem;
  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 .fill-in.correct {
  background-color: rgba(37, 129, 116, 0.1);
  border-color: #258174;
}

.seasons-table .fill-in.incorrect {
  background-color: rgba(255, 0, 0, 0.1);
  border-color: #ff0000;
} 
 .fill-in{
  border: 0.2rem solid #F9B002;
  border-radius: 1.5rem;
 }
 .fill-in:focus{
  border-color: #00699f;
 }
 