/* Copyright (c) 2025 YA All rights reserved. */


input,
textarea {
    font-family: 'Source Code Pro', monospace !important;
}


table {
    counter-reset: row-num;
    counter-increment: row-num -1;
    font-family: 'Source Code Pro', monospace !important;
}

table tr {
    counter-increment: row-num;
}

table tr td:first-child::before {
    content: counter(row-num);
}

tr:first-child {
    display: none;
}

#listFaker {
    overflow-x: scroll;
}

th {
    padding: 10px;
    border: solid 1px #eee;
    white-space: nowrap;

    background-color: #212529 !important;
    background-image: var(--bs-gradient) !important;
    color: #fff !important;
}

td {
    padding: 10px;
    border: solid 1px #eee;
    white-space: nowrap;
}