.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 12rem; /* Adjust as needed */
}

#map-search {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.carousel-image {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.carousel-button.prev {
  left: 0.5rem;
}

.carousel-button.next {
  right: 0.5rem;
}

.carousel-button.hidden {
  display: none;
}

.toast-enter {
  transform: translateY(100%);
}

.toast-enter-active {
  transform: translateY(0);
  transition: transform 300ms ease-out;
}

.toast-exit {
  transform: translateY(0);
}

.toast-exit-active {
  transform: translateY(100%);
  transition: transform 300ms ease-in;
}

/* Google Maps Info Window Styling */
.gm-style .gm-style-iw-c {
  padding: 0 !important;
  border-radius: 0.5rem !important;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
  padding: 0 !important;
}

.gm-style .gm-style-iw-t::after {
  background: linear-gradient(45deg, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 51%, rgba(255,255,255,0) 100%) !important;
}

.gm-style-iw-chr {
  position: absolute;
  top: 0;
  right: 0;
}

.gm-style-iw-ch {
  display: none !important;
}