<style>
    .custom-button {
        display: flex;
        justify-content: flex-end; /* Align to the right by default */
        align-items: center;
        width: 100%;
    }

    .arrow-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #F66652;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        text-decoration: none;
        text-align: center;
        position: relative;
    }

    .arrow-icon {
        color: black;
        font-size: 50px;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        font-weight: normal;
    }

    .arrow-btn:hover, 
    .arrow-btn:focus, 
    .arrow-btn:active {
        text-decoration: none;
    }

    /* Center align on smaller screens */
    @media (max-width: 768px) {
        .custom-button {
            justify-content: center;
        }
    }
</style>
