td{
    text-align: center;
    color: var(--text_grey_dark_color);
}
th{
    text-align: center;
}
.table-div{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.container-results{
    margin: 25px auto;
    background: #ffffff;
    border-radius: 10px;
}
.background-color{
    background: var(--background-color);
}

.table-heading{
    background: #fffdd6;
    padding: 15px 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 1px 5px 0 rgba(0,0,0,0.2);
}

@media screen and (max-width : 650px){
    .table-div{
        overflow-x: scroll;
    }
    table{
        width: 500px;
        table-layout: fixed;
    }
}
