#sticker-container {
  width: 300px;
  height: 300px;
  margin: 20px auto;
  overflow: hidden;
}

#sticker-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: blur(10px);
  transition: filter 0.5s ease;
}

#next-sticker {
  display: none;
  margin-top: 10px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #4caf50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.button:hover {
  background-color: #45a049;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.answer-button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #4caf50;
  color: white;
  transition: background-color 0.3s;
}

.answer-button:hover {
  background-color: #45a049;
}

#guess-input {
  width: 200px;
  height: 30px;
  font-size: 18px;
  text-align: center;
  margin-right: 10px;
}

#toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-right: 10px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.toggle-label {
  font-size: 16px;
  color: #333;
}

.game-container {
  margin-left: 200px; /* Make space for the navbar */
}

@media (max-width: 600px) {
  .game-container {
    margin-left: 0;
  }
}
