.search-recommendations {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
  margin-top: 4px;
}

.recommendation-item {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

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

.recommendation-item:hover h4,
.recommendation-item:hover p {
  color: #6ec1e4;
}

.recommendation-content h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.recommendation-content .location {
  margin: 0 0 4px 0;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.recommendation-content .description {
  margin: 0;
  font-size: 13px;
  color: #888;
  line-height: 1.4;
}

/* Make the form container relative for positioning */
.hero form,
.header-search {
  position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .search-recommendations {
    max-height: 300px;
  }

  .recommendation-item {
    padding: 10px 12px;
  }

  .recommendation-content h4 {
    font-size: 15px;
  }

  .recommendation-content .location {
    font-size: 13px;
  }

  .recommendation-content .description {
    font-size: 12px;
  }
}
