
/* Hide the native blue WebKit "x" and provide our own */
input[type="search"]::-webkit-search-cancel-button{
  -webkit-appearance: none;
  appearance: none;
  height: 0; width: 0; margin: 0; padding: 0; /* effectively hide it */
}

/* Our custom clear button — positioned inside the input box */
.cv-search-clear{
  position: absolute;
  right: 4px;
  top: 0;
  bottom: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  font-size: 24px;
  padding: 0 45px 0 0;
  cursor: pointer;
  color: #2f2f2f;
}
.cv-search-clear:hover{ color: #d17d34; }
