/* Google Font - League Spartan */
@font-face {
  font-family: 'League Spartan';
  src: url('../assets/fonts/LeagueSpartan-VariableFont_wght.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-stretch: 100%;
  font-style: normal;
  font-display: swap;
}

/* Main Container */
.exercise-container {
  width: 68rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  margin-top: 2rem;
}

.main-content {
  display: flex;
  width: 68rem;
  margin: 0 auto;
}

.content-container {
  display: flex;
  width: 100%;
  gap: 2rem;
}

/* Audio Container – struktura kot pri ostalih nalogah, brez premika položaja */
.audio-container {
  flex: 0 0 auto;
}

/* Slika in trditve */
.image-and-statements {
  display: flex;
  flex: 1 1 0;
  gap: 2rem;
}

.photo-column {
  flex: 0 0 auto;
  width: 20rem;
  max-height: 28rem;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 0.1rem solid #e0e8ee;
  background-color: #f5f8fa;
}

.exercise-image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.statements-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.statement-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.statement-text {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.4;
  padding: 0.5rem 0;
}

.options-container {
  display: flex;
  gap: 1rem;
}

.option-button {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  border: 0.2rem solid #00699F;
  background-color: #ffffff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.option-button::before {
  content: 'R';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #999999;
}

.option-button.falsch::before {
  content: 'F';
}

.option-button.selected {
  background-color: #00699F;
}

.option-button.selected::before {
  color: #ffffff;
}

.option-button.correct {
  border-color: #258174;
  border-width: 0.25rem;
}

.option-button.incorrect {
  border-color: #FF0000;
  border-width: 0.25rem;
}

.option-button.selected.correct,
.option-button.selected.incorrect {
  background-color: #00699F;
}

