.justcrm-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
}

/* Modal-Inhalt */
.justcrm-modal-content {
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	max-width: 650px;
	text-align: center;
	position: relative;
}

/* Schließen-Button */
.justcrm-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 18px;
	cursor: pointer;
} 

/* Button */
.justcrm-button {
	padding: 10px 20px;
	background: #007bff;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.justcrm-button:hover {
	background: #0056b3;
}

.justcrm-toast {
	min-height: 50px;
	visibility: hidden;
	min-width: 200px;
	border-radius: 5px;
	padding: 10px;
	opacity: 0;
	transition: opacity 0.5s;
	z-index:9999;
	margin-bottom: 10px;
}
.justcrm-toast-show {
	visibility: visible!important;
	opacity: 1!important;
}	