/**
 * @file map-search-theme.css
 * @purpose Keep search surfaces white with measurement-blue icons and focus accents.
 * @dependencies Existing search DOM and interactions in map.html/styles.css.
 * @public Search field, results, focus states, icons and query-progress styling.
 * @sideEffects Presentation only; no changes to search behavior or loading state.
 */

.map-search .search-field {
  background: #fff;
  border-color: #d9dbe3;
  box-shadow: 0 8px 24px #00000022;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.map-search:focus-within .search-field {
  border-color: #4285F4;
  box-shadow: 0 0 0 3px #4285F440, 0 8px 24px #00000022;
}
.map-search input { color: #25252d; caret-color: #4285F4; }
.map-search input::placeholder { color: #747681; }
.map-search .search-icon { border-color: #4285F4; }
.map-search .search-icon::after { background: #4285F4; }
.map-search .search-clear { background: #f2f3f5; color: #4285F4; }
.map-search .search-clear:hover,
.map-search .search-clear:focus-visible { background: #e7e9ed; color: #4285F4; outline: 2px solid #4285F4; }
.map-search .search-progress { border-color: #4285F433; border-top-color: #4285F4; }

/* Results retain the original light surface; blue is reserved for accents. */
.map-search .search-results {
  background: #fff;
  border-color: #d9dbe3;
  color: #25252d;
  box-shadow: 0 12px 32px #18152940;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.map-search .search-result:hover,
.map-search .search-result.is-active { background: #f2f3f5; }
.map-search .search-result-icon { background: #f2f3f5; }
.map-search .search-result-icon::before { border-color: #4285F4; }
.map-search .search-result-copy strong { color: #25252d; }
.map-search .search-result-copy small,
.map-search .search-empty { color: #696b77; }
.map-search .search-result-type { background: #f2f3f5; color: #4285F4; }
.map-search .search-credit { color: #747681; border-color: #e4e4ed; }
.map-search .search-credit a { color: #4285F4; }
