.lpr-live-search-controls {
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: center;
  padding: 16px 12px;
}

.lpr-live-search-more,
.lpr-live-search-all {
  font-size: 0.9em;
  margin: 0;
}

.lpr-live-search-more {
  background: #333;
  border: 0;
  border-radius: 3px;
  color: #fff;
  line-height: 1.2;
  min-height: 36px;
  padding: 9px 18px;
}

.lpr-live-search-more:disabled {
  cursor: wait;
  opacity: 0.55;
}

.lpr-live-search-all {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lpr-live-search-spinner {
  animation: lpr-live-search-spin 0.7s linear infinite;
  border: 2px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  border-top-color: currentColor;
  display: none;
  height: 20px;
  width: 20px;
}

@keyframes lpr-live-search-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .lpr-live-search-spinner {
    animation-duration: 1.8s;
  }
}

@media (max-width: 549px) {
  .lpr-live-search-controls {
    padding: 14px 10px;
  }

  .lpr-live-search-more {
    min-width: 110px;
  }
}
