.file-container {
  width: 100%;
}

.file-upload {
  width: 100%;
  display: flex;
  background-color: #eeeeee;
  border-radius: 15px;
  transition: all 0.3s;
}

.file-upload:hover {
  box-shadow: 0px 8px 15px -8px rgba(0, 0, 0, 0.5);
}

.file-upload > div {
  width: 100%;
  background-color: #f8f8f8;
  padding: 25px;
  margin: 25px;
  border-radius: 10px;
  border: 1px dashed #606060;
  text-align: center;
  cursor: pointer;
}

.file-upload > div > i {
  font-size: 3.125em;
  color: #2b2b2b;
}

.file-upload > div > p,
.file-upload > div > span,
.file-upload > div > div {
  font-size: 0.875em;
  line-height: 30px;
  color: #2b2b2b;
}

.file-upload > div > div {
  width: max-content;
  padding: 0 10px;
  margin: 0 auto;
  border: 1px solid #606060;
  border-radius: 8px;
}

.file-container > table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875em;
  margin-top: 20px;
}

.file-container > table th,
.file-container > table td {
  border-bottom: 1px solid #dbdbdb;
  padding: 8px;
  text-align: left;
}

.file-container > table tbody > tr > td:nth-child(1) {
  font-weight: bold;
}

.file-container > table tbody > tr > td:nth-child(2) {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 1px;
}

.file-container > table tbody > tr > td:nth-child(3) {
  text-align: center;
}

.file-container > table tbody > tr > td > img {
  border-radius: 5px;
  box-shadow: 0px 8px 15px -8px rgba(0, 0, 0, 0.5);
}

.file-container > table tbody > tr > td.no-file {
  text-align: center;
  font-weight: normal;
}

.file-container > table tbody > tr > td > i {
  font-size: 1.125em;
}

.file-container > table button {
  background-color: #f53636;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.file-container > table button:hover {
  box-shadow: 0px 8px 15px -8px rgba(0, 0, 0, 0.5);
}

.file-container > table button > i {
  color: #ffffff;
  font-size: 1.125em;
}
