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

/* Main Content with Audio and Dialogue */
.main-content {
  display: flex;
  width: 100%;
  max-width: 85rem;
  margin: 0 auto;
}

/* Content Container */
.content-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Dialogue Section */
.dialogue-section {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  width: 100%;
  margin-bottom: 1rem;
}

/* Audio Container */
.audio-container {
  flex: 0 0 5rem;
  margin-top: 0.5rem;
}

/* Dialogue Wrapper */
.dialogue-wrapper {
  display: flex;
  flex-direction: column;
  width: 75rem;
  gap: 1rem;
}

/* Dialogue Container */
.dialogue-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.image-answers-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
}

/* Dialogue Line */
.dialogue-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Speaker */
.speaker {
  flex: 0 0 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.speaker .bullet {
  width: 1.4rem;
  height: 1.4rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.speaker .bullet.blue {
  background-image: url('../assets/images/bullet_blue.svg');
}

.speaker .bullet.yellow {
  background-image: url('../assets/images/bullet_yellow.svg');
}

.speaker .bullet.green {
  background-image: url('../assets/images/bullet_green.svg');
}

/* Speech Bubble */
.speech-bubble {
  position: relative;
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 0.3rem 1rem;
  flex: 1;
  display: block;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Drop Element in Speech Bubble */
.speech-bubble .drop_element {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  min-width: 8rem;
  width: 8rem;
  min-height: 2.5rem;
  height: 2.5rem;
  padding: 0.25rem;
  box-sizing: border-box;
  margin: 0 0.25rem;
  flex-shrink: 0;
}

/* Answers Container */
.answers-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 1rem;
  background-color: #f5f7fa;
  border-radius: 0.75rem;
  margin: 0 auto 1rem;
  min-height: 5rem;
  max-width: 80rem;
  width: 100%;
}


/* Drag Element */
.drag_element {
  padding: 0.75rem 1rem;
  cursor: grab;
  user-select: none;
  touch-action: none;
  box-sizing: border-box;
  min-width: 8rem;
  max-width: 100%;
  width: 8rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drag_element.dragging {
  opacity: 0.6;
  cursor: grabbing;
}

/* Using styles from main.css */
.drop_element.correct {
  border-color: #258174;
}

.drop_element.incorrect {
  border-color: #FF0000;
}


.drop_element .drag_element {
  border: none;
  background: transparent;
  width: 100%;
  min-width: auto;
}

