/* Search Icon */
.search-icon {
  cursor: pointer;
  font-size: 18px;
}

/* Overlay */
#searchOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
  z-index: 9999;
}

/* Search Box */
.search-box {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 15px;
  border-radius: 8px;
}

/* Input */
#searchInput {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  outline: none;
}

/* Results */
#searchResults div {
  padding: 8px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

#searchResults div:hover {
  background: #f1f1f1;
}

/* Close Button */
.close-btn {
  margin-top: 10px;
  border: none;
  background: red;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}
