#asea_search_results {
  display: none !important;   /* fully hidden */
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}



/* Dropdown container */
.custom-search-results {
  position: absolute;
    top: 91%;
    left: 0px;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd !important;
/*     border-radius: 8px !important; */
    margin-top: 4px !important;
    max-height: 350px;
    overflow-y: auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
    z-index: 1000;
    font-family: "Segoe UI", sans-serif;
    font-size: 18px !important;
    display: none;
	padding-top: 10px !important;
    padding-bottom: 10px !important;
}
@media (max-width:768px) {
	.custom-search-results {
	top: 62% !important;
    left: 19px !important;
	}
	.search-loading-icon {
		height:20px !important;
		width:20px !important;
	}
}
/* Each item */
.search-item {
  padding: 14px 16px !important;
 border-bottom: 1px solid #ddd !important;
  cursor: pointer;
}

.search-item:last-child {
  border-bottom: none;
}

/* Link style */
.search-link {
  text-decoration: none;
  display: block;
  color: #222;
}

/* Title */
.search-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* Snippet */
.search-snippet {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  max-height: 36px; /* clamp to 2 lines */
  overflow: hidden;
  text-overflow: ellipsis;
	margin-top: 10px !important;
}

/* Category */
.search-category {
  font-size: 13px !important;
  color: #888;
  margin-top: 2px;
}

/* Hover effect */
.search-item:hover {
  background: #f5f9ff;
}
.loading-spinner, .asea-search-filter-icon{
	display:none !important;
}
span.epkbfa.ep_font_icon_document {
    margin-right: 10px !important;
}

@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

.custom-search-spinner {
  display: none;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 4px solid #ccc;
  border-top: 4px solid #1292cf;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 10;
}
/* Container for tabs */
.search-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  border-bottom: none; /* remove default border for modern look */
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Individual tabs */
.search-tab {
  flex: none; /* allow tabs to size to content */
  padding: 10px 20px !important;
  background: #f0f4f8 !important;
  border-radius: 25px !important;
  border: 1px solid transparent !important;
  cursor: pointer;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #1292cf !important;
  transition: all 0.3s ease;
}

/* Hover effect */
.search-tab:hover {
  background: #e0ebf5 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}

/* Active tab */
.search-tab.active {
  background: linear-gradient(90deg, #1292cf, #0a6ea5) !important;
  color: #fff !important;
  border: none !important\;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(0) !important;
}

/* Tab content container */
.search-tab-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Active content */
.search-tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  padding: 12px 0;
}

/* Optional: make tab content cards */
.search-item {
  background: #fff;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* .search-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 8px;
}

.search-tab {
  flex: 1 !important;
  padding: 8px !important;
  background: #f5f5f5;
  border: none !important;
  cursor: pointer;
  font-size: 14px !important;
	font-weight:700 !important;
	color:#1292cf;
}

.search-tab.active {
  background: #1292cf;
  color: #fff;
}

.search-tab-content {
  display: none;
}

.search-tab-content.active {
  display: block;
}
 */