#content h1 {
    padding-top: 25px;
    text-transform: uppercase;
    text-shadow: 1px 1px 5px rgba(68, 68, 68, 0.3);
    background: linear-gradient(90deg, #444, rgb(94, 0, 14));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.searchForm {
  display: flex;
  justify-content: center;
  margin-top: 30px; 
  width: 100%;
}
.searchContent {
  position: relative;
  width: 100%;
  max-width: 360px;  
}
.searchContent input[type="text"] {
  width: 100%;
  height: 42px;
  padding: 0 45px 0 18px;
  font-size: 16px;
  border: 1px solid rgb(94, 0, 14);
  border-radius: 50px;       
  box-sizing: border-box;
}
.searchContent .searchIcon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;       /* fixed size */
  height: 20px;
  stroke: rgb(94, 0, 14);
  cursor: pointer;
  pointer-events: auto;
}
.searchContent .searchIcon * {
  stroke-width: 2 !important;
}
.searchInfo {
    text-align: center;
    margin: 10px 0;
    font-weight: bold;
    color: #444;
}
.suggestionBox {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    background-color: #fff;
    overflow-y: auto;
    z-index: 10;
    display: none;
}
.suggestionBox div {
    padding: 8px;
    cursor: pointer;
}
.suggestionBox div:hover {
    background-color: #f1f1f1;
}
h2.resultsHeader {
  display: flex;
  align-items: baseline;
  width: 100%;
  margin: 0;
  padding: 15px 0;
  text-shadow: 1px 1px 5px rgba(68, 68, 68, 0.3);
  background: linear-gradient(90deg, #444, rgb(24, 90, 109));
  -webkit-background-clip: text; 
  background-clip: text; 
  -webkit-text-fill-color: transparent;
}
.resultsCount {
  margin-left: auto;
  margin-right: 15px;
  white-space: nowrap;
}
.searchResult {
    display: flex;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
}
.searchResultImage {
    flex: 0 0 auto;
    width: 120px;  /* Adjust size of the image */
    height: 120px;
    margin-right: 15px;
    border-radius: 8px;
    overflow: hidden; /* Hide any parts of the image outside this box */
}
.searchResultImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* Increase scale for zoom effect */
    transition: filter 0.3s ease; 
}
.searchResultImage img:hover {
    filter: brightness(80%); 
}
.searchResultTitle {
    letter-spacing: -.5px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
    text-shadow: 1px 1px 5px rgba(68, 68, 68, 0.3);
    background: linear-gradient(90deg, #444, rgb(94, 0, 14));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.searchResultTitle:hover {
    text-decoration: underline;
    background: linear-gradient(90deg, #444, rgb(24, 90, 109));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.searchResultDesc {
    font-size: 16px;
    color: #444;
}
@media (max-width: 768px) {
    .searchResultImage {
        width: 80px;
        height: 80px;
    }
    .searchResultTitle {
        font-size: 16px;
    }
    .searchResultDesc {
        font-size: 12px;
    }
}