/* .table-left-label label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #374151;
    font-size: 14px;

    font-weight: normal;
    text-align: left;
    white-space: nowrap;
} */

.dataTables_wrapper div.dataTables_filter {
    text-align: right;
}

/* Modal Overlay (Background blocking interaction) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s linear;
}
.modal-overlay.overlay-show{
  opacity: 1;
}

/* Modal fade in/out effect */
.modal.fade.show {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.modal-dialog {
  min-width: 400px;
  margin: 0 auto;
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.3s ease, transform 0.3s ease;
}

/* Modal content visible with transition */
.modal.fade.show .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

.modal-content {
  border-radius: 8px;
  background-color: #fff;
  padding: 20px;
}
.table-responsive{
  overflow-x: hidden !important;
}

.component-loader{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 99999999999;
}


label.select-all-label.text-primary.mb-2 {
    font-size: 18px;
    padding-top: 8px;
}