Can we edit the name of the button "Browse files" in st.file_uploader. Currently able to remove the Drag and drop text and able to get filename above the Browse files button once uploaded

Thanks @raethlein. I tried with this below css, but Browse Files not getting removed. The new text gets appended with Browse files. Using "display: none "hides the whole button .

css='''<style>
         

                        [data-testid='baseButton-secondary']::before {
                           content: 'New Text';
                        }
                    </style>
                    '''

newte