<style>
/* tabulka gdpr */
  .data-table {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    border-collapse: collapse;
    font-family: sans-serif;
  }

  .data-table td {
    padding: 10px 15px;
    vertical-align: top;
  }

  .data-table tr:not(:last-child) td {
    border-bottom: 1px solid #eee;
  }

  .data-table td:first-child {
    font-weight: bold;
    width: 30%;
    white-space: nowrap;
  }

  @media (max-width: 600px) {
    .data-table td {
      display: block;
      width: 100%;
    }

    .data-table tr {
      display: block;
      margin-bottom: 20px;
    }

    .data-table td:first-child {
      font-weight: bold;
      margin-bottom: 5px;
    }
  }
</style>