/* Scroll to Top Button Styles */
.scroll-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    background-color: #626f28;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 18px;
    font-weight: bold;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background-color: #39471d;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top.bottom-right {
    bottom: 30px;
    right: 30px;
}

.scroll-to-top.bottom-left {
    bottom: 30px;
    left: 30px;
}

.scroll-to-top.bottom-center {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}