/* Popup Modal Styles - Unique Suffix: 354cf184 */

.popup-modal-overlay-354cf184 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 999999;
}

/* Open state */
.popup-modal-overlay-354cf184.is-active-354cf184 {
	opacity: 1;
	visibility: visible;
}

/* Modal box */
.popup-modal-container-354cf184 {
	background: #ffffff;
	padding: 2.5rem 2rem;
	border-radius: 12px;
	max-width: 500px;
	width: 90%;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
	position: relative;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.popup-modal-overlay-354cf184.is-active-354cf184 .popup-modal-container-354cf184 {
	transform: scale(1);
}

/* Close button */
.popup-modal-close-354cf184 {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 2rem;
	line-height: 1;
	color: #333333;
	cursor: pointer;
	padding: 0;
	transition: color 0.2s ease;
}

.popup-modal-close-354cf184:hover {
	color: #ff0000;
}

/* Content Styling */
.popup-modal-content-354cf184 {
	font-family: var(--font-sans, system-ui, sans-serif);
	color: #333333;
}

.popup-modal-content-354cf184 h2 {
	margin-top: 0;
	font-size: 1.75rem;
	margin-bottom: 1rem;
}

.popup-modal-content-354cf184 p {
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 0;
}

.popup-modal-content-354cf184 code {
	background: #f4f4f4;
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
	font-size: 0.9em;
}

/* Support Admin Bar */
body.admin-bar .popup-modal-overlay-354cf184 {
	top: var(--wp-admin--admin-bar--height, 32px);
	height: calc(100% - var(--wp-admin--admin-bar--height, 32px));
}

@media screen and (max-width: 782px) {
	body.admin-bar .popup-modal-overlay-354cf184 {
		top: 46px;
		height: calc(100% - 46px);
	}
}
