:root {
  --nav-h: 72px; /* deine Navbar-Höhe */
}


body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;

    position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: var(--nav-h);

  background: #111;
  color: white;
}

#map {
  width: 100%;
  height: calc(100vh - var(--nav-h));
}

.navbut {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  appearance: none;
  -webkit-appearance: none;

  background: aliceblue;
  color: black;

  border: none;
  border-radius: 14px;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes bump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.login-bump {
  animation: bump 200ms ease-out;
}
#app {
  text-align: center;
}


#checkinOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
  z-index: 9999;
}

.checkin-sheet {
  width: min(520px, 100%);
  background: white;
  border-radius: 16px;
  padding: 14px;
}

.checkin-head {
  display:flex;
  justify-content: space-between;
  align-items:center;
}

.checkin-head button {
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

#poiStatus {
  position: fixed;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,.6);
  color: white;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  z-index: 9999;
}
#poiStatus {
  position: fixed;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,.6);
  color: white;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  z-index: 9999;
}
