
/* Fix for Google Maps places autocomplete component */
.pac-container {
  z-index: 9999 !important;
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  font-family: inherit;
}

.pac-item {
  padding: 0.5rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.pac-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Fix for mobile devices */
@media (max-width: 640px) {
  .pac-container {
    width: calc(100% - 2rem) !important;
    left: 1rem !important;
  }
}
