/**
 * Brønnøysundregisteret Checkout Autocomplete Styles
 *
 * @since 1.8.0
 */

.brreg-autocomplete-wrapper {
	position: relative;
}

.brreg-autocomplete-results {
	position: absolute;
	z-index: 99999;
	top: 100%;
	left: 0;
	right: 0;
	margin-top: 2px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	max-height: 260px;
	overflow-y: auto;
}

.brreg-autocomplete-item {
	padding: 10px 14px;
	cursor: pointer;
	border-bottom: 1px solid #f0f0f0;
	transition: background-color 0.1s ease;
}

.brreg-autocomplete-item:last-child {
	border-bottom: none;
}

.brreg-autocomplete-item:hover,
.brreg-autocomplete-item.brreg-autocomplete-active {
	background-color: #f0f5ff;
}

.brreg-autocomplete-name {
	font-weight: 600;
	font-size: 14px;
	line-height: 1.3;
	color: #333;
}

.brreg-autocomplete-meta {
	display: flex;
	gap: 12px;
	margin-top: 3px;
	font-size: 12px;
	color: #777;
	line-height: 1.3;
}

.brreg-autocomplete-orgnr {
	white-space: nowrap;
}

.brreg-autocomplete-addr {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.brreg-autocomplete-loading,
.brreg-autocomplete-no-results {
	padding: 12px 14px;
	font-size: 13px;
	color: #888;
	text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
	.brreg-autocomplete-results {
		max-height: 200px;
	}

	.brreg-autocomplete-meta {
		flex-direction: column;
		gap: 2px;
	}

	.brreg-autocomplete-addr {
		white-space: normal;
	}
}
