table.upload {
  width:100%; border: none;
}

table.upload tbody:before {
  content: '';
  display: block;
  height: 10px;
}

table.upload th, table.upload td {
  vertical-align: middle;
}

table.upload thead {
  background-color: #f3f3f3;
}

table.upload tbody td {
  background-color: #e6f3ff;
}

table.upload td.upload-status,
table.upload td.upload-request {
  background: none;
  color: red;
  border-bottom: none;
}

table.upload td.upload-title { width: 20%; padding-left: 11px; }
table.upload td.upload-descr { width: 38%; }
table.upload td.upload-button { width: 13%; }
table.upload td.upload-file { width: 25%; }
table.upload td.upload-pdf { width: 4%; }

table.upload.statuscol td.upload-title { width: 20%; }
table.upload.statuscol td.upload-descr { width: 25%; }
table.upload.statuscol td.upload-button { width: 15%; }
table.upload.statuscol td.upload-file { width: 23%; }
table.upload.statuscol td.upload-pdf { width: 4%; }
table.upload.statuscol td.upload-status { width: 13%; padding-left: 11px; }

table.upload.requestcol td.upload-title { width: 15%; }
table.upload.requestcol td.upload-descr { width: 22%; }
table.upload.requestcol td.upload-button { width: 15%; }
table.upload.requestcol td.upload-file { width: 23%; }
table.upload.requestcol td.upload-pdf { width: 4%; }
table.upload.requestcol td.upload-status { width: 13%; padding-left: 11px; }
table.upload.requestcol td.upload-request { width: 8%; text-align: center; }


.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.filename {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border: 1px solid black;
  padding: 2.5px;
  text-align: center;
  min-width: 200px;
  background: white;
  font-size: 14px;
  box-sizing: border-box;
  vertical-align: middle;
}

input[disabled].filename {
  color: #000;
  text-overflow: ellipsis;
}

.container {
    display: table;
    }
.row  {
    display: table-row;
    }
