body {
  margin: 0;
  background: rgb(54, 52, 52);
  color: rgb(255, 255, 255);
}


/* =========================
   ФОНОВОЕ ИЗОБРАЖЕНИЕ
   ========================= */

#wall {
  width: 100%;
  height: 100vh;

  position: relative;
  overflow: hidden;

  background: url("../../assets/img/garage_h.webp")
              center / cover no-repeat;
}


/* =========================
   НАКЛЕЙКИ
   ========================= */

.sticker {
  position: absolute;

  display: block;

  cursor: pointer;

  z-index: 10;

  transform-origin: center center;

  transition: filter 0.2s ease;
}

.sticker img {
  display: block;

  width: 100%;
  height: auto;

  user-select: none;
  -webkit-user-drag: none;
}


/* Подсветка наклейки при наведении */

.sticker:hover,
.sticker.selected {
  filter:
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.7))
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.5));
}


/* =========================
   РЕДАКТОР НАКЛЕЕК
   ========================= */

#editor {
  position: fixed;

  right: 20px;
  top: 20px;

  width: 220px;

  padding: 15px;

  box-sizing: border-box;

  background: rgba(0, 0, 0, 0.85);

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 8px;

  z-index: 1000;

  font-family: Arial, sans-serif;
}

.editor-title {
  margin-bottom: 15px;

  font-size: 16px;
  font-weight: bold;

  text-align: center;
}

#editor label {
  display: block;

  margin-bottom: 10px;

  font-size: 13px;
}

#editor input,
#editor select {
  display: block;

  width: 100%;

  margin-top: 4px;
  padding: 6px;

  box-sizing: border-box;

  background: #222;
  color: white;

  border: 1px solid #555;

  border-radius: 4px;
}

#editor button {
  width: 100%;

  margin-top: 5px;
  padding: 8px;

  border: 0;
  border-radius: 4px;

  cursor: pointer;
}
