html, body {
  height: 100%;
  height: -webkit-fill-available;
  height: 100dvh;
  height: var(--app-height);
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: manipulation;
  background-color: var(--mui-palette-background-default, #fff);
}

.root {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.maplibregl-ctrl-top-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.maplibregl-ctrl-top-right .maplibregl-ctrl-group {
  margin: 0 !important;
}

input, textarea, [contenteditable] {
  -webkit-user-select: text;
  user-select: text;
}
