* {
  box-sizing: border-box;
}

html,
body,
#map {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
}

.back-button {
  position: fixed;
  z-index: 2;
  top: max(16px, env(safe-area-inset-top));
  left: max(16px, env(safe-area-inset-left));
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #2673f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

.back-button:hover {
  background: #155bd1;
}

.back-button:focus-visible {
  outline: 3px solid #174ea6;
  outline-offset: 3px;
}

.back-button img {
  width: 26px;
  height: 26px;
  transform: rotate(180deg);
}

#mapStatus {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: min(90%, 420px);
  margin: 0;
  padding: 16px;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  background: #fff;
  color: #111827;
  text-align: center;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
}
