/* styles.css */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    display: none; /* Awalnya tidak terlihat */
    z-index: 10;
    width: 50px; /*Ukuran tombol (gambar)*/
    height: 50px;
    transition: opacity 0.3s ease; /*Animasi saat muncul / hilang*/
}

#backToTop:hover {
    opacity: 0.8; /*Efek hover*/
}