.easyrx-health-condition-autocomplete {
	position: relative;
	width: 100%;
}

.easyrx-health-condition-autocomplete__field {
	position: relative;
	display: inline-block;
    width: 100%;
}

.health-condition-autocomplete__icon {
   	position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 24px;
    height: 24px;
}

.easyrx-health-condition-autocomplete__input {
	width: 100%;
    height: 56px;
    background-color: #FFFFFF; /* White background */
    border-radius: 100px;
    border: 1px solid #D0D5DD;
    padding: 4px 20px 4px 52px; /* Space for icon on left */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #101828;
    box-sizing: border-box;
    outline: none;
    transition: all 0.3s ease;
}

.easyrx-health-condition-autocomplete__input::placeholder {
	color: #667085;
}

.easyrx-health-condition-autocomplete__input:hover {
   border-color: #98a2b3;
}

.easyrx-health-condition-autocomplete__input:focus {
    border-color: #038935;
}

.easyrx-health-condition-autocomplete__dropdown {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	right: 0;
	z-index: 9999;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 18px 36px rgba(26, 46, 54, 0.12);
	overflow: hidden;
	padding: 8px 0;
}

.easyrx-health-condition-autocomplete__item {
	display: flex;
	align-items: flex-start;
	padding: 12px 20px;
	color: #16363a;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.easyrx-health-condition-autocomplete__item:hover,
.easyrx-health-condition-autocomplete__item:focus {
	background-color: rgba(102, 195, 165, 0.12);
}

.easyrx-health-condition-autocomplete__thumb {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	margin-right: 14px;
	flex-shrink: 0;
	overflow: hidden;
	background-color: #d8efe7;
	display: none;
}

.easyrx-health-condition-autocomplete__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.easyrx-health-condition-autocomplete__copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.easyrx-health-condition-autocomplete__title {
	font-weight: 600;
	font-size: 16px;
}

.easyrx-health-condition-autocomplete__excerpt {
	font-size: 14px;
	line-height: 1.4;
	color: #466065;
	margin: 0;
	display: none;
}

.easyrx-health-condition-autocomplete__cta {
	font-size: 13px;
	font-weight: 500;
	color: #198d6f;
	display: none;
}

.easyrx-health-condition-autocomplete__status {
	margin-top: 8px;
	font-size: 13px;
	color: #466065;
	min-height: 18px;
}

@media (max-width: 640px) {
	.easyrx-health-condition-autocomplete {
		max-width: 100%;
	}

	.easyrx-health-condition-autocomplete__dropdown {
		top: calc(100% + 8px);
	}
}

