/* Scroll to Top Butonu */
.scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    z-index: 1000;
}

.scroll-to-top-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

.scroll-to-top-btn:active {
    transform: scale(0.9);
}

/* Mobil uyumluluk */
@media (max-width: 600px) {
    .scroll-to-top-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 10px;
        right: 10px;
		
    }
}
