.my-theme-nav-widget .my-theme-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: center;
}

.my-theme-nav-widget .my-theme-nav-list a {
	text-decoration: none;
	color: #222;
}

.my-theme-nav-vertical .my-theme-nav-list {
	flex-direction: column;
	gap: 10px;
}

.my-theme-nav-align-left .my-theme-nav-list {
	justify-content: flex-start;
}

.my-theme-nav-align-center .my-theme-nav-list {
	justify-content: center;
}

.my-theme-nav-align-right .my-theme-nav-list {
	justify-content: flex-end;
}

.my-theme-search-widget {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.my-theme-search-toggle {
	width: 40px;
	height: 40px;
	border: 1px solid #d8d8d8;
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.my-theme-search-toggle svg {
	width: 18px;
	height: 18px;
	fill: #222;
}

.my-theme-search-form {
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	display: none;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 10px;
	min-width: 320px;
	z-index: 50;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.my-theme-live-search.is-open .my-theme-search-form {
	display: flex;
	align-items: center;
}

.my-theme-search-input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 10px 12px;
	border: 1px solid #d8d8d8;
	border-radius: 6px;
}

.my-theme-search-button {
	padding: 10px 16px;
	border: 1px solid #111;
	background: #111;
	color: #fff;
	border-radius: 6px;
	cursor: pointer;
}

.my-theme-live-results {
	position: absolute;
	left: 10px;
	right: 10px;
	top: calc(100% - 2px);
	background: #fff;
	border: 1px solid #ddd;
	border-top: 0;
	border-radius: 0 0 8px 8px;
	max-height: 260px;
	overflow-y: auto;
	display: none;
}

.my-theme-live-results.is-visible {
	display: block;
}

.my-theme-live-results a,
.my-theme-live-results .my-theme-live-empty {
	display: block;
	padding: 8px 10px;
	text-decoration: none;
	color: #222;
	font-size: 14px;
}

.my-theme-live-results a:hover {
	background: #f6f6f6;
}
