.map-view {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.map-view .map-iframe {
  width: 100%;
  height: 500px;
  display: block;
  border: 0;
}
.map-view .map-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #333333;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}
.map-view .map-close-btn:hover {
  background: #1dbc19;
  color: #ffffff;
}
