.scroll-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    color: black;
    padding: 13px;
    border: none;
    border-radius: 50%; /* Make the button circular */
    cursor: pointer;
    box-shadow: 2px 2px 3px #444;
    transition: transform 0.2s, box-shadow 0.3s, background-color 0.3s,
        color 0.3s;
    background-color: rgba(0, 0, 0, 0.3);
    margin: 0; /* Remove margin */
}

.scroll-button:hover {
    box-shadow: 2px 2px 3px #222;
    background-color: rgba(0, 0, 0, 0.5);
}

.scroll-button.active {
    background-color: rgba(255, 255, 255, 0.6);
    color: black;
    box-shadow: 2px 2px 3px #999;

    transition: transform 0.2s, box-shadow 0.3s, color 0.3s;
}

.scroll-button.active:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 2px 2px 3px #222;
}

.auto-scroll {
    /* white-space: nowrap; */
    /* animation: scroll 10s linear; */
    /* overflow: hidden; Hide vertical scrollbar */
}

@keyframes scroll {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}
