.file-upload-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.file-list-container {
    margin-bottom: 20px;
}

.file-list-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.file-list-table th,
.file-list-table td {
    padding: 10px;
    border-bottom: 1px solid #dee2e6;
}

.file-list-table th {
    background-color: #e9ecef;
    font-weight: bold;
}

.upload-status-alert {
    padding: 10px;
    border-radius: 4px;
    background-color: #d1ecf1;
    color: #0c5460;
    margin-bottom: 10px;
}

.upload-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}



.change-files-btn {
    background-color: #007bff;
    color: #fff;
}

.start-upload-btn {
    background-color: #28a745;
    color: #fff;
}

.cancel-btn {
    background-color: #dc3545;
    color: #fff;
}

.progress-container {
    position: relative;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.progress-bar {
    background-color: #4CAF50;
    height: 32px;
    line-height: 32px;
    color: white;
    text-align: center;
    transition: width 0.4s ease;
    position: relative;
}

.progress-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: bold;
}

.upload-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.upload-speed,
.upload-status {
    font-size: 14px;
    color: #333;
}

.upload-speed {
    font-weight: bold;
}

.upload-status {
    color: #666;
}
