.exercise-container {
  display: grid;
  grid-template-columns: 1fr 25rem;
  gap: 1rem;
  height: 100%;
  box-sizing: border-box;
  max-height: 100vh;
}

.content-container {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-right: 1rem;
  overflow-y: auto;
}

.right-container {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  max-height: calc(100vh - 2rem);
}

.image-container {
  height: 15rem;
  min-height: 10rem;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.answers-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  overflow-y: auto;
  padding-bottom: 4rem;
}

.dialog-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
}

.bullet {
  width: 1.5rem;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.answer {
  width: 25rem;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  box-sizing: border-box;
  cursor: move;
}

.dropzone {
  width: 25rem;
  min-height: 2.5rem;
  transition: all 0.3s ease;
}

.answer.dragging {
  opacity: 0.5;
}

/* Remove custom border styles and use main.css classes */
.answer.correct, .answer.incorrect {
  background-color: transparent;
}

.dropzone.correct {
  border-color: #258174;
}

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

/* Mobile Touch Drag Styles */
#dragging-clone {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform-origin: center center;
  transform: scale(1.05);
  transition: none;
}
.dropzone .drag_element{
  border: 0px;
  justify-content:start;
  align-items: center;
}