.price-table {
    /* padding: 40px 0; */
}

.price-title {
    color: var(--wh-color);
    margin-bottom: 25px;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid var(--bg);
    /* width: min(100%, 100vw); */
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: #fff;
    min-width: 900px;
}
tbody{
    color: black;
}
.styled-table thead tr {
    background: var(--accent-pale);
    color: var(--wh-color);
    font-weight: 700;
}

.styled-table th,
.styled-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--bg);
    text-align: center;
}

.styled-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.styled-table tbody tr:hover {
    background: #fff5cc;
    transition: 0.2s;
}

/* левый столбец подсветим */
.styled-table td:first-child {
    font-weight: 600;
    text-align: left;
}

@media (max-width: 1400px) {

    .table-wrapper {
        overflow-x: auto;
        border-radius: 14px;
        border: 1px solid var(--bg);
        width: 100vw;
    }
}

@media (max-width: 600px) {
    .price-title {
        font-size: 20px;
    }

    .styled-table th,
    .styled-table td {
        padding: 10px 8px;
        font-size: 13px;
    }
}
.styled-table > thead > tr:not(:last-child) th{
    border-left: 1px solid white;
}
.styled-table > thead > tr:not(:first-child) th:nth-child(3n){
    border-right: 1px solid white;
}
.styled-table > thead > tr:not(:first-child) th:first-child{
    border-left: 1px solid white;
}