
.table-responsive {
    background-color: white !important;
}

    .table-responsive th {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .table-responsive table {
        background-color: white;
        --bs-table-striped-bg: white !important;
        border-left-color: white !important;
        border-right-color: white !important;
    }

.page-link:hover {
    color: #FFCD00 !important;
    background-color: #212529 !important;
    border-color: #212529 !important;
}

.page-link {
    color: #FFCD00;
    text-decoration: none;
    border: 1px solid #dee2e6;
}

table {
    table-layout: fixed;
}

    table td {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

#table_diag th{
    width: 150px;
}

.checkbox-table-all-items {
    position: relative;
    top: 80px;
    left: 5px;
}

tr:nth-child(odd) {
    background: #F9F9F9 !important;
}

tr:nth-child(even) {
    background: #FFF !important;
}

thead:not(thead[role="search"]) th {
    border-bottom-width: 2px !important;
    border-top-style: hidden !important;
}

thead[role="search"] input {
    width: 200px !important;
    margin-left: 0 !important;
}

thead[role="search"] th {
    background-color: white !important;
    padding-left: 0 !important;
}

.table tr {
    border-top: 0 !important;
}

.paginate-selected {
    color: #0a58ca;
    background-color: #e9ecef;
}

.pagination a {
    font-size: 14px;
}

.page-item a {
    padding: 0.375rem 0.75rem;
}

.quarry-table-header,
.quarry-table-footer {
    display: table;
    width: 100%;
}

.quarry-table-body {
    display: block;
    max-height: 500px;
    overflow-y: scroll;
}

.quarry-table-row {
    display: table;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1pt solid #dee2e6;
}

.quarry-table {
    width: 100%;
    table-layout: fixed;
}

.grid-div {
    overflow-x: auto;
    margin-bottom: 15px;
}

.table-dd {
    overflow-y: auto;
    height: 300px;
}

.table-btn-dd {
    padding: 5px;
    font-size: 14px;
}

/* Spinner */
.spinner_table {
    border: 16px solid silver;
    border-top: 16px solid #FFCD00;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 700ms linear infinite;
    top: 40%;
    left: 55%;
    position: absolute;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}
