
  .dragAndDropArea {
    font-size: 0.9em;
    padding: 1rem;
    
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    
    text-align: center;
    
    border: 0.15em dashed #dbdddd;
    border-radius: 0.4em;
  }
  
  .dragAndDropArea.highlighted {
    border-color: #fb6262;
  }
  
  .dragAndDropArea > label > input[type=file] {
    width: 0em;
    height: 0em;
    padding: 0em;
    border: none;
  }
  
  .dragAndDropArea > label {
    display: inline-block;
    margin-bottom: 0.5rem;
    
    text-decoration: underline;
    color: #fb6262;
    cursor: pointer;
  }
  
  .dragAndDropArea > span:last-of-type {
    display: block;
    color: #777777;
  }
  
  .dragAndDropArea > svg {
    margin-bottom: 0.5rem;
    fill: #dbdddd;
  }

  .previewContainer {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    gap: 1em;
    
    align-items: flex-start;
    
    margin-top: 1em;
  }
  
  .fileCont > div {
    position: relative;
    
    display: grid;
    grid-template-columns: auto 1fr auto;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5em;
    padding: 0.5em;
    
    word-break: break-all;
    
    border-radius: 0.3em;
    border: 0.1em solid #dbdddd;
  }
  
  .fileCont.documentFile > div > .documentTitle {
    margin-right: 1em;
    
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
  }
  
  .fileCont > div canvas {
    width: 3em;
  }
  
  .fileCont.documentFile > div > .fileIcon {
    width: 3em;
    height: auto;
  }
  
  .fileCont > div > button {
    font-size: 1.5em;
    
    width: 1em;
    height: 1em;
    line-height: 100%;
    
    border-bottom-left-radius: 0.1em;
    background-color: #efefef;
  }
