/* =====================================================
   PAGE SCROLL CONTROLS
===================================================== */

.page-scroll-controls {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 8px;

    z-index: 9;
}

.page-scroll-controls button {
    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #123d2a;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;

    cursor: pointer;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.page-scroll-controls button:hover {
    background: #1c6042;

    transform: scale(1.08);

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.page-scroll-controls button:active {
    transform: scale(0.94);
}


/* Mobile */
@media (max-width: 600px) {

    .page-scroll-controls {
        right: 10px;
        gap: 6px;
    }

    .page-scroll-controls button {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}
