body, html {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #333;
}

canvas {
  display: block;
}

img {
  image-rendering: pixelated;
}

#toolbar-container {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100px;
  height: 100vh;
  background: #222;
  z-index: 1000; /* über Canvas */
  color:white;
  flex-direction:column;
  padding:10px;
  gap:10px;
}

#toolbar-container.editor-mode {
  display: block;
}

#level-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  image-rendering: pixelated;
}

#level-container.editor-mode {
  left: 100px;
  width: calc(100vw - 100px);
  overflow: auto;
}

.toolbar-title {
  font-family: "Arial Black", sans-serif;
  font-size: 14px;
  color: white;
  margin-bottom: 10px;
}

.toolbar-button {
  width: 90px;
  height: 60px;
  border: none;
  color: #fff;
  background: #333;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toolbar-button:hover {
  background: #555;
}

.toolbar-icon-button {
  width: 90px;
  height: 60px;
  border: none;
  background: #333;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toolbar-icon-button:hover {
  background: #555;
}

.toolbar-icon-button img {
  width: 32px;
  height: auto;
  image-rendering: pixelated;
}
