.search-container {
  position: relative;       /* important for suggestions to be underneath */
  margin-top: 0.5rem;
  margin-bottom: 0;
  width: 30vw;
}

.suggestions {
  position: absolute;       /* position relative to the search-container */
  top: 100%;                /* immediately below the input */
  left: 0;
  width: 100%;              /* match input width */
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: none;            /* hidden by default */
  z-index: 1000;
  overflow: hidden;
}

.suggestions.show {
  display: block;
}

.suggestion-item {
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s;
  overflow: hidden;
}
.suggestion-item:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Last item → round bottom corners */
.suggestion-item:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* Single item → round all corners */
.suggestion-item:first-child:last-child {
  border-radius: 10px;
}
.suggestion-item:hover {
  background: #f1f1f1;
}

.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}
.form-control:focus{
  
    border-color: #4e7550;
    outline: 0;
    box-shadow: 0 0 0 .25rem hsla(161, 100%, 81%, 0.265);
}

 