/* ===== SEARCH CONTAINER ===== */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

/* ===== SEARCH RESULTS DROPDOWN ===== */
#searchResults {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  max-height: 420px;
  overflow-y: auto;
  border: 1px solid #e5e7eb;
}

#searchResults.active {
  display: block;
}

/* ===== EACH RESULT ITEM ===== */
.search-result-item {
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.15s ease;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background-color: #f8f9fa;
}

/* ===== TITLE ===== */
.search-result-item .result-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px 0;
  line-height: 1.4;
}

/* ===== DESCRIPTION ===== */
.search-result-item .result-description {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 8px 0;
  line-height: 1.5;
}

/* ===== TYPE BADGE (green pill) ===== */
.search-result-item .result-type {
  display: inline-block;
  background-color: #1a6b3c;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}

/* ===== NO RESULTS STATE ===== */
.search-result-item.no-results {
  cursor: default;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
  padding: 20px 16px;
}

.search-result-item.no-results:hover {
  background: transparent;
}

/* ===== SCROLLBAR STYLING ===== */
#searchResults::-webkit-scrollbar {
  width: 5px;
}

#searchResults::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0 8px 8px 0;
}

#searchResults::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}