#suggestion-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  max-width: 340px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  overflow-y: auto;
  max-height: 280px;
  z-index: 10000;
  font-family: 'Montserrat', sans-serif;
}

#suggestion-list .suggestion-item {
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid #f1f1f1;
}

#suggestion-list .suggestion-item:hover {
  background-color: #e6f3ff;
  color: #0077cc;
}

@media (max-width: 480px) {
  #suggestion-list {
    max-width: 100%;
    left: 0;
    right: 0;
    border-radius: 0 0 12px 12px;
  }
  #suggestion-list .suggestion-item {
    font-size: 14px;
    padding: 10px 12px;
  }
}
