/* E10_U02_1 Was reimt sich? – D&D 8 parov besed, 1 slika (referenca E04_U05) */
.exercise-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 68rem;
    max-width: 64rem;
    margin: 0 auto;
}

.content-container {
    display: flex;
    flex-direction: column;
    width: 68rem;
    padding: 1rem;
}

.columns-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1.5rem;
    margin-bottom: 0;
}

.left-column {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
}

.answers-container {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 8rem;
    min-width: 8rem;
    padding: 0;
    margin: 0;
    align-self: flex-start;
    justify-content: flex-start;
}

.right-column {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 0;
}

.pairs-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pair-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 1.2rem;
    min-height: 2.5rem;
}

.pair-left {
    line-height: 1.5;
    min-width: 8rem;
}

.image-container {
    width: 28rem;
    flex-shrink: 0;
    height: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
}

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

.drop_element {
    width: 8rem;
    min-width: 8rem;
    height: 2.5rem;
    min-height: 2.5rem;
    border-radius: 1.25rem;
    border: 0.2rem solid #F9B002;
    background-color: rgba(249, 176, 2, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
    padding: 0;
    flex-shrink: 0;
}

.drag_element {
    width: 8rem;
    min-width: 8rem;
    height: 2.5rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: grab;
    font-size: 1.2rem;
    user-select: none;
    border-radius: 1.25rem;
    border: 0.2rem solid #00699F;
    background: #fff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    flex-shrink: 0;
}

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

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

.drop_element.incorrect,
.drag_element.incorrect {
    border-color: #e00;
}

.drop_element .drag_element {
    background: #fff;
    border: 0.2rem solid #00699F;
    margin: 0;
    width: 8rem;
    min-width: 8rem;
    height: 2.5rem;
    min-height: 2.5rem;
    flex-shrink: 0;
}

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

.drop_element .drag_element.incorrect {
    border-color: #e00;
}

@media (hover: none) {
    .drag_element {
        touch-action: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
}
