.st-wyjazdy-search-wrapper {
	position: relative;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}
	
	.st-search-box {
		position: relative;
		display: flex;
		align-items: center;
	}
	
	#st-wyjazdy-search-input {
		width: 100%;
		padding: 15px 18px;
		border: 1px solid #ddd;
		background: #23191633;
		color: #fff;
		border-radius: 0;
		font-size: 16px;
		outline: none;
		padding-right: 40px;
	}
	
	#st-wyjazdy-search-input::placeholder {
		color: #fff;
	}
		
	#st-wyjazdy-search-btn {
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
		background: none;
		border: none;
		cursor: pointer;
		padding: 0;
		color: #fff;
		display: block;
	}
	
		#st-wyjazdy-search-btn span {
			display: block;
			width: 18px;
			height: 18px;
			background-image: url(../graf/icoSearch.svg);
			background-repeat: no-repeat;
			background-position: 50% 50%;
			background-size: contain;
		}
		
		#st-wyjazdy-search-btn:hover span {
			color: #2271b1;
		}
		
	
	.st-search-results {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		border: 1px solid #ddd;
		border-top: none;
		box-shadow: 0 4px 6px rgba(0,0,0,0.1);
		z-index: 1000;
		display: none;
		max-height: 300px;
		overflow-y: auto;
	}
	
	.st-search-item {
		padding: 5px 15px;
		border-bottom: 1px solid #eee;
		cursor: pointer;
		transition: background 0.2s;
	}
	
	.st-search-item:last-child {
		border-bottom: none;
	}
	
	.st-search-item:hover {
		background: #f9f9f9;
	}
	
	.st-search-item-title {
		font-size: 16px;
		color: #333;
		line-height: 1.4;
	}
	
	.st-search-item-region {
		font-size: 12px;
		color: #888;
		line-height: 1.4;
	}
	
	.st-search-no-results {
		padding: 15px;
		text-align: center;
		color: #999;
	}
