#drag_upload_file {
    border: 2px dashed #ccc;
    padding: 10px;
    margin: 10px;
    width:80%;
    height: 100px;
    text-align: left;
    background-color: #f4f4f4;
    transition: all .2s ease-in-out;
}

#drag_upload_file:hover {
    background-color:rgb(164, 181, 255);
}

#drag_upload_file input {
    border:none;
    padding:0px;
    margin:0px;
}

#uploaded_files {
    width:80%;
    height: auto;
    text-align: left;
}

#uploaded_files .uploaded_file {
    display:inline-block;
    float:left;
    width:90%;
    padding:5px 5%;
    border-bottom:1px solid #ccc;
}

#uploaded_files .uploaded_file .uploaded_file_name {
    display:inline-block;
    float:left;
    width:70%;

}

#uploaded_files .uploaded_file .uploaded_file_delete {
    display:inline-block;
    float:right;
    width:10%;
    cursor:pointer;
    text-align:right;
}

#uploaded_files .uploaded_file .uploaded_file_rename {
    display:inline-block;
    float:right;
    width:10%;
    cursor:pointer;
    text-align:right;
}