.container {
    margin: 0px;
    padding: 0px;
}
#leftPadding{
    width: 20vw;
}
#topPadding{
    height: 5vh;
}
#mainContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
#commandsContainer {
    position: relative;
    margin-left: 5vh;
    width: 20vw;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;

}
#mapContainer {
    width: max-content;
}
.row {
    flex-wrap: nowrap;
    margin: 0px;
    padding: 0px;
}

.mapField {
    border: 1px solid white;
    background-color: rgb(176, 224, 153);
    border-radius: 0.5em;
    padding: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 65%;
}

._rock {
    background-image: url("rock.webp");
}

._tree {
    background-image: url("tree.png");
}

._apple1 {
    background-image: url("apple_1.png");
}
._apple2 {
    background-image: url("apple_2.png");
}
._apple3 {
    background-image: url("apple_3.png");
}

.animal {
    position: absolute;  
    text-align: center;
    vertical-align: middle;
    background-image: url("fox_E_sit.gif");
    background-size:contain;
    background-position: center;
    background-repeat: no-repeat;
}

#commandsAvailable {
    display: inline-flex;
    flex-direction: row;
    justify-content: space-between;

}

#commandList {
    min-height: 70vh;
    background-color: beige;
    border: 1px solid white;
    border-radius: 0.5em;
    background-image: url('route.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    background-blend-mode: overlay;
    padding: 5%;
}

.command {
    width: 100%;
    height: 9vh;
    border: 1px solid white;
    border-radius: 0.5em;
    text-align: center;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: bisque;
}

#commandsAvailable .command {
    cursor: grab;
}

#commandList .command {
    display: inline-flex;
    flex-direction:row;
    text-align: center;
    align-items: center;
    align-content: space-between;
    cursor: grab;
    background-size: contain;
}

.turnLeft {
    background-image: url('arrow_turnLeft.png');
}

.turnRight {
    background-image: url('arrow_turnRight.png');
}

.step {
    background-image: url('arrow_step.png');
}

.goUntilStopped {
    background-image: url('arrow_goUntilStopped.png');
}

.turnAround {
    background-image: url('arrow_turnAround.png');
}

.runCommands {
    width: 100%;
    
    bottom: 100%;
    background-color: bisque;
    border-radius: 0.5em;
    border: none;
}

.runCommands #runCommandsImage {
    background-image: url('fox_E_walk2_lookStraight.png');
    background-size: contain;
    border: 0.5em solid bisque;
    padding: 0.5em;
    background-position: center;
    background-repeat: no-repeat;
}

#hiddenElements {
    display: none;
}

.deleteButton {
    height: 40%;
    width: 20%;
    background-color: bisque;
    opacity: 30%;
    background-image: url('removeCommand.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-left: auto;
}
#commandCount {
    height: 40%;
    width: 20%;
    font-size: large;
    font-weight: bold;
    background-color: bisque;
    cursor: pointer;
    margin-right: auto;
}