/* Styles spécifiques à l'upload - préfixés pour éviter les conflits */
.upload-container {
	max-width: 800px;
	margin: 40px auto;
	background: white;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	padding: 25px;
	font-family: Arial, sans-serif;
}

.upload-title {
	color: #2c5282;
	text-align: center;
	margin-bottom: 25px;
	font-size: 24px;
}

.upload-area {
	border: 2px dashed #a0aec0;
	border-radius: 6px;
	padding: 30px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s;
	margin-bottom: 15px;
	background-color: #f7fafc;
}

.upload-area:hover {
	border-color: #4a5568;
	background-color: #edf2f7;
}

.upload-area-icon {
	font-size: 40px;
	color: #4a5568;
	margin-bottom: 10px;
}

.upload-area-text {
	margin: 8px 0;
	font-size: 15px;
	color: #4a5568;
}

.upload-area-small {
	font-size: 13px;
	color: #718096;
}

#upload-file-input {
	display: none;
}

.upload-btn {
	background-color: #4299e1;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.2s;
	display: inline-block;
	margin-top: 8px;
}

.upload-btn:hover {
	background-color: #3182ce;
}

.upload-btn-secondary {
	background-color: #718096;
}

.upload-btn-secondary:hover {
	background-color: #4a5568;
}

.upload-preview {
	margin-top: 20px;
}

.upload-file-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.upload-file-item {
	display: flex;
	align-items: center;
	padding: 8px;
	border-bottom: 1px solid #e2e8f0;
}

.upload-file-icon {
	margin-right: 8px;
	color: #4a5568;
	font-size: 14px;
}

.upload-file-name {
	flex-grow: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 14px;
}

.upload-file-size {
	color: #718096;
	font-size: 12px;
	margin-right: 10px;
}

.upload-remove-file {
	color: #e53e3e;
	cursor: pointer;
	background: none;
	border: none;
	font-size: 14px;
}

.upload-progress {
	margin-top: 15px;
	display: none;
}

.upload-progress-bar {
	height: 8px;
	background-color: #e2e8f0;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 8px;
}

.upload-progress-value {
	height: 100%;
	background-color: #4299e1;
	width: 0%;
	transition: width 0.3s ease;
}

.upload-status {
	text-align: center;
	font-size: 13px;
	color: #4a5568;
}

.upload-actions {
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
}

#upload-form {
	margin: 0;
}

