.loyalty-points-button {
    border: none;
    border-radius: 6px;
    background: #853FF9;
    padding: 10px 16px;
    color: #fff;

    &:hover {
        background-color: #9B5CFF;
    }

    &:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(155, 92, 255, 0.5);
    }
}

.action-wrapper {
    gap: 12px;
}

.action-more-menu-container {
    position: relative;
}

.action-menu {
    position: absolute;
    right: 0;
    top: 30px;
    display: none;
    border: 1px solid #E2EAF3;
    width: 160px;
    margin: 0;
    padding: 0;
    padding-block: 8px;
    background-color: #fff;
    z-index: 2;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);

    li {
        margin: 0;
        cursor: pointer;
        padding: 8px 16px;
        list-style-type: none;
        color: #8895A0;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;

        &:hover {
            background-color: #F9FAFB;
        }

        img {
            width: 20px !important;
            height: 20px !important;
        }
    }
}

.action-more-btn {
    all: unset;
    cursor: pointer;

    i {
        color: #8895A0;
    }

    &:focus {
        outline: none;
    }
}

@media (max-width: 768px) {
    .table-wrapper header{
        flex-direction: column;
        align-items: flex-start !important;
    }
}