.table-container {
    max-width: 100%;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox */
    box-sizing: border-box;
    min-width: 60%;
    max-width: 90%;
    margin: auto;
  }
  
  .table-headline {
      font-family: var(--main-font)  !important;
  }
  
  table {
    background-color: var(--white);
    color: var(--dark-blue);
    border-collapse: collapse;
    margin: 0 !important;
    margin-top: 8px !important;
    margin-bottom: 40px !important;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox */
    box-sizing: border-box;
    width: 100%;
    border: none !important;
    font-family: 'Louis' !important;
    width: 100%;
    font-size: 2vh !important;
    word-wrap: break-word;
    text-align: center;
  }
  
  tr:nth-child(even) { background: aliceblue !important }
  tr:nth-child(odd) { background: #d5e4f2 !important }
  
  tr {
    border: none !important;
  }
  
  td:first-child,
  th:first-child {
    border-radius: 10px 0 0 10px;
  }
  
  td:last-child,
  th:last-child {
    border-radius: 0 10px 10px 0;
  }
  
  td {
    padding: 8px;
    border: none !important;
  }
  
  th {
    background-color: var(--blue) !important;
    color: #FFFFFF !important;
    font-family: var(--secondary-font) !important;
    padding: 8px;
    border: none !important;
  }