.custom-search-widget {
  position: relative;
  z-index: 1000;
}

.search-icon {
  cursor: pointer;
  font-size: 24px;
  z-index: 1001;
  position: relative;
}

.search-container {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  padding: 10px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1002;
}

.search-container input {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.search-results {
  margin-top: 10px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.result-item {
  padding: 8px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  cursor: pointer;
}

.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.3);
  z-index: 1000;
}
