/*!
 * Author: Anshuman
 * Updated	 :	07.23.2020
**/
@media (min-width: 992px){
    .nk-auth-container {
        width: 30%;
    }
}
.display_none {
    display: none !important;
}

.logo-img {
    max-height: 60px;
}

.custom-control-input:checked ~ .custom-control-label::before {
    border-color: #44c0dd;
    background-color: #44c0dd;
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: #44c0dd;
}

.nk-menu-link {
    color: #fff;
}

.nk-menu-link:hover, .active > .nk-menu-link {
    color: bisque;
}
.is-dark .nk-sidebar-head {
    background-color: #fff;
}
.nk-menu-sub .active > .nk-menu-link {
    color: #fff;
}
.nk-menu-sub {
    display: none;
}
.nk-menu-item.has-sub.active > .nk-menu-sub {
    display: block;
}
/* lable print css*/

.label-container {
    display: flex;
    flex-wrap: wrap;
    width: 210mm; /* A4 width */
    height: 297mm; /* A4 height */
    box-sizing: border-box;
    padding:27mm 4mm 17mm 4mm;
}

.label {
    width: calc((100% - 8mm) / 2); /* Two labels per row with 4mm margin on each side */
    min-height: 38.4mm;
    margin: 0;
    border: 1px solid #000;
    box-sizing: border-box;
}

/* Container to control DataTable width and enable horizontal scrollbar */
.datatable-container {
    max-width: 100%;
    overflow-x: auto;
  }
  
  /* Truncate text in table cells */
  #transactions-table td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #mds-transactions-table td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #assembly-summary-table td th{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

#search-table td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#search-table {
    font-size: 0.8rem;
}

#search-table th,
#search-table td {
    padding: 8px 10px;
}

/* Add your existing styles here */

/* Highlighted row styling */
.highlight-row {
    background-color: #FFFF00; /* Set your desired highlight color */
}