@charset "utf-8";
/* CSS Document */
.scroll-nav-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
}

.scroll-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #0d6efd;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
    transition: transform .2s ease, opacity .3s ease;
}

.scroll-nav-btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .scroll-nav-container {
        right: 12px;
        bottom: 12px;
    }

    .scroll-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}
