/* Search suggestions */
.title-search-result {
	background: white;
	border-radius: 0.5rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	z-index: 1000;
}
.dark .title-search-result {
	background: #0f172a;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.search-suggestion-footer {
	border-top: 1px solid #e2e8f0;
	padding: 0.75rem 1rem;
	background-color: #f8fafc;
	text-align: right;
}
.dark .search-suggestion-footer {
	border-top: 1px solid #1e293b;
	background-color: #1e293b;
}
.search-suggestion-footer-link {
	color: #64748b;
	font-size: 0.75rem;
	text-decoration: none;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}
.dark .search-suggestion-footer-link {
	color: #94a3b8;
}
.search-suggestion-footer-link:hover {
	color: #8b5cf6;
	text-decoration: underline;
}
.search-suggestion-empty {
	padding: 2rem 1rem;
	text-align: center;
}
.search-suggestion-empty-icon {
	color: #cbd5e1;
	margin-bottom: 1rem;
	display: flex;
	justify-content: center;
}
.dark .search-suggestion-empty-icon {
	color: #475569;
}
.search-suggestion-empty-title {
	color: #334155;
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 0.5rem;
}
.dark .search-suggestion-empty-title {
	color: #e2e8f0;
}
.search-suggestion-empty-text {
	color: #64748b;
	font-size: 0.875rem;
}
.dark .search-suggestion-empty-text {
	color: #94a3b8;
}
