
.search-wrapper{
	width: 100%;
    max-height: 600px;
	max-height: 600px;
	position: absolute;
	z-index: 9999; /* Ensures it stays on top of other divs */
    top: 11%; /* Places the dropdown exactly below the input */  
}

.results-dropdown {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 400px;
  max-height: 600px;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: top 0.3s ease; /* Smooth slide-down effect */        
}

.results-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 540px;
  overflow: auto;
}

.results-dropdown li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
}

.results-dropdown li a:hover {
  background-color: #f0f0f0;
}

.search-header {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #ffff;
  background-color: #32cd32;
  text-align: center;
  font-weight: bold;
}

.search-footer a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #ffff;
  background-color: #32cd32;
  text-align: center;
  font-weight: bold;
}

.search-footer a:hover {
    color: #32cd32;
  background-color: #f0f0f0;
}