.search-container {
  position: relative;
  width: 300px;
}

.search-input {
      width: 100%;
    border: 1px solid black;
    border-radius: 7px;
    padding: 5px 10px;
  font-size: 16px;
  box-sizing: border-box;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
      overflow-y: overlay;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: fadeInDrop 0.2s ease-out;
  z-index: 10;
}

.dropdown-item {
  padding: 10px;
  width: 100%;
    display: block;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: #f0f0f0;
}

.no-results {
  padding: 10px;
  color: #888;
}

@keyframes fadeInDrop {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.content__body {
  min-height: 220px;
}
h2 {
  margin-top: 50px;
}