/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.kora-map-search-wrapper {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 400px;
  max-width: calc(100% - 30px);
  z-index: 10;
}
.kora-map-search-wrapper #kora-location-search {
  width: 100%;
  height: 50px;
  padding: 0 45px 0 15px;
  border: 2px solid #0067b1;
  border-radius: 0;
  font-size: 16px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.kora-map-search-wrapper #kora-location-search:focus {
  border-color: #4285F4;
  box-shadow: 0 2px 12px rgba(66, 133, 244, 0.2);
}
.kora-map-search-wrapper #kora-location-search::-moz-placeholder {
  color: #999;
}
.kora-map-search-wrapper #kora-location-search::placeholder {
  color: #999;
}

.kora-location-map-container {
  position: relative;
  width: 100%;
  min-height: 70vh;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#kora-location-map {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
}

@keyframes markerDrop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Responsive adjustments */
@media (max-width: 1024px) {
  .kora-map-search-wrapper {
    width: calc(100% - 30px);
  }
}
@media (max-width: 768px) {
  .kora-location-map-container {
    margin: 0;
  }
  .kora-map-search-wrapper {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
  }
  .kora-map-search-wrapper #kora-location-search {
    height: 45px;
    font-size: 14px;
    padding: 0 35px 0 12px;
  }
}/*# sourceMappingURL=kora-location-map-public.css.map */