.sf-trigger-b793ae01 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: #f1f3f5;
	border: 1px solid #dee2e6;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	color: #495057;
	transition: all 0.2s;
}

.sf-trigger-b793ae01:hover {
	background: #e9ecef;
}

/* Modal Overlay */
.sf-modal-b793ae01 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 999999;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 10vh;
}

.sf-modal-backdrop-b793ae01 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(2px);
}

.sf-modal-content-b793ae01 {
	position: relative;
	width: 100%;
	max-width: 600px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.sf-search-header-b793ae01 {
	display: flex;
	align-items: center;
	padding: 0 20px;
	border-bottom: 1px solid #f1f3f5;
	background: #fff;
}

.sf-search-icon-b793ae01 {
	color: #adb5bd;
	flex-shrink: 0;
}

#sf-input-b793ae01 {
	flex: 1;
	border: none;
	padding: 20px 15px;
	font-size: 18px;
	outline: none;
	background: transparent;
	color: #212529;
	box-shadow: none !important;
}

.sf-results-container-b793ae01 {
	max-height: 50vh;
	overflow-y: auto;
}

.sf-result-item-b793ae01 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	border-bottom: 1px solid #f8f9fa;
	text-decoration: none;
	color: #212529;
	transition: background 0.15s;
}

.sf-result-item-b793ae01:hover {
	background: #f8f9fa;
	color: #212529;
}

.sf-result-title-b793ae01 {
	font-weight: 500;
	font-size: 15px;
}

.sf-result-type-b793ae01 {
	font-size: 12px;
	color: #868e96;
	background: #f1f3f5;
	padding: 3px 8px;
	border-radius: 12px;
	text-transform: capitalize;
}

.sf-loading-b793ae01, .sf-no-results-b793ae01 {
	padding: 20px;
	text-align: center;
	color: #868e96;
	font-size: 14px;
}