/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 10px; /* Sağ tarafta konumlandırma */
    width: 60px;
    height: 60px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767.98px) {
    .back-to-top {
        bottom: 100px;
        right: 10px;
        width: 50px;
        height: 50px;
    }
}
