table {
  border-collapse: collapse;
  border: 1px solid silver;
}

table,
th,
td {
  padding-left: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
}

th {
  text-align: left;
  background-color: silver;
}

/* --- značení kurzů --- */

/* první dvě tabulky jsou zobrazeny vedle sebe s mezerou 20px a nejsou stejně vysoké */
.courses-cat-tables {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

table caption {
  text-align: left;
  font-weight: bold;
  padding-bottom: 4px;
}

.courses-categories td {
  width: 7rem;
}

.courses-categories td:nth-child(1) {
  font-weight: bold;
  border-right: 1px solid silver;
  width: 2rem;
  text-align: center;
}

/* --- nabídka kurzů --- */

#tab-courses {
  width: 100%;
}

.tab-group {
  font-style: italic;
  background-color: silver;
}

#tab-courses td:nth-child(1) {
  width: 15%;
}

#tab-courses td:nth-child(2) {
  width: 55%;
}

#tab-courses td:nth-child(3) {
  width: 15%;
}

#tab-courses td:nth-child(4) {
  width: 15%;
}

#tab-courses tbody>tr:nth-last-of-type(odd) {
  border-bottom: 1px solid silver;
}