#fileListDialog {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid grey;
    box-shadow: 2px 2px 5px #949494;
    padding: 20px;
    max-width: 1000px;
}

#hideButton {
    text-align: center;
    float: right;
    margin-left: 30px;
    background-color: red;
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    line-height: 12px;
}

#dialogLockedView {
    display: none;
    width: 100%;
    min-width: 450px;
}

#dialogLockedView>hr {
    border: none;
    height: 1px;
    background-color: grey;
}
#dialogLockedView>table {
    width: 100%;
    table-layout: fixed;
}
#dialogLockedView th {
    min-width: 100px;
    overflow: hidden;
    word-wrap: break-word;
    text-align: left;
}
#dialogLockedView td {
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
    word-wrap: break-word;
}
th.filenameColumn, td.filenameColumn {
    width: calc(50% - 50px);
}
th.linkColumn, td.linkColumn {
    width: calc(50% - 50px);
}
th.deleteColumn, td.deleteColumn {
    width: 100px;
}

.deleteButton,.shareTokenButton {
    padding-top: 0px;
    padding-bottom: 0px;
    width: 100%;
}


th.tokenColumn, td.tokenColumn {
    width: calc(33% - 50px);
}
th.createdColumn, td.createdColumn {
    width: calc(33% - 50px);
}
th.usesColumn, td.usesColumn {
    width: calc(33% - 50px);
}
th.shareTokenColumn, td.shareTokenColumn {
    width: 100px;
}

@media only screen and (max-width: 500px) {
    #fileListDialog {
        width: calc(90% - 40px);
        min-width: 0;
    }
    #dialogLockedView {
        width: 100%;
        min-width: 0;
    }
    #dialogLockedView tr {
        border-bottom: 1px solid grey;
    }
    #dialogLockedView th, #dialogLockedView td {
        min-width: 0;
    }
    th.filenameColumn, td.filenameColumn {
        width: calc(100% - 100px);
    }
    th.linkColumn, td.linkColumn {
        display: none;
    }
}