/* ==========================================================================
   TCG Theme — Live Search Dropdown
   ========================================================================== */

.tcg-live-search-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-top: none;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	z-index: 99999;
	max-height: 400px;
	overflow-y: auto;
}

.tcg-live-search-item a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	text-decoration: none;
	color: #1a1a1a;
	transition: background-color 0.15s;
}

.tcg-live-search-item a:hover,
.tcg-live-search-active a {
	background-color: #f5f5f5;
}

.tcg-live-search-thumb {
	width: 40px;
	height: 56px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}

.tcg-live-search-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.tcg-live-search-title {
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tcg-live-search-title mark {
	background-color: #fff3cd;
	color: inherit;
	padding: 0;
	border-radius: 2px;
}

.tcg-live-search-meta {
	font-size: 12px;
	color: #888;
}

.tcg-live-search-empty {
	padding: 16px;
	text-align: center;
	color: #999;
	font-size: 14px;
}
