table.table-program {
  border-collapse: collapse;
  width: 100%;
}

table.table-program th,
table.table-program td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

:root.dark table.table-program th,
:root.dark table.table-program td {
  border-color: #888888;
}

table.table-program th {
  background-color: #f5f5f5;
  font-weight: 600;
}

:root.dark table.table-program th {
  background-color: #4a4a4a;
}

@media screen and (max-width: 768px) {
  table {
    display: block;
    height: auto !important;
    max-width: 90vw;
    overflow-x: auto;
  }

  table>tbody,
  table>thead,
  table>tfoot {
    display: block;
  }
}