/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Child theme of Hello Elementor
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
*/


/* resultatencontainer blijft normaal */
#ajax-search-results{
  position: relative;
  min-height: var(--ls-min-h, 320px);
}

/* loader overlay (standaard verborgen, JS zet display:flex tijdens laden) */
#ajax-search-results .ls-overlay{
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 9999;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: inherit;
}

/* spinner */
#ajax-search-results .ls-spinner{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 3px solid rgba(0,0,0,.15);
  border-top-color: rgba(0,0,0,.55);
  animation: lsSpin 0.75s linear infinite;
}

#ajax-search-results .ls-loading-text{
  font-size: 14px;
  opacity: .85;
}

@keyframes lsSpin{
  to { transform: rotate(360deg); }
}

/* lege resultaten tekst (wordt door JS aan/uit gezet) */
#ajax-search-results .ls-empty{
  display: none;
  text-align: center;
  padding: 26px 16px;
  font-size: 16px;
  opacity: .85;
}
