/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* Recaptcha logo silelim */
.grecaptcha-badge { opacity:0; }

/* Sonuç kutusunu başlangıçta gizli tut */
#livesearch-container {
	position: relative;
	margin-top: 10px; /* Input ile textarea arasını aç */
}
  
/* Arama sonuçlarının bulunduğu kutu */
#livesearch {
	display: none;
	background: white;
	border: 1px solid #ddd;
	border-radius: 6px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	padding: 10px;
	max-height: 250px;
	overflow-y: auto;
	transition: all 0.3s ease-in-out; /* Yumuşak animasyon */
}
  
/* İçerik öğeleri */
#livesearch .search-item {
	display: flex;
	align-items: center;
	padding: 10px;
	border-bottom: 1px solid #eee;
	cursor: pointer;
	transition: background 0.2s;
}
  
#livesearch .search-item:last-child {
	border-bottom: none;
}
  
/* Hover efekti */
#livesearch .search-item:hover {
	background: #f8f9fa;
}
  
/* Başlık formatı */
#livesearch .search-title {
	font-size: 14px;
	font-weight: 500;
	color: #333;
}
  
/* Canvas Loader */
#search-loader {
	display: none;
	text-align: center;
	padding: 10px;
}
  
#search-loader img {
	width: 30px;
	height: 30px;
}