
#dialogBox-container {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.dialogBox-message {
	min-width: 250px;
	padding: 20px 20px;
	border-radius: 5px;
	opacity: 0;
	transition: opacity 0.5s;
	box-shadow: 5px 20px 20px rgba(0, 0, 0, 0.7); /* Ajouter une ombre plus grande et plus prononcée */
	position: relative;
	margin-top: 10px;
}

.dialogBox-success {
	background-color: #4CAF50;
	color: white;
}

.dialogBox-error {
	background-color: #F44336;
	color: white;
}

.dialogBox-message button {
	background-color: #000;
	border-radius: 5px;
	opacity: 0.9;
}

