#launcher {
  padding: 5px;
  cursor: pointer;
  transition: transform 0.2s ease;
  position: absolute;
  top :5px;
  right: 145px;
  z-index: 200;
}
#launcher:hover {
  transform: scale(1.1);
}
#launcher img {
  display: block;
  width: 46px;
  height: 46px;
}
#ink-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  display: none;
}
#clear-btn {
  background-color: var(--background-color);
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  display: none; 
}

@media (max-width: 570px) {
  #launcher {
    display: none;
  }
}
