html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

canvas {
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

.root {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.custom-geofence-btn {
  background-color: #007aff;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  left: 329px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-geofence-btn:hover {
  background-color: #005fcc;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
  .custom-geofence-btn {
    left: 9px;
  }
}
