/* Общие стили для всех таблиц */
table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px; /* Радиус закругления углов */
    background-clip: padding-box; /* Скрывает фон за пределами закругленных углов */
}

/* Закругление углов первой и последней ячейки каждой строки */
table tr:first-child td:first-child,
table thead tr:first-child th:first-child {
    border-top-left-radius: 8px;
}

table tr:first-child td:last-child,
table thead tr:first-child th:last-child {
    border-top-right-radius: 8px;
}

table tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

table tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}
