/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1000; /* Ensures it stays on top */
}

#scrollToTopBtn i {
    font-size: 20px;
}

#scrollToTopBtn.show {
    opacity: 1;
    transform: translateY(0);
}

#scrollToTopBtn:hover {
    transition: .3s;
    background-color: #4CAF50;
}