.multipleDropzone_unit {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly; /* gleichmäßiger Abstand zwischen den Dropzonen */
    align-items: flex-start;       /* alle oben ausrichten */
    width: 700px;
    margin-left: auto;
    margin-bottom: 20px; /* Abstand zu den Draggables */
}

.unit_multiDropzone h6 {
    font-family: Open Sans;
    font-size: 14px;
    margin-top:0;
    margin-bottom:8px;
    text-align: center;
    overflow-wrap: anywhere;
} 

.unit_multiDropzone {
    min-height: 140px;  
    max-width: 160px;          
    background-color: rgb(202, 224, 188);
    border-radius: 8px;           
    text-align: center;
    padding-top: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #566a2b;
    box-shadow: 5px 0px 5px 0px rgb(86, 106, 43);
    box-sizing: border-box;
    overflow-y: visible;
}

.unit_multiDropzone img{
    margin-top: 0;
}

.unit_multiDropzone:hover { /*farbige Hervorhebung der Dropzone*/
    background-color: #f1f0e9;
}

#unit_multiDropzone_Draggables{
    display: grid;
    grid-template-columns: repeat(auto-fill,160px);
    gap: 5px;
    justify-content: center;
}

.unit_multiDropzone_SingleDraggable {
    border-radius: 5px;
    font-family: Open Sans;
    font-size: 13px;
    text-align: center;
    background-color: rgb(86, 106, 43);
    box-shadow: 5px 0px 5px 0px rgb(86, 106, 43);
    color: #fff;
    cursor: pointer;
    align-content: center;
    transition: transform 0.2s;
    box-sizing: border-box;
    word-break: break-word;
    white-space: normal;
    margin-bottom: 5px;
}

.unit_multiDropzone_SingleDraggable:hover {
    transform: scale(1.1);
    background-color:  rgb(89, 130, 52);
}

#unitMultiDrop_msg {
	position: absolute;
	width: 500px;
    color: #566a2b;
    top: 350px;
    left: 130px;
}

.multipleDropzone_container_standAlone {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly; /* gleichmäßiger Abstand zwischen den Dropzonen */
    align-items: flex-start;       /* alle oben ausrichten */
    width: 740px;
   margin: 20px auto 20px auto; /* Abstand nach unten zu den Draggables */
}


.multipleDropzone_standAlone h6 {
    font-family: Open Sans;
    font-size: 14px;
    margin-top:0;
    margin-bottom:8px;
    text-align: center;
} 

.multipleDropzone_standAlone {
    flex: 1 1 0;
    min-height: 140px;            
    margin: 0 4px;                
    background-color: #cae0bc;
    border-radius: 8px;           
    text-align: center;
    padding: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #0d4715;
    box-shadow: 5px 0px 10px 0px rgba(13, 71, 21);
    box-sizing: border-box;
    overflow-y: visible; /* wichtig, damit sie wachsen */
}

.multipleDropzone_standAlone img{
    margin-top: 0;
}

#MultiDrop_msg_standAlone {
    width: 600px;
    color: #566a2b;
    position: absolute;
    top: 480px;
    left: 100px;
}

#multiDropzone_Draggables_standAlone {
    display: grid;
    grid-template-columns: repeat(auto-fill,160px);
    gap: 15px;
    justify-content: center;
    width: 740px;
    margin: 0 auto;
  }


.multiSingleDraggable_standAlone {
    border-radius: 5px;
    font-family: Open Sans;
    font-size: 14px;
    padding: 5px 2px;
    text-align: center;
    background-color: rgba(13, 71, 21, 0.8);
    box-shadow: 5px 0px 10px 0px rgba(157, 156, 133);
    border: 2px solid #7fa038;
    color: #f1f0e9;
    cursor: pointer;
    align-content: center;
    transition: transform 0.2s;
    word-break: break-word;
    white-space: normal;
    margin-bottom: 5px;
}


.multiSingleDraggable_standAlone:hover {
    transform: scale(1.1);
    background-color: rgb(13, 71, 21);

}




