/* search-widget.css
   Minimal styling for the SwasthPath search bar, matching the navy/teal
   DM Sans theme already used across the homepage and service cards.
   Adjust the CSS variables below to match your exact palette if needed. */

.sp-search-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  font-family: 'DM Sans', sans-serif;
}

#sp-search-input {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #d5dbe2;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

#sp-search-input:focus {
  border-color: #0f766e; /* teal */
}

.sp-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e5e9ef;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  max-height: 360px;
  overflow-y: auto;
  z-index: 50;
}

.sp-search-group-label {
  padding: 8px 14px 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.sp-search-result {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f1f3f6;
}

.sp-search-result:last-child {
  border-bottom: none;
}

.sp-search-result:hover {
  background: #f0fdfa; /* light teal hover */
}

.sp-search-result-name {
  font-weight: 600;
  font-size: 14px;
  color: #0f172a; /* navy */
}

.sp-search-result-subtitle {
  font-size: 12.5px;
  color: #64748b;
  margin-top: 2px;
}

.sp-search-empty {
  padding: 14px;
  font-size: 13.5px;
  color: #64748b;
  text-align: center;
}
