/* Back to Top Button Styles */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #000;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    z-index: 1000;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#back-to-top:hover {
    opacity: 1;
}
