/*.fixed-columns {
    left: 0;
    z-index: 1;
    position: -webkit-sticky;
    position: sticky;
    background-color: white;
    color: black;
    top:0;
}*/

.small-input input[type="text"] {
    width: 80%;  /* Adjust the width as needed */
}
  /* Add borders to table cells */


th, td {
    /*border: 10px solid #dddddd;*/
    text-align: center;
    padding: 3px 3px;
    font-size: 14px;
    white-space: nowrap;
    box-sizing: border-box;

}
  /* Target all th elements for the table header */
table th,
.DTFC_LeftHeadWrapper th,
.DTFC_RightHeadWrapper th {
    color: white; /* Font color */
    background-color: navy !important; /* Background color */
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    padding: 2px 3px;  /* Reduce padding */
    font-size: 14px;  /* Reduce font size */
    line-height: 1;  /* Reduce line height */
}
table.dataTable thead th.sorting::after,
table.dataTable thead th.sorting_asc::after,
table.dataTable thead th.sorting_desc::after {
    color: white; /* or any color you want */
    opacity: 1;   /* make sure it's fully visible */
}




.card-header {
    padding: 5px 10px;  /* Reduce padding */
    font-size: 14px;  /* Adjust font size if needed */
    line-height: 1.2;  /* Reduce line spacing */
    min-height: auto;  /* Ensure no minimum height */
}


/* Alternate background colors for rows */
tr:nth-child(even) {
    background-color: #f2f2f2;
}

.dataTables_filter,
.dataTables_length {
    margin-bottom: 5px;
    font-size: 12px;
}

/* Add some spacing between pagination elements */
.dataTables_paginate .paginate_button {
    margin-right: 10px; /* Adjust the value to set the desired gap */
     font-size: 12px;
}

/* Optional: Adjust the spacing for the "Page x of y" element */
.dataTables_info {
    margin-right: 10px; /* Adjust the value to set the desired gap */
}

.dataTables_info {
    float: right;
    font-size : 12px
}


/* Force fixed column <td> background */
td.selected-cell {
    background-color: #007bff !important;
    color: white !important;
}


.align-right {
    text-align: right;
}
.align-left {
    text-align: left;
}
.summary{
    font-size: 14px; /* Adjust the font size as needed */
    color: blue; /* Change the color as needed */
}

/* Highlight entire row on selection including fixed columns */
tr.selected-row td,
.DTFC_LeftWrapper tr.selected-row td,
.DTFC_RightWrapper tr.selected-row td {
    background-color: #007bff !important;
    color: white !important;
}

/* Ensure background color of fixed columns is not white by default */
.DTFC_LeftWrapper, .DTFC_RightWrapper {
    background-color: #f2f2f2;
}

/* Optional: style individual selected cells, if used */
.selected-cell {
    background-color: #007bff !important;
    color: white !important;
}


td, th {
    font-variant-numeric: tabular-nums;
}

td { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; max-width: 200px; }
