.map-wrapper {
  width: 100%;
  height: 400px;
  background-color: #f2f2f5;
  border: 1px solid #cbd5e1;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.error-message {
  color: #dc3232;
  padding: 16px;
  text-align: center;
  border: 1px solid #dc3232;
  border-radius: 4px;
  background: #f8d7da;
  font-size: 14px;
  margin: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
