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

.content-container {
    
    width: 66rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Two-column Layout */
.columns-container {
    display: flex;
    width: 66rem;
    /*margin-bottom: 2rem;*/
}

/* Left Column */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width:33rem;
}

/* Audio Container */
.audio-container {
    display: flex;
    justify-content: center;
    /*margin-bottom: 1rem;*/
    height:9.625rem;
}
.audio-container .audio-player{
    position: relative;
    top:auto !important;
    left: auto !important;
}

/* Right Column */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width:33rem;
}

.drop-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Common styles for drag and drop elements */
.drag_element {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: grab;
    font-size: 1.2rem;
    user-select: none;
    position: relative;
    padding: 0.75rem 1rem;
    background-color: white;
    border: 2px solid #00699F;
    border-radius: 1.25rem;
    transition: transform 0.2s ease;
    width: 30rem    ;
}

.drag_element .bullet {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.drag_element .text {
    flex-grow: 1;
}

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



/* Drop Element Specific */
.drop_element {
    width: 33rem;
    height: 3rem;
    transition: all 0.3s ease;
    border: 2px solid #F9B002;
    background-color: white;
    border-radius: 1.25rem;
}



/* Answers Container */
.answers-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

/* Image Container */
.image-container {
    width: 100%;
    max-width: 60rem;
   /* height: 20rem;*/
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin-bottom: 4rem;*/
}

.image-container img {
    width:25rem;
    height: 10.625rem;
    max-width: 100%;
    max-height: 100%;
    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;
    }
} 

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

.drop_element.incorrect, .drag_element.incorrect {
    border-color: #FF0000;
}
.drop_element .drag_element{
    background-color: none;
    border: 0;
}