.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-family: sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    font-size: 1em;
  }

  .styled-table thead tr {
    background-color: #3366BB;
    color: #ffffff;
    text-align: center;
    font-size: 1em;
  }

  .styled-table th,
  .styled-table td {
    padding: 12px 15px;
    font-size: 1em;
    text-align: center;
  }

  .styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
    font-size: 1em;
    text-align: center;
  }

  .styled-table tr>*:nth-child(3) {
    display: none;
  }

  .styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
    font-size: 1em;
    text-align: center;
  }

  .styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #3366BB;
    font-size: 1em;
    text-align: center;
  }

  .styled-table tbody tr.active-row {
    font-weight: bold;
    color: #3366BB;
    font-size: 1em;
    text-align: center;
  }