.df-container, .df-container *, .df-container ::after, .df-container ::before {
    box-sizing: border-box;
}

.df-container {
    width: 100%;
    height: 100%;
    min-height: 140px;
    margin-top: 30px;
    background-color: #F0F5F9;
    border: 2px solid #F0F5F9;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-family: sans-serif;
}

.df-container .df-drop-area {
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dotted #000;
    border-radius: 8px;
}

.df-container .df-drop-area .df-message {

    font-size: 16px;
    font-style: italic;
    color: #888;
    font-weight: 400;
    cursor: pointer;
    line-height: 200%;
    padding: 20px;
}

.df-files {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
}

.df-file {
    padding: 8px;
    background-color: #ddd;
    border-radius: 8px;
    box-shadow:none;
}

.df-file-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.df-file-thumbnail > img {
    width: 100%;
    min-width: 100%;
    height: 100%;
    border-radius: 6px;
}

.df-file-thumbnail > svg {
    color: #F0F5F9;
}

.df-file-data {
    width: 100%;
    padding: 8px;
    padding-right: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 4px;
}

.df-file-progress-container {
    width: 100%;
    background-color: #F0F5F9;
    border-radius: 18px;
    overflow: hidden;
}

.df-file-progress-bar {
    height: 4px;
    width: 0%;
    background-color: #F0F5F9;
    transition: background-color 0.5s ease;
}

.df-file-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.df-file-name {
    display: flex;
    flex-direction: column;
    color: #333;
    gap: 4px;
    min-width: 0;
    width: 100%;
}

.df-file-name span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
}

.df-file-name small {
    font-size: 12px;
    font-weight: 600;
}

.df-file-status {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    width: 32px;
    min-width: 32px;
    height: 32px;
    color: #F0F5F9;
}

.df-file-status svg {
    width: 100%;
}