/**
 * Search & Replace in Text Blocks - Editor Styles
 *
 * @package Search_Replace_Text_Blocks
 * @since 1.0.0
 */

/* Block highlight animation */
@keyframes srtb-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.4);
	}
	50% {
		box-shadow: 0 0 0 6px rgba(0, 124, 186, 0.2);
	}
}

.srtb-highlight {
	animation: srtb-pulse 1s ease-in-out 2;
	outline: 2px solid #007cba !important;
	outline-offset: 2px;
}

/* Text match highlight */
.srtb-text-highlight {
	background-color: #ffeb3b !important;
	color: #000 !important;
	padding: 2px 4px;
	border-radius: 3px;
	box-shadow: 0 0 0 2px #ffeb3b;
}
