main a:hover, button:hover {
    filter: brightness(0.92)
}

#tables-panel {
    width: screen;
}

#tables-panel th:not(:first-of-type) {
    cursor: pointer;
}


.table-section {
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.table-section .table-container {
    background: black;
    border: double goldenrod 6px;
    scrollbar-color: goldenrod black;
    scrollbar-width: thin;
    filter: drop-shadow(5px 5px 4px #000000);
}

.table-section table {
    background: #eaeaea;
}

.table-section thead {
    background: black;
    color: white;
    position: sticky;
    top: 0;
    z-index: 2;
}





.table-section .row-index {
    background: black;
    color: white;
    font-weight: bold;
    position: sticky;
    left: 0;
}

.table-container td {
    outline: solid black 1px;
    padding: 4px;
}