.flash-update td{
    animation: flashUpdate 5.5s ease-out;
}

@keyframes flashUpdate{

    0%{
        background-color: rgba(13, 241, 253, 0.441);
    }

    100%{
        background-color: transparent;
    }

}

.table-sort{

    color:inherit;
    text-decoration:none;

    display:inline-flex;
    align-items:center;
    gap:.25rem;

    cursor:pointer;

}

.table-sort:hover{

    text-decoration:underline;

}