body {
  margin: 0;
  padding: 0;
  color: rgb(0, 0, 0);
  background-color: #cfcfc9;
  font-family: Arial, Helvetica, sans-serif;
}

#app {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}

#game-container {
  max-width: 1024px;
  max-height: 720px;
  position: relative;
  justify-content: center;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #a19e9e;
}

::-webkit-scrollbar-thumb {
  background: #272626;
}

::-webkit-scrollbar-thumb:hover {
  background: #6E6E6E;
}

/* .spritePosition {
  margin: 10px 0 0 10px;
  font-size: 0.8em;
} */

.button {
  width: 140px;
  margin: 10px;
  padding: 10px;
  background-color: #000000;
  color: rgba(255, 255, 255, 0.87);
  border: 1px solid rgba(255, 255, 255, 0.87);
  cursor: pointer;
  transition: all 0.3s;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 40%;

  &:hover {
    border: 1px solid #0ec3c9;
    color: #0ec3c9;
  }

  &:active {
    background-color: #0ec3c9;
  }

  /* Disabled styles */
  &:disabled {
    cursor: not-allowed;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.3);
  }
}
