.tabela {
    display: none;
    min-width: 900px;
}

.table {
    text-align: center;
    box-shadow: 10px 15px 15px 0px rgba(101, 99, 99, 0.57);
}

.title_table {
    text-align: center;
}

th {
    width: 120px;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    border: 1px solid #A4A4A4;
}

td {
    max-width: 120px;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 400;
    border: 1px solid #A4A4A4;

   
}

@media screen and (max-width: 1024px) {
    .tabela{
        min-width: 100%;
    }
}
@media screen and (max-width: 990px) {
    .tabela{
        width: 100%;
    }

    th, td {
        width: 58px;
        height: 48px;
        font-size: 6px; 
    }
}