/* Button Styles */
.ce-modal-btn-wrapper {
	display: block;
}
.ce-modal-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #000;
	color: #fff;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}
.ce-modal-btn svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* Modal Styles */
.ce-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.ce-modal.ce-modal-active {
	opacity: 1;
	visibility: visible;
}
.ce-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	z-index: 1;
}
.ce-modal-overlay::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	opacity: 1;
	z-index: 1;
	pointer-events: none;
}
.ce-modal-box {
	position: relative;
	z-index: 2;
	background: #fff;
	padding: 30px;
	width: 500px;
	max-width: 90vw;
	max-height: 90vh;
	overflow-y: auto;
	border-radius: 4px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transform: translateY(20px);
	transition: transform 0.3s ease;
}
.ce-modal.ce-modal-active .ce-modal-box {
	transform: translateY(0);
}
.ce-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: transparent;
	border: none;
	font-size: 20px;
	color: #333;
	cursor: pointer;
	z-index: 3;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ce-modal-body {
	position: relative;
}
