.lesson-container {
    display: flex;
    min-height: 0;
    gap: 10px;
}

.lesson-inner {
    padding: 20px;
    background-color: white;
    border-radius: 20px;
    min-height: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

#player-and-levels {
    flex: 0 0 0;
}

#video-script {
    flex: 1 1 auto;
    overflow-y: scroll;
}

#level {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

#player {
    flex: 0 0 auto;
}

#selector-div {
    display: flex;
    padding: 10px;
}

#level-name {
    padding: 10px;
}

#exercise {
    font-size: 18px;
    margin-bottom: 10px;
}

.dropable-container {
    display: flex;
    min-height: 0;
    flex: 0 1 auto;
    flex-wrap: wrap;
    gap: 10px;
    overflow-y: auto;
}

.dropable {
    flex: 0 0 auto;
    min-height: 0;
    white-space: nowrap;
    padding: 5px;
    border: 2px solid #17582b;
    border-radius: 20px;
    font-size: 18px;
}

.dropable.correct {
    background-color: lightgreen;
}

.dropable:hover {
    border-color: darkred;
    background-color: gainsboro;
    cursor: pointer;
}

.dropzone {
    display: inline-block;
    flex: 0 0 auto;
    border: 2px solid #17582b;
    margin-right: 5px;
    border-radius: 20px;
    padding: 0px;
    vertical-align: middle;
}

.dropzone.over {
    border-color: darkred;
    background-color: gainsboro;
}

.dropzone.drop {
    border: none;
}

.turn {
    display: flex;
}

.turn-item {
    margin: 10px;
    justify-content: flex-start;
    align-items: flex-start;
}

.input-container {
    display: inline-block;
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 1;
    height: auto;
}

.input-container-item {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 18px;
    line-height: 1;
    height: auto;
    align-self: center;
    vertical-align: middle;
}

button {
    all: unset;
    border: 2px solid #17582b;
    border-radius: 20px;
    padding: 5px;
    color: #17582b;
    font-size: 18px;
    height: auto;
    line-height: 1;
}

button:hover {
    cursor: pointer;
    color: darkred;
    border-color: darkred;
    background-color: gainsboro;
}

#blank-input {
    padding: 5px;
    border: 2px solid #17582b;
    border-radius: 20px;
    font-size: 18px;
}

#blank-input:focus {
    background-color: gainsboro;
    border-color: darkred;
    outline: none;
    box-shadow: none; 
}

#character {
    width: 20%;
}

#script {
    width: 80%;
    align-items: center;
}

#script p {
    font-size: 18px;
    line-height: 3;
    flex: 0 0 auto;
}