.drop-zone {
    border: 1px dotted black;
    background: white;
    height: 200px;
    width: calc(100%-30px);
    padding: 15px;
    position: relative;
    overflow-y: hidden;
    overflow-x: hidden;
}

.hidden-inputs {
    display: none;
}

.drag-enter {
    background: #eee;
}

.upload-placeholder {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 50%;
    color: grey;
    font-family: "Arial", "Sans serif";
    text-shadow: (2px 2px 2px #0003);
}

.undelete-button {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 5px;
    z-index: 1;
}

.delete-button {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 5px;
    z-index: 1;
}

.edit-button {
    cursor: pointer;
    color: #333;
    position: absolute;
    left: 10px;
    top: 5px;
    z-index: 1;
}

.file-name-overlay {
    position: absolute;
    padding: 10px;
    bottom: 10%;
    word-wrap: break-word;
    width: 100%;
    text-align: center;
    color:white;
}

.fa-minus-circle {
    color: red;
}

.thumbnails {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    z-index: 99;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.thumbnails li {
    padding: 5px;
    width: 20%;
    max-width: 120px;
    height: auto;
    position: relative;

}

.thumbnails li img {
    border: 1px #666666 solid;
    cursor: pointer;
}

.thumbnail {
    cursor: move !important;
    width: 100%;
    height: auto
}

.highlighted {
    border: 3px rgb(27, 106, 201) solid !important;
    border-radius: 3px;
}

.darkened-50 {
    filter: brightness(50%);
}

.darkened-30 {
    filter: brightness(70%);
}

.white-icon {
    color: white;
}