



#my_table button{
    text-align: center;
}


#my_matches_list td[match="over"]{
    background-color: rgb(0, 38, 11);
    color: white;
    font-weight: bold;
}


#my_matches_list td[match="over"][td_item="hastag"], #my_matches_list td[match="over"][td_item="spelare_namn"]{

    color: rgba(255, 255, 255, 0.5);
}



#my_table button:not([antal-matcher="0"]){

    border-radius: 4px;
    animation: button_glow 2s infinite ;
    color: white;
}




@keyframes button_glow {
    0% {
        background-color:  rgb(69, 47, 111);
    }

    50% {
        background-color:  rgb(36, 25, 57);
    }

    100% {
        background-color:  rgb(69, 47, 111);
    }
}