/* ReqMe Widget Styles - Scoped to avoid affecting other elements */
#reqme-widget-container {
	position: fixed;
	right: 0px;
	bottom: 0px;
	z-index: 999999;
	pointer-events: none;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: center;
	justify-self: center;
	height: 100vh;
	max-width: 100vw;
}

#reqme-widget-container.v1 {
	width: 35vw;
}
#reqme-widget-container.v2 {
	width: 100vw;
}

#reqme-widget-iframe {
	border: none;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15), 0 8px 10px rgba(0, 0, 0, 0.12);
	display: none;
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.3s ease, transform 0.3s ease;
	max-width: 100vw;
	margin: 40px auto;
}

#reqme-widget-iframe.v1 {
	border-radius: 20px 0 0 20px;
	width: 35vw;
	height: 100vh;
}
#reqme-widget-iframe.v2 {
	width: 55vw;
	height: calc(100vh - 80px);
	border-radius: 20px;
}

#reqme-widget-button.hover-animated:hover {
	transform: scale(1);
}

#reqme-widget-button.hover-animated {
	transform: scale(0.8);
	animation: reqme-pulse 2s infinite;
}

#reqme-widget-button {
	position: fixed;
	padding: 0;
	cursor: pointer;
	z-index: 1998;
	pointer-events: auto;
	transition: transform 0.2s ease, box-shadow 0.2s ease,
	background-color 0.2s ease;
}

@keyframes reqme-pulse {
	0% {
	box-shadow: 0 0 0 0 rgba(237, 255, 139, 1);
	}
	70% {
	box-shadow: 0 0 0 35px rgba(237, 255, 139, 0);
	}
	100% {
	box-shadow: 0 0 0 0 rgba(237, 255, 139, 0);
	}
}

#reqme-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1999;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.reqme-error {
	position: absolute;
	top: 20px;
	padding: 10px 20px;
	font-size: 12px;
	background-color: #ee8989;
	color: white;
	border-radius: 12px;
	width: 100%;
	max-width: 75vw;
	text-align: center;
	justify-self: anchor-center;
	z-index: 99999999;
}

@media (max-width: 768px) {
	#reqme-widget-container {
	height: 90vh;
	width: 100vw !important;
	right: 0px;
	bottom: 0px;
	}

	#reqme-widget-iframe {
	width: 100% !important;
	height: 100%;
	max-width: none;
	border-radius: 20px 20px 0px 0px !important;
	}
}
