/* Scroll Top Button Styles */
.scroll-top-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 100px;
    background-color: white;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 999;
}

.scroll-top-button .arrow {
    color: #000;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.scroll-top-button .moon {
    color: #000;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.scroll-top-button:hover .arrow {
    transform: translateY(-3px);
}

.scroll-top-button:hover .moon {
    transform: translateY(3px);
}

.scroll-top-visible {
    opacity: 1;
    transform: translateY(0);
}
