.mobilo-bb-device-search {
	position: relative;
	width: 100%;
	max-width: 28rem;
}

.mobilo-bb-device-search-icon {
	position: absolute;
	left: 1.1rem;
	top: 50%;
	transform: translateY(-50%);
	color: #8b93a0;
	display: flex;
	pointer-events: none;
	z-index: 2;
}

.mobilo-bb-device-search-input {
	width: 100%;
	height: 3.25rem;
	padding: 0 2.75rem 0 2.85rem;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: #1d2327;
	font-size: 1rem;
	line-height: 1.4;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	outline: none;
}

.mobilo-bb-device-search-input::placeholder {
	color: #9aa3af;
}

.mobilo-bb-device-search-input::-webkit-search-decoration,
.mobilo-bb-device-search-input::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
}

.mobilo-bb-device-search-clear {
	position: absolute;
	right: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1.75rem;
	height: 1.75rem;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #8b93a0;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
}

.mobilo-bb-device-search-clear:hover {
	color: #1d2327;
}

.mobilo-bb-device-search-dropdown {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 0.5rem);
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
	overflow: hidden;
	z-index: 1001;
}

.mobilo-bb-device-search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.28);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease;
	z-index: 1000;
}

.mobilo-bb-device-search-overlay.is-active {
	opacity: 1;
	visibility: visible;
}

.mobilo-bb-ds-list {
	list-style: none;
	margin: 0;
	padding: 0.4rem;
}

.mobilo-bb-ds-item a {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.65rem 0.75rem;
	border-radius: 0.65rem;
	color: #1d2327;
	text-decoration: none;
}

.mobilo-bb-ds-item.is-active a,
.mobilo-bb-ds-item a:hover {
	background: #f3f5f7;
}

.mobilo-bb-ds-item img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	border-radius: 6px;
	background: #f8f9fa;
	flex-shrink: 0;
}

.mobilo-bb-ds-title {
	font-size: 0.95rem;
	line-height: 1.35;
}

.mobilo-bb-ds-title strong {
	font-weight: 700;
}

.mobilo-bb-ds-empty,
.mobilo-bb-ds-loader {
	padding: 1rem 1.1rem;
	color: #6b7280;
	text-align: center;
}

.mobilo-bb-ds-loader span {
	width: 1.15rem;
	height: 1.15rem;
	border: 2px solid #e5e7eb;
	border-top-color: #111;
	border-radius: 50%;
	display: inline-block;
	animation: mobilo-bb-ds-spin 0.6s linear infinite;
}

@keyframes mobilo-bb-ds-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 782px) {
	.mobilo-bb-device-search {
		max-width: none;
	}
}
