.bss-54033-widget-container {
	position: relative;
}

.bss-54033-trigger-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	background-color: #000;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-family: inherit;
	font-size: 16px;
	transition: opacity 0.3s ease;
}

.bss-54033-trigger-btn:hover {
	opacity: 0.9;
}

.bss-54033-btn-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.bss-54033-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bss-54033-popup-overlay.bss-54033-active {
	opacity: 1;
	visibility: visible;
}

.bss-54033-popup-content {
	position: relative;
	width: 90%;
	max-width: 800px;
	height: 80vh;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	transform: translateY(20px);
	transition: transform 0.3s ease;
}

.bss-54033-popup-overlay.bss-54033-active .bss-54033-popup-content {
	transform: translateY(0);
}

.bss-54033-popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	background: #fff;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	color: #333;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	transition: background-color 0.2s, color 0.2s;
}

.bss-54033-popup-close:hover {
	background-color: #f0f0f0;
	color: #000;
}

.bss-54033-iframe-wrapper {
	width: 100%;
	height: 100%;
	padding-top: 40px; /* Space for close button */
	box-sizing: border-box;
}

.bss-54033-iframe-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}
