body {
  margin: 0;
  padding: 0;
  user-select: none;
}

#app {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.ms-bg {
  width: 100%;
  height: 100%;
}

.ms-maps {
  width: 100%;
  height: 100%;
  /* position: absolute;
  top: 0;
  left: 0;
  z-index: 10; */
  display: grid;
  justify-content: center;
  align-content: center;
  row-gap: 1px;
  column-gap: 1px;
}

.ms-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
}

.cell {
  background-color: rgb(252, 241, 198);
  transition: background-color 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}