/* Naturo Matching Select - Mode "câbles" (clic-pour-relier) */

/* Le thème ENATI force display:grid via un sélecteur très spécifique
   (ID + 4 classes) en !important. Pour imposer notre flex il faut une
   spécificité supérieure : on reprend sa chaîne + notre classe. */
.tutor-course-single-content-wrapper
	#tutor-single-entry-content
	.tutor-quiz-wrapper
	.tutor-quiz-wrap
	.matching-quiz-question-desc.naturo-ms-props-col {
	display: flex !important;
	flex-direction: column !important;
	flex-wrap: nowrap !important;
}

.naturo-ms-grid {
	position: relative; /* repère pour l'overlay SVG des câbles */
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px; /* espace central pour laisser respirer les câbles */
	align-items: start;
	margin-top: 24px;
}

/* Overlay SVG : couvre toute la grille, ne capte pas les clics. */
.naturo-ms-lines {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	overflow: visible;
}

.naturo-ms-line {
	fill: none;
	stroke: #2e7d32;
	stroke-width: 2.5;
	stroke-linecap: round;
}

.naturo-ms-dot {
	fill: #2e7d32;
}

/* Colonne gauche : propositions cliquables. */
.naturo-ms-grid .naturo-ms-props-col {
	display: flex !important;
	flex-direction: column !important;
	flex-wrap: nowrap !important;
	gap: 10px;
	width: 100%;
	position: relative;
	z-index: 2;
}

.naturo-ms-grid .naturo-ms-props-col .tutor-quiz-border-box {
	margin: 0;
	width: 100% !important;
	flex: 0 0 auto !important;
	cursor: pointer;
	transition: border-color 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.naturo-ms-prop:hover {
	border-color: #2e7d32;
}

.naturo-ms-prop.naturo-ms-selected {
	border-color: #2e7d32;
	box-shadow: 0 0 0 2px #2e7d32;
}

/* Proposition déjà reliée : grisée, mais re-cliquable pour débrancher. */
.naturo-ms-prop.naturo-ms-used {
	opacity: 0.55;
}

/* Colonne droite : slots de réponse. */
.naturo-ms-answers-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
	z-index: 2;
}

.naturo-ms-answers-col .quiz-matching-ans {
	margin: 0;
}

.naturo-ms-slot {
	cursor: pointer;
}

.naturo-ms-slot .tutor-dropzone {
	transition: border-color 0.15s, background-color 0.15s;
}

.naturo-ms-slot:hover .tutor-dropzone {
	border-color: #2e7d32;
}

.naturo-ms-slot.naturo-ms-filled .tutor-dropzone {
	border-color: #2e7d32;
	background-color: rgba(46, 125, 50, 0.06);
}

/* Petit écran : pile en une colonne, câbles verticaux. */
@media (max-width: 768px) {
	.naturo-ms-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

