* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

#app {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#map {
  flex: 1;
}

#panel {
  background: #ffffff;
  padding: 10px;
  border-top: 1px solid #ddd;
}

.row {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

input {
  flex: 1;
  padding: 8px;
  font-size: 14px;
}

button {
  padding: 8px 10px;
  font-size: 14px;
  cursor: pointer;
}

.start {
  background: #2e7d32;
  color: #fff;
  flex: 1;
}

.home {
  background: #ef6c00;
  color: #fff;
  flex: 1;
}

#points {
  list-style: none;
  padding: 0;
  margin: 6px 0;
  max-height: 120px;
  overflow-y: auto;
}

#points li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}

#qr-reader {
  position: fixed;
  inset: 0;
  background: #000;
  display: none;
  z-index: 999;
}
