.site-search-wrapper {
  position: relative;
}

.pf-searchbox-input {
  width: 100%;
  padding: 10px 16px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid #ccc;
  border-radius: 24px;
  background-color: #fff;
  color: #333;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pf-searchbox-input:focus {
  border-color: #c6d420;
  box-shadow: 0 0 0 3px rgba(198, 212, 32, 0.25);
}

.pf-searchbox-results-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  max-height: 400px;
  overflow-y: auto;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  animation: pf-fade-in 0.15s ease-out;
}

@keyframes pf-fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pf-searchbox-result {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.15s ease;
}

.pf-searchbox-result:last-child {
  border-bottom: none;
}

.pf-searchbox-result:hover,
.pf-searchbox-result:focus {
  background-color: #f9f9f9;
  outline: none;
}

.pf-searchbox-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.pf-searchbox-result-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #005a9c;
  line-height: 1.3;
}

.site-search-meta-type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #777;
  background-color: #eaeaea;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  margin-left: 8px;
}

.pf-searchbox-result-excerpt {
  margin: 0;
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

.pf-searchbox-result mark {
  background-color: #fdf5b3;
  color: #000;
  padding: 0 2px;
  border-radius: 2px;
  font-weight: 600;
}

.pf-searchbox-no-results {
  padding: 16px;
  text-align: center;
  color: #666;
  font-size: 14px;
}
