.file-upload-form {
    max-width: 1200PX;
    WIDTH: 100%;
    margin: 1em 0;
    padding: 1.5em;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: none;
}

.file-input-field {
    margin-bottom: 20px;
}

.file-input-field input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 2px dashed #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

.selected-files {
    margin: 15px 0;
}

.selected-file {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 5px;
}

.file-size {
    color: #666;
    font-size: 0.9em;
    margin-left: 10px;
}

.remove-file {
    border: none;
    background: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0 5px;
}

.remove-file:hover {
    color: #c82333;
}

.upload-progress {
    margin: 15px 0;
    display: none;
}

.progress-bar {
    height: 4px;
    background: #007bff;
    width: 0;
    transition: width 0.3s ease;
}

.existing-files {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.existing-files h3 {
    margin-bottom: 15px;
}

.existing-files ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.existing-files li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 8px;
    transition: opacity 0.3s ease;
}
.existing-files li:hover {
    background: #f0f0f0;
}

.file-info {
    flex: 1;
}

.file-name {
    color: #007bff;
    text-decoration: none;
}

.file-meta {
    display: block;
    color: #666;
    font-size: 0.9em;
    margin-top: 4px;
}

.delete-file {
    padding: 5px 10px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.delete-file:hover {
    background: #c82333;
}

.upload-success,
.upload-error {
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.upload-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.upload-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}