* {
	padding: 0;
	margin: 0;
}

/*Search Bar*/
.siteSearchContainer {
	width: 28%;
	height: 10px;
	/*background-color: black;*/
}

.siteSearch {
	/*background-color: red;	*/
	margin: 0 0 0 0;
}

.siteSearchKeywords {
	width: 250px;
	height: 35px;
	border-radius: 5px 0 0 5px;
}

.iconbtn {
	display: inline-flex;  /* This keeps it inline */
   justify-content: center;
   align-items: center;
	width: 45px;
	height: 38px;
	padding: 9px;
	background-color: #FFFFFF;
	vertical-align: middle; /* Align with input */
	margin-left: -4px;
	cursor: pointer;
	border-radius: 0 5px 5px 0;
}

.nav-icons {
	vertical-align: middle; /* Align with button */
	width: 25px;
	height: 25px;
}
/*End of Search Bar*/

/*Search Results*/
.results-count {
	color: #666;
	font-size: 14px;
	margin-bottom: 20px;
}
					
.results-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
					
.result-item {
	background: white;
	padding: 20px;
	border-radius: 3px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	border: 1px solid #ddd;
}
					
.page-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}
					
.page-title a {
	color: #C2D4F1;
	text-decoration: none;
}
					
.page-title a:hover {
	text-decoration: underline;
}
					
.page-url {
	color: #0a0;
	font-size: 14px;
	margin-bottom: 15px;
	word-break: break-all;
}
					
.keywords-found {
	margin-top: 10px;
}
					
.keyword-tag {
	display: inline-block;
	background: #e9ecef;
	padding: 6px 12px;
	margin: 4px;
	border-radius: 10px;
	font-size: 14px;
	color: #495057;
	border: 1px solid #dee2e6;
}
					
.no-results {
	text-align: center;
	padding: 40px;
	color: #666;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	border: 1px solid #ddd;
}
					
.page-name {
	color: #4A6DA7;
	font-weight: bold;
}
/*End of Search Results*/

/*MOBILE*/
@media screen and (max-width: 1525px) and (min-width: 1081px) {
	.siteSearchKeywords {
		width: 130px;	
	}
}

@media screen and (max-width:1080px) and (min-width: 999px) {
	.siteSearchKeywords {
		width: 130px;	
	}
}

@media screen and (max-width: 998px) and (min-width: 760px) {
	
}

@media screen and (max-width: 667px) and (min-width: 600px) {
	.siteSearchKeywords {
		width: 130px;	
	}
}

@media screen and (max-width: 428px) and (min-width: 399px) {
	.siteSearchKeywords {
		width: 100px;	
	}
	
	.iconbtn {
		margin: 0 5px 0 -2px;
	}
}

@media screen and (max-width: 398px) and (min-width: 360px) {
	.siteSearchKeywords {
		width: 80px;	
	}
}
