
    @import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");

    body {
    font-family: "Lato", sans-serif;
    }

    .table-container {
    margin: auto;
  
    width: 100%;
    }

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

    thead tr {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    height: 1px;
    }

    th {
    font-weight: bold;
    height: inherit;
    padding: 0;
    }

    th:not(:first-of-type) {
    border-left: 1px solid #ddd;
    }

    th button {
    background-color: #fff;
    border: none;
    cursor: pointer;
    display: block;
    font: inherit;
    height: 100%;
    margin: 0;
    min-width: max-content;
    padding: 0.5rem 1rem;
    position: relative;
    text-align: left;
    width: 100%;
    }

    th button::after {
    position: absolute;
    right: 0.5rem;
    }

    th button[data-dir="asc"]::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpolygon points='0, 0 8,0 4,8 8' fill='%23818688'/%3E%3C/svg%3E");
    }

    th button[data-dir="desc"]::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpolygon points='4 0,8 8,0 8' fill='%23818688'/%3E%3C/svg%3E");
    }

    tbody tr {
    border-bottom: 1px solid #ddd;
    }

    td {
    padding: 0.5rem 1rem;
    text-align: left;
    }