/* Standortanalyse Hamburg – Custom styles */

/* Smooth card toggle */
.card-body {
  transition: max-height 0.2s ease;
}

/* Category buttons */
.cat-btn {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid #d1d5db;
  background: white;
  color: #374151;
  cursor: pointer;
  transition: all 0.15s;
}

.cat-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

/* MapLibre popup tweaks */
.maplibregl-popup-content {
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* Autocomplete list items */
#autocomplete-list li {
  border-bottom: 1px solid #f3f4f6;
}
#autocomplete-list li:last-child {
  border-bottom: none;
}

/* Scrollbar styling */
#results::-webkit-scrollbar {
  width: 6px;
}
#results::-webkit-scrollbar-track {
  background: transparent;
}
#results::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
#results::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}
