body{
    font-family: 'Bree Serif', serif;;
}

.container-table{
    width: auto;
    /* max-width: 100px; */
    margin: auto;
}

.table{
    width: 100%;
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    table-layout: fixed;
}

.table tr{
    background-color: white;
    border: 1px solid #ddd;
}

.table th, .table td{
    font-size: 10px;
    padding: 8px;
    text-align: center;
}

.table thead th{
    text-transform: uppercase;
    /* background: #5bc0de; */
    background: #007bff17;
}

.table tbody tr:hover{
    /* background-color: rgba(0, 0, 0, 0.2); */
    background-color: rgba(88, 176, 216, 0.2);
}

@media screen and (max-width:600px){
    .table{
        border: 0px;
    }
    .table caption{
        font-size: 10px;
    }
    .table thead{
        display: none;
    }
    .table tr{
        margin-bottom: 8px;
        border-bottom: 4px solid #ddd;
        display: block;
    }
    .table th,.table td{
        font-size: 10px;
    }
    .table td{
        display: block;
        border-bottom: 1 px solid #ddd;
        text-align: center; /*rigth */
    }
    .table td:last-child{
        border-bottom:0px;
    }
    .table td:before{
        content:attr(data-label) ;
        font-weight: bold;
        text-transform: uppercase;
        float: left;
    }
}