.container {
    max-width: 1170px;
    margin: auto;
}

.test_list_block {
    margin: 5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 18px;
    text-align: left;
    border: 2px solid #0952af;
}

.styled-table thead tr {
    background-color: #0952af;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.styled-table th {
    border: 1px solid #ffffff;
}

.styled-table td {
    border: 1px solid #0952af;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #dddddd;
    text-align: center;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #0952af;
}

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #0952af;
}


.test_list ul li h2 {
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
}

.test_list ul li {
    list-style: none;
}

.test_list ul li ul {
    margin: 1.5rem 0;
}


.test_list ul li ul li {
    margin: 1.1rem 0;
}

.test_list ul li ul li a {
    text-decoration: none;
    font-size: 1.1rem;
    color: #ffffff;
    background: #0952af;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all .2s ;
    white-space: normal;
    display: block;
    width: 100%;
    max-width: 200px;
    text-align: center;
    margin: 0 auto;
}


@media (max-width: 768px) {
    .test_list_block {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }

    .test_list ul {
        padding: 0;
    }
}
