#search-field {
position: relative; /* Чтобы отображение результатов поиска не двигало строку поиска */
}

#search-results {
position: absolute;
top: 100%;
right: 0;
width: 200%;
background: white;
border: 1px solid #ddd;
border-radius: 4px;
margin-top: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
z-index: 5;
max-height: 80vh;
overflow-y: auto;
}

#search-results:empty {
    display: none;
}

.search-result {
	padding: 15px;
	border-bottom: 1px solid #eee;
}

.search-result:last-child {
	border-bottom: none;
}

.search-result h3 {
	margin: 0 0 10px 0;
	color: #000;
	font-size: 16px;
}

.search-result p {
	margin: 0;
	color: #333;
	font-size: 14px;
	line-height: 1.4;
}

.search-result a {
	text-decoration: none;
	color: inherit;
}

.search-result:hover {
	background-color: #f5f5f5;
}

mark {
	background-color: transparent;
	font-weight: bold;
	padding: 0;
}