/* Location Search Component */
.location-search {
  position: relative;
}

.location-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
}

.location-suggestion {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.15s ease;
}

.location-suggestion:last-child {
  border-bottom: none;
}

.location-suggestion:hover,
.location-suggestion.highlighted {
  background-color: #f8fafc;
}

.location-suggestion-main {
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 2px;
}

.location-suggestion-secondary {
  font-size: 0.875rem;
  color: #6b7280;
}

.current-location-button {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
}

/* Hybrid venue search styles */
.search-section-header {
  padding: 8px 16px;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.875rem;
  color: #64748b;
}

.venue-result {
  border-left: 3px solid #3b82f6;
}

.place-result {
  border-left: 3px solid #10b981;
}

.venue-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 4px;
}

.venue-badge {
  background-color: #dbeafe;
  color: #1e40af;
}

.venue-badge.new-location {
  background-color: #d1fae5;
  color: #065f46;
}

.search-result-type {
  font-size: 0.75rem;
  color: #6b7280;
  font-style: italic;
  margin-top: 2px;
}