/**03**/
.table-wrapper {
    height: 100%;
    width: 100%;
    overflow: auto;
    border: none;
}

.table-wrapper tr {
    background-color: transparent;
}

.table-wrapper tr:nth-child(even) {
    background-color: rgba(52, 73, 94, .2);
}

.sticky-table {
    width: max-content;
    border-collapse: collapse;
}

.sticky-table th,
.sticky-table td {
    padding: 2px 3px;
    border-right: solid 1px rgba(52, 73, 94, .2);
    white-space: nowrap;
}

.sticky-table th {
    position: sticky;
    top: 0;
    background: rgba(52, 73, 94, .9);
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sticky-col {
    position: sticky;
    left: 0;
    background: rgba(52, 73, 94, .9);
    z-index: 1;
}

.col-hidden {
    display: none;
}

.control-buttons {
    margin-bottom: 10px;
}

@media (max-width:1000px) {
  .table-wrapper {
        min-width: 1000px;
    }

    .sticky-table {
        width: max-content;
    }
}