/* Exercise Container */
.exercise-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 68rem;
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem;
}

.content-container {
    width: 68rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Left Column Layout */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 34rem;
}

/* Audio Container */
.audio-container {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.answers-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 34rem;
}

.audio-button .pause-icon {
    opacity: 0;
}

.audio-button.playing .play-icon {
    opacity: 0;
}

.audio-button.playing .pause-icon {
    opacity: 1;
}

/* Drag Elements */
.drag_element {
   /* width: 100%;*/
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: grab;
    font-size: 1.2rem;
    user-select: none;
    position: relative;
    z-index: 2;
    padding: 0.75rem 1rem;
    background-color: white;
    border: 2px solid #00699F;
    border-radius: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.drag_element:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.drag_element .text {
    flex-grow: 1;
    text-align: left;
    line-height: 1.4;
}

.drag_element.dragging {
    opacity: 0.5;
    cursor: grabbing;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

/* Image Container */
.image-container {
    width: 32rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.image-container img {
    width: 32rem;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
}

/* Mobile Touch Drag Styles */
@media (hover: none) {
    .drag_element {
        touch-action: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
} 
.audio-player{
    position: relative;
    left:auto !important;
    top:auto !important;
}