body { font-family: Arial, sans-serif; max-width: 900px; margin: 40px auto; padding: 20px; background: #f9f9f9; }
h1 { color: #2c3e50; text-align: center; }
h2 { color: #2980b9; border-bottom: 1px solid #bdc3c7; padding-bottom: 8px; }*/
h3 { color: #16a085; }
.form-group { margin: 20px 0; }
/* label { display: block; margin-bottom: 8px; font-weight: bold; } */
label { display: flex; margin-bottom: 8px; align-items: center; gap: 8px; font-weight: bold; }
.info-icon { 
	display: inline-flex; align-items: center; justify-content: center;
	width: 18px; height: 18px; border-radius: 50%; background: #3498db; color: white;
	font-size: 12px; font-weight: bold; cursor: help;
}
textarea { width: 100%; height: 200px; padding: 10px; border: 1px solid #ccc; border-radius: 6px; }
input[type="range"] { width: 100%; }
select, input[type="file"] { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 6px; }
button { background: #3498db; color: white; padding: 12px 24px; border: none; border-radius: 6px; font-size: 18px; cursor: pointer; }
button:disabled { background: #95a5a6; cursor: not-allowed; }
#log-output { background: #000; color: #0f0; padding: 15px; border-radius: 8px; height: 500px; overflow-y: auto; font-family: monospace; white-space: pre-wrap; margin: 20px 0; display: none; }
.result { margin-top: 30px; text-align: center; }
.upload-zone { border: 2px dashed #ccc; padding: 20px; text-align: center; border-radius: 8px; background: #f8f8f8; }
.upload-zone.dragover { border-color: #3498db; background: #eef; }
/* CSS de la balise de titre et son icône : */
.h1-tts {
	display: flex;
	align-items: center;   /* alignement vertical parfait */
	gap: 1rem;
	margin: 0;
}
/* Icône */
.h1-tts-icon {
	height: 90px;          /* taille visuelle de l’icône */
	width: auto;
	flex-shrink: 0;
	display: block;
}
/* Texte */
.h1-tts-text {
	display: block;
	line-height: 1.15;
}


/*body { font-family: Arial, sans-serif; line-height: 1.6; margin: 40px; background-color: #f9f9f9; color: #333; }
h1 { color: #2c3e50; border-bottom: 3px solid #3498db; padding-bottom: 10px; } */
ul { list-style-type: disc; margin-left: 30px; }
ol { margin-left: 30px; }
code { background-color: #ecf0f1; padding: 2px 6px; border-radius: 4px; font-family: Consolas, monospace; }
pre { background-color: #2c3e50; color: #ecf0f1; padding: 20px; border-radius: 8px; overflow-x: auto; }
.note { background-color: #e8f4fc; border-left: 5px solid #3498db; padding: 15px; margin: 20px 0; }
.warning { background-color: #fdf2e9; border-left: 5px solid #e67e22; padding: 15px; margin: 20px 0; }

.aide-section {
	margin: 60px 0 40px 0;
	padding: 30px;
	background-color: #f9f9f9;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.documentation-section {
	margin: 60px 0 40px 0;
	padding: 30px;
	background-color: #2c3e50;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.documentation-section h2 {
	color: #ecf0f1;
	text-align: center;
	margin-bottom: 25px;
	font-size: 1.8em;
	border-bottom: 2px solid #3498db;
	padding-bottom: 10px;
	/* display: inline-block; */
}

.documentation-section h3 {
	color: #ecf0f1;
	text-align: left;
	margin-bottom: 25px;
	font-size: 1em;
	border-bottom: 1px solid #3498db;
	padding-bottom: 5px;
	display: inline-block;
}

.documentation-links {
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 800px;
	margin: 0 auto;
}

.documentation-links a {
	display: block;
	padding: 16px 20px;
	background-color: #34495e;
	color: #ecf0f1;
	text-decoration: none;
	border-radius: 8px;
	font-size: 1.1em;
	transition: all 0.3s ease;
	border-left: 5px solid #3498db;
}

.documentation-links a:hover {
	background-color: #3498db;
	transform: translateX(10px);
	box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.documentation-links a strong {
	color: #ffffff;
}	