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

/* Audio Container - positioned at top left */
.audio-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}


/* Content Container */
.content-container {
  display: flex;
  margin-left: 5rem; /* Space for audio button */
  
  width: 63rem;
}

/* Photo Column */
.photo-column {
  flex: 0 0 auto;
  width: 20rem;
  max-height: 30rem;
  overflow: hidden;
}


/* Statements Column */
.statements-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Statement Row */
.statement-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 63rem;
  
}

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

/* Options Container */
.options-container {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Option Buttons - Using styles from assets/main.css */
.option-button {
  width: 5rem;
  height: 3rem;
  border-radius: 0.5rem;
  border: 0.15rem solid #00699F;
  background-color: white;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  padding: 0.5rem;
  text-align: center;
}

/* Button text */
.option-button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  font-weight: bold;
  color: #00699F;
  z-index: 1;
  white-space: nowrap;
}

.option-button.lara::before {
  content: 'Lara';
}

.option-button.david::before {
  content: 'David';
}

.option-button.eva::before {
  content: 'Eva';
}

/* Selected state */
.option-button.selected {
  background-color: #00699F;
}

.option-button.selected::before {
  color: white;
}

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

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

/* Selected and correct */
.option-button.selected.correct {
  background-color: #00699F;
}

/* Selected and incorrect */
.option-button.selected.incorrect {
  background-color: #00699F;
}