.scroll-to-top {
    display: none; /* Hidden initially */
    position: fixed;
    bottom: 50px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 207, 6, 0.6); 
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #1a1a1a;
    position: absolute;
}

.scroll-text {
    color: rgba(255, 207, 6, 1);
    font-size: 12px;
    display: none;
    bottom: -25px;
    font-size: smaller;
    position: absolute;
    transition: opacity 0.3s ease;
}

.scroll-to-top:hover .scroll-text {
    display: block;
}

