/**
 * FAQ Search Filter Styles
 *
 * @package Fluid_Tactical
 */

/* Highlight style for search keywords */
.ft-faq-highlight {
	background-color: #ffa500;
	color: #000;
	padding: 2px 4px;
	border-radius: 3px;
	font-weight: 600;
}

/* No results message */
.ft-faq-no-results {
	text-align: center;
	padding: 40px 20px;
	color: #999;
	font-size: 16px;
	margin: 20px 0;
}

/* Ensure hidden FAQ items are properly hidden */
.faq-item[style*="display: none"],
[class*="accordion-item"][style*="display: none"] {
	display: none !important;
}

