.elementor-field-group {
  position: relative;
}

.eaa-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  z-index: 9999;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  max-height: 260px;
  overflow-y: auto;
  box-sizing: border-box;
}

.eaa-suggestions li {
  padding: 10px;
  cursor: pointer;
  line-height: 1.4;
}

.eaa-suggestions li:hover {
  background: #f2f2f2;
}

.eaa-loader {
  display: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-top: 2px solid #333;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  z-index: 2;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
