input#file.button.medium {
    padding: 20px;
    width: -webkit-fill-available;
    width: auto;
}


.simpleuploadform {
    display: flex;
    flex-direction: column;
}


/* Style the list (remove margins and bullets) */
ul.simpleupload-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Style the list items */
ul li.simpleupload-list {
    border: 1px solid #ddd;
    margin-top: -1px; /* Prevent double borders */
    background-color: #f6f6f6;
    padding: 12px;
    text-decoration: none;
    color: black;
    display: block;
    position: relative;
}

    /* Add a light grey background color on hover */
    ul li.simpleupload-list:hover {
        background-color: #eee;
    }

/* Style the close button (span) */
.simpleupload-close {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 0%;
    padding: 12px 16px;
    transform: translate(0%, -50%);
}

    .simpleupload-close:hover {
        background: #bbb;
        color: #FF5A50;
    }
