@media print {
  .upButton {
    display: none; /* Yazdırırken tamamen gizle */
  }
}


.upButton {
  position: fixed;
  bottom: 60px;
  right: 10%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  height: auto;
  cursor: pointer;
  animation: upDown 1s ease-in-out infinite;
  transition: opacity 0.3s ease;
  opacity: 0;
}

@media(max-width:991px) {
  .upButton {
    right: 3%;
  }
}

.upButton svg {
  width: 30px;
  height: 40px;
  fill: rgb(255, 172, 38); /* SVG’nin dolgu rengi olmalı ki shadow görünsün */
  filter: drop-shadow(0 0 4px rgba(255, 175, 16, 0.5)) 
          drop-shadow(0 0 8px rgba(255, 175, 16, 0.5));
  transition: all 0.3s;
}

.upButton svg:hover {
  filter: drop-shadow(0 0 4px rgba(255, 175, 16, 0.8)) 
          drop-shadow(0 0 8px rgba(255, 175, 16, 0.8)) 
          drop-shadow(0 0 12px rgba(255, 175, 16, 0.4));
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}


.upButton.active {
  opacity: 1;
  pointer-events: auto;
}