/* Developer Nest button */
#dev-nest-btn {
  position: fixed;
  bottom: 24px;
  right: 36px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 20px;
  background: var(--color-olive);
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 1000;
  pointer-events: all !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

#dev-nest-btn:hover {
  opacity: 1;
}

#dev-nest-btn img {
  width: 65%;
  height: 65%;
  display: block;
  filter: brightness(0) invert(1);
}

/* Developer page background sticker */
body.developer-page {
  background-image: url('../assets/stickers/sticker_01.png');
  background-repeat: no-repeat;
  background-position: bottom 24px right 24px;
  background-size: 320px auto;
  background-attachment: fixed;
}
