#search-system-related {
  display: block;
  margin-bottom: 20px;
   
}

.search-box {
  width: 100%;
   
}

.search-input-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ddd;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#searchInput {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  font-size: 16px;
  border-radius: 25px 0 0 25px;
}

#search-button {
  background-color: #4CAF50;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 0 25px 25px 0;
  transition: background-color 0.3s ease;
}

#search-button:hover {
  background-color: #45a049;
}

#search-button span {
  font-size: 16px;
  font-weight: bold;
}

.search-results {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    background: #edebeb;
    border-radius: 10px;
}

.post .search-results ul{
    display: block;
    margin: auto;
    padding: 10px;
}

#search-results li {
    list-style: none;
    text-align: inherit;
    padding: 2px;
    margin: 0;
    display: flex;
    border-bottom: 1px solid #d1d1d1;
    align-items: center;
    margin-bottom: 7px;
    padding-bottom: 5px;
}

.post .search-results img {
    width: 80px;
    height: auto;
    border-radius: 7px;
    padding: 0;
    box-shadow: 0 0 0;
    border: 1px solid;
    margin: 2px 0;
}

 .post .search-results a{
    margin-left: 10px;
    font-size: 16px;
    color: rgb(3,72,84);
    font-weight: bold;
}

  .post #search-system-related h2{
    background: white;
    font-style: normal;
    font-size: 26px;
}