.embed-button {
	position: absolute;
	top: 10px;
	left: 10px;
	background-color: #ef009d;
	color: #ffffff;
	padding: 5px 4px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	z-index: 9999;
	font-size: 10px;
	font-family: Arial, sans-serif;
	cursor: pointer;
	border: none;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease;
}
.embed-button:hover {
	background-color: #bc007b;
}
.embed-modal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #1e1e1e;
	color: #ffffff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	z-index: 10000;
	width: 80%;
	max-width: 500px;
}
.embed-modal textarea {
	width: 100%;
	height: 120px;
	background-color: #2d2d2d;
	color: #ffffff;
	border: 1px solid #444;
	border-radius: 5px;
	padding: 10px;
	resize: none;
	font-family: Arial, sans-serif;
}
.embed-modal button {
	margin-top: 10px;
	background-color: #ef009d;
	color: #ffffff;
	border: none;
	padding: 8px 15px;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
}
.embed-modal button:hover {
	background-color: #e63939;
}
.embed-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
}