.table {
    overflow-x: auto;
    max-width: 760px;
    border: 1px solid #707070;
    border-radius: 15px;
    padding: 20px;
    margin: 20px
  }
  
  .table table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    font-size: var(--body-font-size-m);
  }
  
  .table table tbody tr {
    border-bottom: 1px dashed #cbcbcd;
  }

  .table table thead tr {
    border-bottom: 1px dashed #cbcbcd;
  }
  
  .table table th {
    font-weight: 700;
  }
  
  .table table th, .table table td {
    padding: 8px 16px;
    text-align: left;
  }
  
  /* striped variant */
  .table.striped tbody tr:nth-child(odd) {
    background-color: #7ea8fa;
  }

  .table.striped tbody tr:nth-child(even) {
    background-color: #adb6c9;
  }
  
  /* bordered variant */
  .table.bordered table th, .table.bordered table td {
    border: 1px solid;
  }
  
  .table a {
    text-decoration: underline !important;
    color: red !important;
  }

  .table.nopush {
    max-width: 680px;
  }