/* Modal signalement promotion */
#report-modal {
	display: none;
	position: fixed;
	top: 0; left: 0;
	width: 100vw; height: 100vh;
	z-index: 99999;
	background: rgba(0,0,0,0.18);
	align-items: center;
	justify-content: center;
}
#report-modal .report-modal-content {
	background: #fff;
	border-radius: 14px;
	max-width: 370px;
	width: 96vw;
	padding: 24px 18px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.13);
	margin: auto;
	position: relative;
}
#report-modal-close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
}
#report-modal h2 {
	font-size: 1.3em;
	margin-bottom: 10px;
	color: #e11d48;
}
#report-modal .report-modal-desc {
	font-size: 1em;
	margin-bottom: 12px;
	color: #444;
}
#report-form label {
	font-weight: 500;
	margin-bottom: 6px;
	display: block;
}
#report-form select, #report-form textarea {
	width: 100%;
	margin-bottom: 10px;
	padding: 7px 8px;
	border-radius: 7px;
	border: 1px solid #e5e7eb;
}
#report-form button[type="submit"] {
	background: #e11d48;
	color: #fff;
	padding: 8px 18px;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
}
#report-success {
	display: none;
	color: #16a34a;
	font-weight: 500;
	margin-top: 10px;
	text-align: center;
}
