
.table {
    border-radius: 0.5rem; /* Nastavte požadovaný rádius */
    overflow: hidden; /* Důležité pro oříznutí obsahu podle rádiusu */
}

.table thead tr:first-child th:first-child {
    border-top-left-radius: 0.4rem;
}

.table thead tr:first-child th:last-child {
    border-top-right-radius: 0.4rem;
}

.table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 0.4rem;
}

.table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 0.4rem;
}
