/* Table container */
.data-table {
    overflow-x: auto;
    overflow-y: auto;
}

/* Table */
.data-table table {
    border: 1px solid #000000;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
}

/* Table body cells */
.data-table table td {
    border: 1px solid #000000;
    color: #000000;
}

/* Table header cells */
.data-table table th {
    border: 1px solid #000000;
    color: #000000;
    background-color: #e8e8e8;
    font-weight: bold;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
}
.data-table table th button {
    margin: 0px;
    padding: 0px;
    border: none;
    background: none;
    cursor: pointer;
    vertical-align: middle;
}
.data-table table th button svg {
    height: 24px;
    width: 24px;
}
