.lrdv-widget {
	background-color: var(--lrdv-fond, #F5F0EA);
	border: 1px solid var(--lrdv-secondaire, #D8BEC8);
	border-radius: 12px;
	padding: 24px;
	max-width: 500px;
	margin: 0 auto;
}
.lrdv-widget h3 {
	color: var(--lrdv-principal, #738B83);
	margin-top: 0;
}
.lrdv-types {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.lrdv-type-bouton {
	background: #fff;
	border: 2px solid var(--lrdv-secondaire, #D8BEC8);
	border-radius: 10px;
	padding: 12px 16px;
	text-align: left;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}
.lrdv-type-bouton:hover,
.lrdv-type-bouton.lrdv-selectionne {
	border-color: var(--lrdv-principal, #738B83);
	background-color: rgba(115, 139, 131, 0.08);
}
.lrdv-type-nom {
	font-weight: 600;
}
.lrdv-type-details {
	font-size: 13px;
	color: #666;
}
.lrdv-champ-date {
	padding: 8px;
	border-radius: 6px;
	border: 1px solid var(--lrdv-secondaire, #D8BEC8);
	width: 100%;
	margin-bottom: 12px;
}
.lrdv-creneaux {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.lrdv-creneau-bouton {
	background: #fff;
	border: 1px solid var(--lrdv-secondaire, #D8BEC8);
	border-radius: 6px;
	padding: 8px 12px;
	cursor: pointer;
}
.lrdv-creneau-bouton:hover,
.lrdv-creneau-bouton.lrdv-selectionne {
	background-color: var(--lrdv-principal, #738B83);
	color: #fff;
}
.lrdv-champ {
	margin-bottom: 12px;
}
.lrdv-champ label {
	display: block;
	margin-bottom: 4px;
	font-size: 14px;
}
.lrdv-champ input {
	width: 100%;
	padding: 8px;
	border-radius: 6px;
	border: 1px solid var(--lrdv-secondaire, #D8BEC8);
}
.lrdv-bouton-valider {
	background-color: var(--lrdv-principal, #738B83);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 20px;
	cursor: pointer;
	width: 100%;
	font-size: 15px;
}
.lrdv-message {
	margin-top: 10px;
	font-weight: 600;
}
