.upload {
    border: 1px solid black;
    border-radius: 5px;
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    flex-direction: column;
}
.upload.success {
    background-color: limegreen;
}
.upload.error {
    background-color: lightcoral;
}
.upload .status {
    color: black;
    font-size: medium;
    text-align: center;
}
.upload.dragover {
    background-color: aquamarine;
}
.fileupload .dropzone {
    box-sizing: border-box;
    border: solid black 1px;
    border-radius: 0.375rem;
    z-index: 10;
    overflow: hidden;
}
/* Upload files*/
.fileupload .dropzone.dragover {
	background-color: #fafafa;
    outline-offset: -17px;
    border: 2px solid #000;
    box-sizing: border-box;
}
.datatable.dropzone {
    box-sizing: border-box;
    border: solid black 1px;
    overflow: hidden;
}
/* Upload files*/
.datatable.dropzone.dragover {
    filter: sepia(100%);
    transition: filter 0.3s ease;
    border: 1px solid #cb7000d2;
}
table.files {
    width: 100%;
}
i.hash {
    display: inline-block;
    max-width: 60px;
    text-overflow: ellipsis;
    overflow: hidden;
    z-index: 1;
}

.pct_cell {
    width: 70px;
}
.hash_tip {
    display: block;
}
.tooltip-inner {
  --bs-tooltip-max-width: none;
}