table {
    width: auto;
    max-width: 90%;
    background-color: white;
    border-collapse: collapse;
    border-radius: 4px 4px 4px 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    box-shadow: 0px 12px 18px -6px rgb(0 0 0 / 22%);
    margin: 0px auto 40px auto;
    overflow: hidden;
}

table caption {
    background-color: #111;
    font-size: 20px;
    color: white;
    text-align: center;
    padding: 13px 0px;
}

table thead tr th:not(.no-sort) {
    position: relative;
    cursor: pointer;
}

table thead tr th:after {
    position: absolute;
    right: 2px;
}

table thead tr th.sort-asc:after {
    content: "\25b4";
}

table thead tr th.sort-desc:after {
    content: "\25be";
}

table tr th {
    width: 1px;
    border: 1px solid #aaa;
    background-color: #bbb;
    font-size: 16px;
    color: #333;
    padding: 7px 16px;
    white-space: nowrap;
}

table tr td {
    width: 1px;
    max-width: 250px;
    border: 1px solid #ddd;
    font-size: 15px;
    padding: 5px 16px;
    white-space: nowrap;
    overflow: hidden;
}
