.input-file-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 10px 0;
}

.input-file-dropzone {
    border: 2px dashed #cbd5e0;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f7fafc;
}

.input-file-dropzone:hover {
    border-color: #4299e1;
    background-color: #edf2f7;
}

.input-file-dropzone.dragover {
    border-color: #48bb78;
    background-color: #f0fff4;
    transform: scale(1.02);
}

.input-file-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.input-file-text {
    color: #4a5568;
    font-size: 14px;
    margin-bottom: 5px;
}

.input-file-formats {
    font-size: 12px;
    color: #718096;
    margin-top: 5px;
}

.input-file-list {
    margin-top: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.input-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    margin-bottom: 8px;
    background-color: #f7fafc;
    border-radius: 6px;
    border-left: 3px solid #4299e1;
    transition: all 0.2s ease;
}

.input-file-info {
    flex: 1;
}

.input-file-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    word-break: break-all;
}

.input-file-size {
    display: block;
    font-size: 12px;
    color: #718096;
    margin-top: 2px;
}

.input-file-progress {
    width: 100%;
    height: 4px;
    background-color: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    margin: 8px 0;
}

.input-file-progress-bar {
    height: 100%;
    background-color: #4299e1;
    transition: width 0.3s ease;
    width: 0%;
}

.input-file-remove {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #e53e3e;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.input-file-remove:hover {
    background-color: #fed7d7;
    transform: scale(1.1);
}

.input-file-message {
    padding: 10px;
    margin-top: 10px;
    border-radius: 6px;
    font-size: 14px;
    animation: slideIn 0.3s ease;
}

.input-file-message.success {
    background-color: #c6f6d5;
    color: #22543d;
    border-left: 3px solid #48bb78;
}

.input-file-message.error {
    background-color: #fed7d7;
    color: #742a2a;
    border-left: 3px solid #f56565;
}

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}