/* 高可见性搜索框样式 */
.vcg-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.vcg-search-container {
  width: 90%;
  max-width: 700px;
  position: relative;
}

.vcg-search-input {
  width: 95%;
  padding: 20px 70px 20px 30px;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 18px;
  color: #333;
  background: #fff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  opacity: 1 !important;
  left: 7px;
}

.vcg-search-controls {
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 15px;
}

.vcg-search-btn,
.vcg-close-btn {
  background: transparent;
  border: none;
  color: #555;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s;
}

.vcg-search-btn:hover {
  color: #0066ff;
}

.vcg-close-btn:hover {
  color: #ff0000;
}

.search-highlight {
  background-color: yellow;
  color: black;
  padding: 2px;
  border-radius: 3px;
}
