.fileEditor {

    border-radius: 12px;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.fileEditor.dragging {
    border-color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.05);
}

.fileEditorIcon {
    margin-bottom: 12px;
}

.fileEditorText {
    font-weight: 400;
    text-align: center;
    color: #232323;
    margin-bottom: 10px;
}

.fileEditorRequirements {
    font-size: 14px;
    color: #9aa1aa;
    text-align: center;
}

.fileUploadProgress {
    margin-top: 16px;
    width: 100%;
    max-width: 400px;
}

.fileInfo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    align-items: center;
}

.fileName {
    font-weight: 500;
    color: #232323;
    flex: 1;
    margin-right: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.fileName:hover {
    color: #91CF4F;
}

.fileSize {
    color: #9aa1aa;
    font-size: 14px;
    white-space: nowrap;
}

.progressBar {
    height: 4px;
    background-color: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progressFill {
    height: 100%;
    background-color: #4CAF50;
    transition: width 0.3s ease;
}

.progressText {
    text-align: right;
    font-size: 14px;
    color: #9aa1aa;
}

.uploadedFile {
    width: 100%;
    max-width: 400px;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.uploadedFile .fileInfo {
    margin-bottom: 0;
}

.fileDownloadLink {
    color: #91CF4F;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #91CF4F;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.fileDownloadLink:hover {
    background-color: #91CF4F;
    color: white;
    text-decoration: none;
} 