#translationUploadFile.highlight, #UploadFile.highlight {
    border-color: #D83F1B;
    background-color: rgba(216, 63, 27, 0.05);
}
.uploaded-files {
    width: 100%;
    padding: 16px;
}
.file-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.file-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #F4F3F2;
}
.upload-more-btn, .retry-btn {
    background-color: #D83F1B;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}
.upload-success, .upload-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 16px;
}

/* 新增样式 */
.upload-success-with-files {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.upload-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #F4F3F2;
}
.upload-status-info {
    display: flex;
    align-items: center;
}
.upload-status-info img {
    margin-right: 8px;
}
.uploaded-files-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    max-height: 200px;
}
.uploaded-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #F4F3F2;
    transition: background-color 0.3s;
}
.uploaded-file-item:hover {
    background-color: #F9F9F9;
}
.uploaded-file-item.new-file {
    background-color: rgba(216, 63, 27, 0.05);
}
.uploaded-file-item.deleting {
    opacity: 0.6;
}
.file-info {
    display: flex;
    align-items: center;
    flex: 1;
}
.file-icon {
    height: 20px;
    margin-right: 8px;
}
.file-name {
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}
.delete-file-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.delete-file-btn:hover {
    opacity: 1;
}
.deleting-status {
    margin-left: 8px;
    font-size: 12px;
    color: #999;
}
.append-uploading-status {
    background-color: #FFF8E1;
    color: #FF8F00;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 8px;
}