/* Nakama header search redesign: pill input, aligned dropdown, brand focus ring.
   Shared class .header-search-form covers both the desktop dropdown and the
   mobile off-canvas copy of the search form. */

.header-search-form .searchform-wrapper,
.header-search-form .ux-search-box {
	width: 100%;
}

.header-search-form .flex-row.relative {
	border: 1px solid #e2e2e2;
	border-radius: 999px;
	overflow: hidden;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-search-form .flex-row.relative:focus-within {
	border-color: #d62828;
	box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.15);
}

.header-search-form input.search-field {
	height: 42px;
	border: none;
	border-radius: 0;
	box-shadow: none;
	padding: 0 18px;
	background: transparent;
}

.header-search-form input.search-field:focus {
	box-shadow: none;
	background: transparent;
}

.header-search-form .searchform-wrapper .ux-search-submit {
	height: 42px;
	width: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 0 !important;
	background: transparent;
	color: #4a4a4a;
	padding: 0;
}

.header-search-form .searchform-wrapper .ux-search-submit:hover {
	background: rgba(0, 0, 0, 0.04);
	color: #d62828;
}

#ux-search-dropdown {
	min-width: 320px;
}

.header-search-form .live-search-results {
	border-radius: 8px;
	overflow: hidden;
	margin-top: 6px;
}
