@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap);
@import url(https://fonts.googleapis.com/css?family=Nunito);
@import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900);
@import url(https://cdn.jsdelivr.net/npm/@mdi/font@5.x/css/materialdesignicons.min.css);
.calendar {
  width: 100%;
  min-height: 600px;
  border-radius: 20px;
  background-color: #ffffff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 5px 5px 10px 5px;
  position: relative;
}
.calendar__date {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 10px 20px;
}
.calendar__date span {
  height: 25px;
  width: 25px;
  cursor: pointer;
  text-align: center;
}
.calendar__month {
  margin: 0 5px;
  min-width: 110px;
  text-align: center;
  text-transform: uppercase;
  color: #3c32c9;
}
.calendar__header {
  padding: 0 10px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar__day {
  text-align: end;
}
.calendar__body {
  background-color: #efefef;
  padding: 2px;
  margin: 10px;
  border-radius: 5px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.calendar__btn {
  position: absolute;
  font-size: 20px;
  top: 10px;
  right: 20px;
}

.cell {
  height: 150px;
  width: 100%;
  background-color: #f5f5f5;
  color: #b7b4b4;
  border-radius: 5px;
  border: 1px solid #fff;
  transition: all 0.1s ease-in;
  z-index: 1;
  overflow-y: hidden;
}
.cell--month {
  color: #434141;
  background-color: #fff;
}
.cell--weekends {
  color: #7676f4;
}
.cell--active {
  border: 1px solid #08e200;
}
.cell--now {
  background-color: #fff;
  border: 1px solid rgba(128, 128, 128, 0.5490196078);
}
.cell--now .cell__day {
  color: #08e200;
}
.cell__day {
  text-align: end;
  padding: 0 5px 0 0;
  font-weight: bold;
}
.cell__body {
  padding: 0 5px;
  width: 100%;
  position: relative;
}
.cell:hover {
  z-index: 2;
  overflow-y: visible;
  animation: 1.5s ease-in-out;
}

.badge {
  font-size: 14px;
  margin: 0 0 3px 0;
  width: 100%;
  line-height: 16px;
  text-align: left;
}
.badge:hover {
  cursor: pointer;
}
.badge__title {
  border-radius: 5px;
  padding: 0 3px;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
}
.badge__title--info {
  background-color: #eef5f1;
  color: #97bb9f;
}
.badge__title--error {
  background-color: #fceced;
  color: #c1868c;
}
.badge__title--warning {
  background-color: #faead0;
  color: #d2ae81;
}
.badge__title--demurrage {
  background-color: #e2e3e5;
  color: #383d41;
}
.badge__title--detention {
  background-color: #cce5ff;
  color: #004085;
}

body {
  font-size: 0.9rem;
}

.header-options-container {
  margin-right: 50px;
  padding: 6px;
  border-radius: 5px;
}

.header-options-row-2 {
  display: flex;
  border-style: solid;
  border-width: 0.1px;
  padding: 2px;
  background-color: #edf4ff;
  width: -moz-fit-content;
  width: fit-content;
}

.card {
  margin-left: 0;
  border-radius: 1em;
}

.user-panel-table {
  overflow-x: scroll;
}

.user-panel-table td, #customers th {
  border: 1px solid #ddd;
  padding: 3px;
  height: 55px;
}

.cursor-move {
  cursor: move;
}

@media (min-width: 992px) {
  .modal-xxl {
    width: 90% !important;
    max-width: 1700px !important;
  }
}
.dragArea {
  min-height: 50px;
  min-width: 50px;
  outline: 1px solid grey;
  list-style: none;
}

textarea .disable-resize {
  resize: none;
}

.text-right {
  text-align: right;
}

.float-right {
  float: right !important;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.header-logo {
  width: 264px;
  height: 30px;
  margin-left: 80px;
}

#app > nav > a {
  transition: all 0.3s ease;
}

#app.toggled > nav > a {
  margin-left: 260px;
}

body {
  font-size: 0.9rem;
}

.page-wrapper .sidebar-wrapper,
.sidebar-wrapper .sidebar-brand > a,
.sidebar-wrapper > a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
.sidebar-wrapper ul li a i,
.page-wrapper .page-content,
.sidebar-wrapper .sidebar-search input.search-menu,
.sidebar-wrapper .sidebar-search .input-group-text,
.sidebar-wrapper .sidebar-menu ul li a,
#show-sidebar,
#close-sidebar {
  transition: all 0.3s ease;
  text-align: left;
}

/*----------------page-wrapper----------------*/
.page-wrapper {
  height: 100vh;
}

.page-wrapper .theme {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 4px;
  margin: 2px;
}

.page-wrapper .theme.chiller-theme {
  background: #1e2229;
}

/*----------------toggeled sidebar----------------*/
.page-wrapper.toggled .sidebar-wrapper {
  left: 0px;
}

@media screen and (min-width: 768px) {
  .page-wrapper.toggled .page-content {
    padding-left: 300px;
  }
}
/*----------------show sidebar button----------------*/
#show-sidebar {
  position: fixed;
  left: 0;
  top: 17px;
  border-radius: 0 4px 4px 0px;
  width: 35px;
  transition-delay: 0.3s;
}

.page-wrapper.toggled #show-sidebar {
  left: -40px;
}

/*----------------sidebar-wrapper----------------*/
.sidebar-wrapper {
  width: 260px;
  height: 100%;
  max-height: 100%;
  position: fixed;
  top: 0;
  left: -300px;
  z-index: 999;
}

.sidebar-wrapper ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar-wrapper a {
  text-decoration: none;
}

/*----------------sidebar-content----------------*/
.sidebar-content {
  max-height: calc(100% - 30px);
  height: calc(100% - 30px);
  overflow-y: auto;
  position: relative;
}

.sidebar-content.desktop {
  overflow-y: hidden;
}

/*--------------------sidebar-brand----------------------*/
.sidebar-wrapper .sidebar-brand {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

.sidebar-wrapper .sidebar-brand > a {
  text-transform: uppercase;
  font-weight: bold;
  flex-grow: 1;
}

.sidebar-wrapper .sidebar-brand #close-sidebar {
  cursor: pointer;
  font-size: 20px;
}

/*--------------------sidebar-header----------------------*/
.sidebar-wrapper .sidebar-header {
  padding: 20px;
  overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic {
  float: left;
  width: 60px;
  padding: 2px;
  border-radius: 12px;
  margin-right: 15px;
  overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.sidebar-wrapper .sidebar-header .user-info {
  float: left;
  width: 100%;
}

.sidebar-wrapper .sidebar-header .user-info > span {
  display: block;
}

.sidebar-wrapper .sidebar-header .user-info .user-role {
  font-size: 12px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status {
  font-size: 11px;
  margin-top: 4px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status i {
  font-size: 8px;
  margin-right: 4px;
  color: #5cb85c;
}

/*-----------------------sidebar-search------------------------*/
.sidebar-wrapper .sidebar-search > div {
  padding: 10px 20px;
}

/*----------------------sidebar-menu-------------------------*/
.sidebar-wrapper .sidebar-menu {
  padding-bottom: 10px;
}

.sidebar-wrapper .sidebar-menu .header-menu span {
  font-weight: bold;
  font-size: 14px;
  padding: 15px 20px 5px 20px;
  display: inline-block;
}

.sidebar-wrapper .sidebar-menu ul li a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  position: relative;
  padding: 8px 30px 8px 20px;
}

.sidebar-wrapper .sidebar-menu ul li a i {
  margin-right: 10px;
  font-size: 12px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
}

.sidebar-wrapper .sidebar-menu ul li a:hover > i::before {
  display: inline-block;
  animation: swing ease-in-out 0.5s 1 alternate;
}

.sidebar-wrapper .sidebar-menu > a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  font-style: normal;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  background: 0 0;
  position: absolute;
  right: 15px;
  top: 14px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
  padding: 5px 0;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
  padding-left: 25px;
  font-size: 13px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
  font-size: 8px;
}

.sidebar-wrapper .sidebar-menu ul li a span.label,
.sidebar-wrapper .sidebar-menu ul li a span.badge {
  float: right;
  margin-top: 8px;
  margin-left: 5px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
  float: right;
  margin-top: 0px;
}

.sidebar-wrapper .sidebar-menu .sidebar-submenu {
  display: none;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a:after {
  transform: rotate(90deg);
  right: 17px;
}

/*--------------------------side-footer------------------------------*/
.sidebar-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: flex;
}

.sidebar-footer > a {
  flex-grow: 1;
  text-align: center;
  height: 30px;
  line-height: 30px;
  position: relative;
}

.sidebar-footer > a .notification {
  position: absolute;
  top: 0;
}

.badge-sonar {
  display: inline-block;
  background: #980303;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 0;
}

.badge-sonar:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #980303;
  opacity: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: sonar 1.5s infinite;
}

/*--------------------------page-content-----------------------------*/
.page-wrapper .page-content {
  display: inline-block;
  width: 100%;
  padding-left: 0px;
  padding-top: 20px;
}

.page-wrapper .page-content > div {
  padding: 20px 40px;
}

/*------scroll bar---------------------*/
::-webkit-scrollbar {
  width: 5px;
  height: 7px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: #525965;
  border: 0px none #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #525965;
}

::-webkit-scrollbar-thumb:active {
  background: #525965;
}

::-webkit-scrollbar-track {
  background: transparent;
  border: 0px none #ffffff;
  border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
  background: transparent;
}

::-webkit-scrollbar-track:active {
  background: transparent;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/*-----------------------------chiller-theme-------------------------------------------------*/
.chiller-theme .sidebar-wrapper {
  background: #31353D;
}

.chiller-theme .sidebar-wrapper .sidebar-header,
.chiller-theme .sidebar-wrapper .sidebar-search,
.chiller-theme .sidebar-wrapper .sidebar-menu {
  border-top: 1px solid #3a3f48;
}

.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
  border-color: transparent;
  box-shadow: none;
}

.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-role,
.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-status,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text,
.chiller-theme .sidebar-wrapper .sidebar-brand > a,
.chiller-theme .sidebar-wrapper .sidebar-menu ul li a,
.chiller-theme .sidebar-footer > a {
  color: #818896;
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li:hover > a,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a,
.chiller-theme .sidebar-wrapper .sidebar-header .user-info,
.chiller-theme .sidebar-wrapper .sidebar-brand > a:hover,
.chiller-theme .sidebar-footer > a:hover i {
  color: #b8bfce;
}

.page-wrapper.chiller-theme.toggled #close-sidebar {
  color: #bdbdbd;
}

.page-wrapper.chiller-theme.toggled #close-sidebar:hover {
  color: #ffffff;
}

.chiller-theme .sidebar-wrapper ul li:hover a i,
.chiller-theme .sidebar-wrapper .sidebar-dropdown .sidebar-submenu li a:hover:before,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu:focus + span,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active a i {
  color: #16c7ff;
  text-shadow: 0px 0px 10px rgba(22, 199, 255, 0.5);
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li a i,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown div,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
  background: #3a3f48;
}

.chiller-theme .sidebar-wrapper .sidebar-menu .header-menu span {
  color: #6c7b88;
}

.chiller-theme .sidebar-footer {
  background: #3a3f48;
  box-shadow: 0px -1px 5px #282c33;
  border-top: 1px solid #464a52;
}

.chiller-theme .sidebar-footer > a:first-child {
  border-left: none;
}

.chiller-theme .sidebar-footer > a:last-child {
  border-right: none;
}

.laravel-pagination .pagination-previous {
  font-weight: 600;
  border: 1px solid rgba(191, 191, 191, 0.5);
  border-radius: 5px 0 0 5px;
  cursor: pointer;
  padding: 2px;
  width: 90px;
  text-align: center;
  margin-right: 0;
}
.laravel-pagination .pagination-select-page {
  height: 30px;
  border: 1px solid rgba(191, 191, 191, 0.5);
}
.laravel-pagination .pagination-next {
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(191, 191, 191, 0.5);
  width: 90px;
  text-align: center;
  border-radius: 0 5px 5px 0;
  padding: 2px;
}

.login-page {
  background-image: url("/images/transport_terminal.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 !important;
}

.vertical-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  overflow: hidden;
}

body {
  margin-top: 20px;
  background: #f6f9fc;
}

.account-block {
  padding: 0;
  background-image: url("/images/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
}

.account-block .overlay {
  flex: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.account-block .account-testimonial {
  text-align: center;
  color: #fff;
  position: absolute;
  margin: 0 auto;
  padding: 0 1.75rem;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

.text-theme {
  color: #5369f8 !important;
}

.btn-theme {
  background-color: #5369f8;
  border-color: #5369f8;
  color: #fff;
}

.forgot-link {
  float: right;
}

.connected-logo {
  width: 85px;
  height: 85px;
}

.wms-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 1920px) {
  .wms-container {
    height: calc(100vh - 140px);
  }
}
@media (max-width: 1919px) and (min-width: 1400px) {
  .wms-container {
    height: calc(100vh - 120px);
  }
}
@media (max-width: 1399px) {
  .wms-container {
    height: calc(100vh - 100px);
  }
}
.wms-container .filter-bar-section {
  flex-shrink: 0;
}
.wms-container .table-section {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.modern-filter-bar {
  background: linear-gradient(135deg, #224099 0%, #4a90e2 100%);
  background-color: #f8f9fa;
  border: none;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 8px;
  margin-left: -12px;
  margin-right: -12px;
  padding: 12px 27px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  width: calc(100% + 24px);
  min-width: 100%;
}
.modern-filter-bar::-webkit-scrollbar {
  height: 8px;
}
.modern-filter-bar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.modern-filter-bar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
.modern-filter-bar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
.modern-filter-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 0;
}
.modern-filter-bar > * {
  position: relative;
  z-index: 1;
}

.filter-column {
  padding: 0 15px;
  position: relative;
}
.filter-column:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, #e0e0e0 20%, #e0e0e0 80%, transparent);
}
.filter-column label {
  font-weight: 600;
  color: #495057;
  font-size: 0.75rem;
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0.2px;
}
.filter-column .form-control,
.filter-column .form-select {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.8rem;
  height: 32px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}
.filter-column .form-control:focus,
.filter-column .form-select:focus {
  border-color: #224099;
  box-shadow: 0 0 0 3px rgba(34, 64, 153, 0.1);
  background: white;
}

.search-column {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px;
  backdrop-filter: blur(10px);
}
.search-column .btn {
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.search-column .btn.btn-primary {
  background: linear-gradient(135deg, #224099, #4a90e2);
  border: none;
}
.search-column .btn.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(34, 64, 153, 0.3);
}
.search-column .btn.btn-danger {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  border: none;
}
.search-column .btn.btn-danger:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.actions-column .btn {
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #224099, #4a90e2);
  border: none;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.actions-column .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 64, 153, 0.3);
}

.pagination-column {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px;
  backdrop-filter: blur(10px);
}

.col-tempPicker .btn-group-vertical .btn {
  border-radius: 25px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  background: linear-gradient(135deg, #28a745, #20c997);
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.col-tempPicker .btn-group-vertical .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

@media (max-width: 1440px) {
  .modern-filter-bar {
    padding: 10px 15px;
  }
  .modern-filter-bar .col-2 {
    flex: 0 0 auto;
    width: 18% !important;
  }
  .modern-filter-bar .col-lg-1 {
    flex: 0 0 auto;
    width: 12% !important;
  }
  .modern-filter-bar .col-1 {
    flex: 0 0 auto;
    width: 10% !important;
  }
  .modern-filter-bar .col-2-custom,
  .modern-filter-bar .col-md-2,
  .modern-filter-bar .col-lg-2 {
    flex: 0 0 auto;
    width: 22% !important;
  }
  .filter-column {
    padding: 0 6px;
  }
  .filter-column label {
    font-size: 0.72rem;
  }
  .filter-column .form-control,
  .filter-column .form-select {
    font-size: 0.78rem;
    padding: 4px 6px;
    height: 30px;
  }
  .actions-column .btn {
    font-size: 0.72rem;
    padding: 5px 8px;
  }
  .search-column .btn {
    font-size: 0.72rem;
    padding: 4px 8px;
  }
}
@media (max-width: 1366px) {
  .modern-filter-bar {
    padding: 8px 12px;
  }
  .modern-filter-bar .col-2 {
    width: 16% !important;
  }
  .modern-filter-bar .col-lg-1 {
    width: 10% !important;
  }
  .modern-filter-bar .col-1 {
    width: 8% !important;
  }
  .modern-filter-bar .col-2-custom,
  .modern-filter-bar .col-md-2,
  .modern-filter-bar .col-lg-2 {
    width: 20% !important;
  }
  .modern-filter-bar .col-sm-3 {
    width: 18% !important;
  }
  .filter-column {
    padding: 0 4px;
  }
  .filter-column label {
    font-size: 0.7rem;
  }
  .filter-column .form-control,
  .filter-column .form-select {
    font-size: 0.75rem;
    padding: 3px 5px;
    height: 28px;
  }
  .filter-column .col-md-4 {
    flex: 0 0 auto;
    width: 35% !important;
  }
  .filter-column .col-md-7 {
    flex: 0 0 auto;
    width: 65% !important;
  }
  .filter-column label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .actions-column .btn {
    font-size: 0.7rem;
    padding: 4px 6px;
    white-space: nowrap;
  }
  .search-column .btn {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  .search-column .col-5 {
    width: 45% !important;
  }
  .search-column .col-7 {
    width: 55% !important;
  }
}
@media (max-width: 1200px) {
  .modern-filter-bar {
    padding: 8px 10px;
    flex-wrap: wrap;
  }
  .modern-filter-bar .col-2 {
    width: 15% !important;
  }
  .modern-filter-bar .col-lg-1 {
    width: 8% !important;
  }
  .modern-filter-bar .col-1 {
    width: 7% !important;
  }
  .modern-filter-bar .col-2-custom,
  .modern-filter-bar .col-md-2,
  .modern-filter-bar .col-lg-2 {
    width: 18% !important;
  }
  .modern-filter-bar .col-sm-3 {
    width: 15% !important;
  }
  .modern-filter-bar > div {
    min-width: 200px;
    flex: 1 1 auto;
  }
  .filter-column {
    padding: 0 3px;
    margin-bottom: 6px;
  }
  .filter-column label {
    font-size: 0.68rem;
    line-height: 1.2;
  }
  .filter-column .form-control,
  .filter-column .form-select {
    font-size: 0.72rem;
    padding: 2px 4px;
    height: 26px;
  }
  .filter-column .col-md-4 {
    width: 30% !important;
  }
  .filter-column .col-md-7 {
    width: 70% !important;
  }
  .actions-column {
    min-width: 180px;
  }
  .actions-column .btn {
    font-size: 0.68rem;
    padding: 3px 6px;
    line-height: 1.2;
  }
  .search-column {
    min-width: 250px;
  }
  .search-column .btn {
    font-size: 0.68rem;
    padding: 2px 6px;
  }
  .search-column .col-5 {
    width: 40% !important;
  }
  .search-column .col-7 {
    width: 60% !important;
  }
  .pagination-column {
    min-width: 120px;
  }
}
@media (max-width: 992px) {
  .modern-filter-bar {
    padding: 8px 8px;
    overflow-x: visible;
  }
  .modern-filter-bar > div {
    min-width: 100%;
    margin-bottom: 10px;
    width: 100% !important;
  }
  .modern-filter-bar .row {
    margin-bottom: 8px;
  }
  .filter-column {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .search-column,
  .pagination-column,
  .actions-column {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
  }
  .col-tempPicker {
    order: -1;
  }
  .col-tempPicker .btn-group-vertical .btn {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) {
  .modern-filter-bar {
    border-radius: 0;
    padding: 6px 6px;
  }
  .modern-filter-bar .filter-column:not(:last-child)::after {
    display: none;
  }
  .search-column,
  .pagination-column {
    margin-top: 5px;
  }
  .actions-column .btn {
    margin-bottom: 4px;
  }
}
.modern-table:not(cpTable .modern-table) {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin: 0;
  table-layout: auto;
}
.modern-table:not(cpTable .modern-table) th, .modern-table:not(cpTable .modern-table) td {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  padding: 8px 4px !important;
  font-size: 0.8rem !important;
}

.create-inbound-modal .modern-table th, .create-inbound-modal .modern-table td {
  max-width: 120px;
  padding: 6px 3px !important;
  font-size: 0.75rem !important;
}
.create-inbound-modal .modern-table th {
  font-size: 0.7rem !important;
  padding: 8px 3px !important;
}
.create-inbound-modal .modern-table tbody tr:hover {
  background: linear-gradient(135deg, rgba(34, 64, 153, 0.15) 0%, rgba(74, 144, 226, 0.15) 100%) !important;
}

.table-striped.modern-table tbody tr:hover {
  background: linear-gradient(135deg, rgba(34, 64, 153, 0.15) 0%, rgba(74, 144, 226, 0.15) 100%) !important;
}

.user-panel-table.table.table-striped.table-bordered.table-sm.text-center.modern-table tbody tr:hover {
  background: linear-gradient(135deg, rgba(34, 64, 153, 0.15) 0%, rgba(74, 144, 226, 0.15) 100%) !important;
}

#inboundPiecesModal_Air .user-panel-table.table.table-striped.table-bordered.table-sm.text-center.modern-table tbody tr:hover {
  background: linear-gradient(135deg, rgba(34, 64, 153, 0.15) 0%, rgba(74, 144, 226, 0.15) 100%) !important;
}

.table-striped:not(cpTable .modern-table) tbody tr:hover td {
  background-color: transparent !important;
}

.modern-table.table-striped:not(cpTable .modern-table) tbody tr:hover td {
  background: linear-gradient(135deg, rgba(34, 64, 153, 0.15) 0%, rgba(74, 144, 226, 0.15) 100%) !important;
}

cpTable .modern-table {
  table-layout: auto !important;
  width: -moz-max-content !important;
  width: max-content !important;
  min-width: 100% !important;
  max-width: none !important;
}
cpTable .modern-table.table {
  width: -moz-max-content !important;
  width: max-content !important;
  max-width: none !important;
  table-layout: auto !important;
}
cpTable .modern-table th, cpTable .modern-table td {
  max-width: none !important;
  min-width: 0 !important;
  width: auto !important;
  padding: 0.5rem !important;
  font-size: 0.875rem !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  box-sizing: border-box !important;
  word-wrap: break-word !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  visibility: visible !important;
  display: table-cell !important;
}
cpTable .modern-table tbody td {
  max-width: none !important;
  min-width: 0 !important;
  width: auto !important;
  overflow: visible !important;
  white-space: normal !important;
  text-overflow: clip !important;
  box-sizing: border-box !important;
  word-wrap: break-word !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  visibility: visible !important;
  display: table-cell !important;
}
cpTable .modern-table tbody td div, cpTable .modern-table tbody td span, cpTable .modern-table tbody td p, cpTable .modern-table tbody td strong, cpTable .modern-table tbody td em, cpTable .modern-table tbody td a, cpTable .modern-table tbody td i {
  white-space: normal !important;
  word-wrap: break-word !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  max-width: none !important;
  min-width: 0 !important;
  width: auto !important;
  overflow: visible !important;
  text-overflow: clip !important;
  display: inline !important;
}
cpTable .modern-table thead.modern-thead th {
  font-size: 0.875rem !important;
  padding: 0.75rem 0.5rem !important;
  text-transform: uppercase !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  word-wrap: break-word !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}
cpTable .modern-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.075) !important;
}

.modern-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(34, 64, 153, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.modern-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 64, 153, 0.15);
  border-color: rgba(34, 64, 153, 0.2);
}
.modern-card .card-body {
  padding: 20px;
}
.modern-card .card-title {
  color: #224099;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.modern-card .card-text {
  color: #495057;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.modern-card .card-text strong {
  color: #224099;
}

#table-container {
  height: 100%;
  overflow: hidden;
}

.horizontal-scroll-container {
  height: 100%;
  margin: 0;
  padding: 0;
  padding-bottom: 25px;
  overflow-y: auto;
  overflow-x: auto;
}
.horizontal-scroll-container::-webkit-scrollbar:horizontal {
  height: 0;
  display: none;
}
.horizontal-scroll-container::-webkit-scrollbar:vertical {
  width: 18px;
}

.vertical-scroll-wrapper {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  overflow-x: auto;
}

.horizontal-scroll-wrapper {
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: visible;
}
.horizontal-scroll-wrapper cpTable {
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
}

#target-element {
  margin: 0;
  padding: 0;
}

.horizontal-scroll-wrapper::-webkit-scrollbar:horizontal,
.vertical-scroll-wrapper::-webkit-scrollbar:horizontal,
.overflow-scroll::-webkit-scrollbar:horizontal {
  height: 20px;
}
.horizontal-scroll-wrapper::-webkit-scrollbar:vertical,
.vertical-scroll-wrapper::-webkit-scrollbar:vertical,
.overflow-scroll::-webkit-scrollbar:vertical {
  width: 18px;
}
.horizontal-scroll-wrapper::-webkit-scrollbar-track,
.vertical-scroll-wrapper::-webkit-scrollbar-track,
.overflow-scroll::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}
.horizontal-scroll-wrapper::-webkit-scrollbar-thumb,
.vertical-scroll-wrapper::-webkit-scrollbar-thumb,
.overflow-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  border-radius: 12px;
  border: 3px solid #f8f9fa;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
.horizontal-scroll-wrapper::-webkit-scrollbar-thumb:hover,
.vertical-scroll-wrapper::-webkit-scrollbar-thumb:hover,
.overflow-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #495057 0%, #343a40 100%);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}
.horizontal-scroll-wrapper::-webkit-scrollbar-thumb:active,
.vertical-scroll-wrapper::-webkit-scrollbar-thumb:active,
.overflow-scroll::-webkit-scrollbar-thumb:active {
  background: linear-gradient(135deg, #343a40 0%, #212529 100%);
}
.horizontal-scroll-wrapper::-webkit-scrollbar-corner,
.vertical-scroll-wrapper::-webkit-scrollbar-corner,
.overflow-scroll::-webkit-scrollbar-corner {
  background: #f8f9fa;
}

.modern-table {
  table-layout: auto;
  width: 100%;
}
.modern-table thead.modern-thead {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 2px solid #224099;
}
.modern-table thead.modern-thead th {
  border-right: 1px solid rgba(34, 64, 153, 0.2);
  border-bottom: none;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #495057;
  text-transform: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  width: auto;
  min-width: -moz-fit-content;
  min-width: fit-content;
  max-width: none;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}
.modern-table thead.modern-thead th:hover {
  background: rgba(34, 64, 153, 0.1);
  transform: translateY(-1px);
}
.modern-table thead.modern-thead th:last-child {
  border-right: none;
}
.modern-table thead.modern-thead .flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 8px;
  white-space: nowrap;
  overflow: visible;
  min-width: -moz-max-content;
  min-width: max-content;
  flex-shrink: 0;
}
.modern-table thead.modern-thead .arrows {
  font-size: 12px;
  margin-left: 8px;
  color: #224099 !important;
  transition: all 0.3s ease;
}
.modern-table thead.modern-thead .arrows.fas.fa-arrow-up {
  animation: pulse-up 0.3s ease;
  color: #224099 !important;
}
.modern-table thead.modern-thead .arrows.fas.fa-arrow-down {
  animation: pulse-down 0.3s ease;
  color: #224099 !important;
}
.modern-table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.modern-table tbody tr:hover {
  background: linear-gradient(135deg, rgba(34, 64, 153, 0.15) 0%, rgba(74, 144, 226, 0.15) 100%) !important;
}
.modern-table tbody tr:last-child {
  border-bottom: none;
}
.modern-table tbody tr td {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 8px;
  font-size: 0.875rem;
  color: #495057;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.modern-table tbody tr td:last-child {
  border-right: none;
}
.modern-table tbody tr td div {
  white-space: nowrap;
  text-align: center;
  word-break: break-word;
  overflow-wrap: break-word;
}
.modern-table tbody tr td i {
  transition: all 0.3s ease;
  color: #000000;
}
.modern-table tbody tr td i.fas, .modern-table tbody tr td i.fa {
  color: #000000;
}
.modern-table tbody tr td i.fas:hover, .modern-table tbody tr td i.fa:hover {
  transform: scale(1.1);
  color: #000000;
}
.modern-table tbody tr td button {
  border-radius: 6px;
  font-size: 0.8rem;
  padding: 4px 8px;
  transition: all 0.3s ease;
}
.modern-table tbody tr td select {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.8rem;
  background: white;
  transition: all 0.3s ease;
}
.modern-table tbody tr td select:focus {
  border-color: #224099;
  box-shadow: 0 0 0 2px rgba(34, 64, 153, 0.1);
}
.modern-table tbody tr td img {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.modern-table tbody tr td img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-up {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2) translateY(-2px);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse-down {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2) translateY(2px);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 1200px) {
  .modern-table {
    font-size: 0.8rem;
  }
  .modern-table thead.modern-thead th {
    padding: 10px 6px;
    font-size: 0.8rem;
  }
  .modern-table tbody tr td {
    padding: 8px 6px;
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .modern-table {
    border-radius: 0;
  }
  .modern-table thead.modern-thead th {
    padding: 8px 4px;
    font-size: 0.75rem;
  }
  .modern-table tbody tr:hover {
    transform: none;
  }
  .modern-table tbody tr td {
    padding: 6px 4px;
    font-size: 0.75rem;
  }
}
.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #495057;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #224099;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reports-form-row {
  margin-bottom: 15px;
}
.reports-form-row .form-control {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  vertical-align: middle;
}
.reports-form-row .form-control:focus {
  border-color: #224099;
  box-shadow: 0 0 0 3px rgba(34, 64, 153, 0.1);
  background: white;
}
.reports-form-row select.form-control {
  padding: 6px 12px !important;
  height: 38px !important;
  line-height: 1.42857143 !important;
  display: block !important;
  vertical-align: baseline !important;
}
.reports-form-row label {
  font-weight: 600;
  color: #495057;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.reports-button-row {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.reports-button-row .btn {
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  transition: all 0.3s ease;
  margin-right: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.reports-button-row .btn.btn-primary {
  background: linear-gradient(135deg, #224099, #4a90e2);
  border: none;
}
.reports-button-row .btn.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 64, 153, 0.3);
}
.reports-button-row .btn.btn-primary:disabled {
  opacity: 0.6;
  transform: none;
}
.reports-button-row .btn .spinner-grow {
  width: 1rem;
  height: 1rem;
}

.create-inbound-modal .modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}
.create-inbound-modal .modal-header {
  background: linear-gradient(135deg, #224099 0%, #764ba2 100%);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 20px 30px;
}
.create-inbound-modal .modal-header .modal-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
}
.create-inbound-modal .modal-header .btn-close {
  filter: brightness(0) invert(1);
}
.create-inbound-modal .modal-body {
  padding: 20px;
  background: rgba(255, 255, 255, 0.98);
}

.create-inbound-form .form-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(34, 64, 153, 0.08);
}
.create-inbound-form .form-row {
  margin-bottom: 12px;
}
.create-inbound-form .form-row label {
  font-weight: 500;
  color: #495057;
  font-size: 0.8rem;
  margin-bottom: 4px;
  display: block;
}
.create-inbound-form .form-row .form-control, .create-inbound-form .form-row .formattingInput, .create-inbound-form .form-row .b-form-input, .create-inbound-form .form-row .b-form-select {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.85rem;
  height: 34px;
  transition: all 0.3s ease;
  background: white;
  line-height: 1.4;
}
.create-inbound-form .form-row .form-control:focus, .create-inbound-form .form-row .formattingInput:focus, .create-inbound-form .form-row .b-form-input:focus, .create-inbound-form .form-row .b-form-select:focus {
  border-color: #224099;
  box-shadow: 0 0 0 2px rgba(34, 64, 153, 0.08);
  background: white;
  outline: none;
}
.create-inbound-form .form-row .form-control:hover, .create-inbound-form .form-row .formattingInput:hover, .create-inbound-form .form-row .b-form-input:hover, .create-inbound-form .form-row .b-form-select:hover {
  border-color: #c3cde6;
}
.create-inbound-form .form-row select.form-control, .create-inbound-form .form-row .b-form-select {
  background-image: linear-gradient(45deg, transparent 50%, #224099 50%), linear-gradient(135deg, #224099 50%, transparent 50%);
  background-position: calc(100% - 15px) calc(1em + 1px), calc(100% - 12px) calc(1em + 1px);
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-right: 25px;
}
.create-inbound-form .form-row .text-danger {
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 3px;
  display: block;
}
.create-inbound-form .form-section-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #224099;
  text-transform: none;
  letter-spacing: 0.3px;
}

.create-inbound-actions {
  padding: 15px 25px;
  background: rgba(248, 249, 250, 0.9);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0 0 12px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.create-inbound-actions .btn {
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 8px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  min-width: 100px;
}
.create-inbound-actions .btn.btn-primary {
  background: linear-gradient(135deg, #224099, #4a90e2);
  border: none;
}
.create-inbound-actions .btn.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 64, 153, 0.3);
}
.create-inbound-actions .btn.btn-secondary {
  background: linear-gradient(135deg, #6c757d, #495057);
  border: none;
}
.create-inbound-actions .btn.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
}
.create-inbound-actions .btn:disabled {
  opacity: 0.6;
  transform: none;
  cursor: not-allowed;
}

.accolor-filter-bar {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 1rem;
  margin: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #dee2e6;
}
.accolor-filter-bar .filter-column {
  padding: 0.5rem;
}
.accolor-filter-bar .filter-column label {
  font-weight: 600;
  color: #495057;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.accolor-filter-bar .filter-column .form-control, .accolor-filter-bar .filter-column .form-select {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  height: 32px;
  transition: all 0.3s ease;
}
.accolor-filter-bar .filter-column .form-control:focus, .accolor-filter-bar .filter-column .form-select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.accolor-filter-bar .columnPickerButtons {
  align-items: center;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  line-height: 20px;
  max-width: 480px;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px 20px;
  text-align: center;
  touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
  margin: 0 0.25rem !important;
}
@media (max-width: 1366px) {
  .accolor-filter-bar .col-tempPicker {
    width: 10.666667%;
  }
  .accolor-filter-bar .columnPickerButtons {
    font-size: 12px;
    padding: 0px 20px;
    min-height: 25px;
    border-radius: 0px;
  }
  .accolor-filter-bar .col-tempPicker-text {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .accolor-filter-bar {
    padding: 0.5rem;
    margin: 0.25rem;
  }
  .accolor-filter-bar .filter-column {
    padding: 0.25rem;
  }
  .accolor-filter-bar .table-responsive-container {
    padding: 0.5rem;
  }
}

.create-SrockCheck-modal .modal-dialog {
  height: 90vh;
  max-height: 90vh;
}
.create-SrockCheck-modal .modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  height: 100%;
}
.create-SrockCheck-modal .modal-header {
  background: linear-gradient(135deg, #224099 0%, #764ba2 100%);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 20px 30px;
}
.create-SrockCheck-modal .modal-header .modal-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
}
.create-SrockCheck-modal .modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.create-inbound-form .form-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(34, 64, 153, 0.08);
}
.create-inbound-form .form-row {
  margin-bottom: 12px;
}
.create-inbound-form .form-row label {
  font-weight: 500;
  color: #495057;
  font-size: 0.8rem;
  margin-bottom: 4px;
  display: block;
}
.create-inbound-form .form-row .form-control, .create-inbound-form .form-row .formattingInput, .create-inbound-form .form-row .b-form-input, .create-inbound-form .form-row .b-form-select {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.85rem;
  height: 34px;
  transition: all 0.3s ease;
  background: white;
  line-height: 1.4;
}
.create-inbound-form .form-row .form-control:focus, .create-inbound-form .form-row .formattingInput:focus, .create-inbound-form .form-row .b-form-input:focus, .create-inbound-form .form-row .b-form-select:focus {
  border-color: #224099;
  box-shadow: 0 0 0 2px rgba(34, 64, 153, 0.08);
  background: white;
  outline: none;
}
.create-inbound-form .form-row .form-control:hover, .create-inbound-form .form-row .formattingInput:hover, .create-inbound-form .form-row .b-form-input:hover, .create-inbound-form .form-row .b-form-select:hover {
  border-color: #c3cde6;
}
.create-inbound-form .form-row select.form-control, .create-inbound-form .form-row .b-form-select {
  background-image: linear-gradient(45deg, transparent 50%, #224099 50%), linear-gradient(135deg, #224099 50%, transparent 50%);
  background-position: calc(100% - 15px) calc(1em + 1px), calc(100% - 12px) calc(1em + 1px);
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-right: 25px;
}
.create-inbound-form .form-row .text-danger {
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 3px;
  display: block;
}
.create-inbound-form .form-section-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #224099;
  text-transform: none;
  letter-spacing: 0.3px;
}

.create-inbound-actions {
  padding: 15px 25px;
  background: rgba(248, 249, 250, 0.9);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0 0 12px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.create-inbound-actions .btn {
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 8px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  min-width: 100px;
}
.create-inbound-actions .btn.btn-primary {
  background: linear-gradient(135deg, #224099, #4a90e2);
  border: none;
}
.create-inbound-actions .btn.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 64, 153, 0.3);
}
.create-inbound-actions .btn.btn-secondary {
  background: linear-gradient(135deg, #6c757d, #495057);
  border: none;
}
.create-inbound-actions .btn.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
}
.create-inbound-actions .btn:disabled {
  opacity: 0.6;
  transform: none;
  cursor: not-allowed;
}

.accolor-filter-bar {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 1rem;
  margin: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #dee2e6;
}
.accolor-filter-bar .filter-column {
  padding: 0.5rem;
}
.accolor-filter-bar .filter-column label {
  font-weight: 600;
  color: #495057;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.accolor-filter-bar .filter-column .form-control, .accolor-filter-bar .filter-column .form-select {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  height: 32px;
  transition: all 0.3s ease;
}
.accolor-filter-bar .filter-column .form-control:focus, .accolor-filter-bar .filter-column .form-select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.accolor-filter-bar .columnPickerButtons {
  align-items: center;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  line-height: 20px;
  max-width: 480px;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px 20px;
  text-align: center;
  touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
  margin: 0 0.25rem !important;
}
@media (max-width: 1366px) {
  .accolor-filter-bar .col-tempPicker {
    width: 10.666667%;
  }
  .accolor-filter-bar .columnPickerButtons {
    font-size: 12px;
    padding: 0px 20px;
    min-height: 25px;
    border-radius: 0px;
  }
  .accolor-filter-bar .col-tempPicker-text {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .accolor-filter-bar {
    padding: 0.5rem;
    margin: 0.25rem;
  }
  .accolor-filter-bar .filter-column {
    padding: 0.25rem;
  }
  .accolor-filter-bar .table-responsive-container {
    padding: 0.5rem;
  }
}

.accolor-containers-container,
.accolor-shipments-container,
.accolor-relations-container,
.accolor-inbound-container,
.accolor-outbound-container {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}

.accolor-containers-container .table-responsive-container,
.accolor-shipments-container .table-responsive-container,
.accolor-relations-container .table-responsive-container,
.accolor-inbound-container .table-responsive-container,
.accolor-outbound-container .table-responsive-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  margin: 0.5rem;
  padding: 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #dee2e6;
}
.accolor-containers-container .table-responsive-container .table-responsive,
.accolor-shipments-container .table-responsive-container .table-responsive,
.accolor-relations-container .table-responsive-container .table-responsive,
.accolor-inbound-container .table-responsive-container .table-responsive,
.accolor-outbound-container .table-responsive-container .table-responsive {
  flex: 1;
  overflow: auto;
  min-height: 0;
}

.accolor-filter-bar {
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}
.accolor-filter-bar .button-Accolor {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  border: none !important;
  border-radius: 20px !important;
  color: white !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3) !important;
}
.accolor-filter-bar .button-Accolor:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
  color: white !important;
}
.accolor-filter-bar .button-Accolor:active {
  transform: translateY(0) !important;
}

.accolor-modal .modal-dialog-fixed {
  max-width: 95%;
  width: 1200px;
  margin: 1rem auto;
}
.accolor-modal .modal-content-fixed {
  border-radius: 15px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.accolor-modal .modal-header-fixed {
  border-radius: 15px 15px 0 0;
  border-bottom: none;
}
.accolor-modal .modal-body-scrollable {
  max-height: calc(90vh - 200px);
  overflow-y: auto;
  overflow-x: hidden;
}

.accolor-modal .accolor-modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1rem 1.5rem;
  color: white;
}
.accolor-modal .accolor-modal-footer {
  background: rgba(248, 249, 250, 0.95);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0 0 15px 15px;
  padding: 1rem 1.5rem;
}

.accolor-modal .accolor-section-title {
  color: #667eea;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.accolor-modal .accolor-separator {
  border-color: #667eea;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.accolor-modal .accolor-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}
.accolor-modal .accolor-btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}
.accolor-modal .accolor-btn-primary:disabled {
  opacity: 0.7;
  transform: none;
}

.accolor-modal .form-label {
  font-weight: 600;
  color: #495057;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.accolor-modal .form-control, .accolor-modal .form-select {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.accolor-modal .form-control:focus, .accolor-modal .form-select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
.accolor-modal .is-invalid {
  border-color: #dc3545;
}
.accolor-modal .invalid-feedback {
  display: block;
  font-size: 0.8rem;
  color: #dc3545;
  margin-top: 0.25rem;
}

.accolor-modal .modal-body-scrollable::-webkit-scrollbar {
  width: 12px;
}
.accolor-modal .modal-body-scrollable::-webkit-scrollbar-track {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 6px;
}
.accolor-modal .modal-body-scrollable::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 6px;
  border: 2px solid #f8f9fa;
}
.accolor-modal .modal-body-scrollable::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.create-bundles-modal .modal-dialog,
.create-containers-modal .modal-dialog {
  max-width: 95vw;
}

.accolor-modal .modern-table {
  font-size: 0.875rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.accolor-modal .modern-table th {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.accolor-modal .modern-table td {
  border: none;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.accolor-modal .modern-table tbody tr:hover {
  background-color: rgba(102, 126, 234, 0.05);
}

.accolor-modal .stat-card {
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.accolor-modal .stat-icon {
  font-size: 2rem;
  margin-right: 15px;
  opacity: 0.8;
}
.accolor-modal .stat-content {
  flex: 1;
}
.accolor-modal .stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}
.accolor-modal .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.accolor-modal .cursor-pointer {
  cursor: pointer;
}
.accolor-modal .cursor-pointer:hover {
  opacity: 0.7;
}
.accolor-modal .badge {
  font-size: 0.75rem;
}
.accolor-modal .btn-group-sm > .btn {
  border-radius: 6px;
}

.create-bundles-form,
.create-containers-form {
  max-height: 70vh;
  overflow-y: auto;
}

.accolor-modal .section-title {
  color: #495057;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .accolor-modal .modal-dialog-fixed {
    max-width: 95%;
    margin: 0.5rem;
  }
  .accolor-modal .modal-body-scrollable {
    max-height: calc(100vh - 200px);
  }
  .accolor-modal .accolor-modal-header {
    padding: 0.75rem 1rem;
  }
  .accolor-modal .accolor-modal-footer {
    padding: 0.75rem 1rem;
  }
}
@media (max-width: 1200px) {
  .create-bundles-modal .modal-dialog,
  .create-containers-modal .modal-dialog {
    max-width: 98vw;
  }
  .accolor-modal .modern-table {
    font-size: 0.8rem;
  }
}
/* Accolor Modal Title Class - Based on IrregularityLogs style but smaller */
.accolor-modal-title {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  letter-spacing: 0.5px !important;
  text-align: center !important;
}

/* Ensure white color for modal titles (dark backgrounds) */
.modal-header .accolor-modal-title {
  color: white !important;
}

/* For navbar titles that may have different backgrounds */
.navbar-brand .accolor-modal-title {
  color: inherit !important; /* Inherit color from parent to match other brand text */
}

.wms-container {
  display: flex;
  flex-direction: column;
}

.filter-bar-section {
  flex-shrink: 0;
}

.table-responsive-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.table-responsive {
  overflow: auto !important;
  -webkit-overflow-scrolling: touch;
}

.table-responsive::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}

.table-responsive::-webkit-scrollbar-track {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #224099 0%, #4a90e2 100%);
  border-radius: 8px;
  border: 2px solid #f8f9fa;
  box-shadow: inset 0 1px 3px rgba(34, 64, 153, 0.2);
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  box-shadow: inset 0 1px 3px rgba(34, 64, 153, 0.3);
  transform: scale(1.05);
}

.table-responsive::-webkit-scrollbar-thumb:active {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  transform: scale(0.95);
}

.table-responsive::-webkit-scrollbar-corner {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.table {
  margin-bottom: 0;
}

.wms-table-enhanced {
  white-space: nowrap;
}

.modern-thead th,
.custom-thead th {
  position: sticky;
  top: 0;
  z-index: 4;
  background: #fff;
  text-align: center !important;
  vertical-align: middle !important;
}
.modern-thead th .flex-wrapper,
.custom-thead th .flex-wrapper {
  justify-content: center !important;
  text-align: center !important;
  display: flex;
  align-items: center;
}

.has-extra-head .modern-thead tr:first-child th,
.has-extra-head .custom-thead tr:first-child th {
  position: sticky;
  top: 0;
  z-index: 6;
  background: #fff;
  text-align: center !important;
  vertical-align: middle !important;
}
.has-extra-head .modern-thead tr:first-child th .flex-wrapper,
.has-extra-head .custom-thead tr:first-child th .flex-wrapper {
  justify-content: center !important;
  text-align: center !important;
  display: flex;
  align-items: center;
}

.has-extra-head .modern-thead tr:nth-child(2) th,
.has-extra-head .custom-thead tr:nth-child(2) th {
  position: sticky;
  top: var(--extra-head-h, 56px);
  z-index: 5;
  background: #fff;
  text-align: center !important;
  vertical-align: middle !important;
}
.has-extra-head .modern-thead tr:nth-child(2) th .flex-wrapper,
.has-extra-head .custom-thead tr:nth-child(2) th .flex-wrapper {
  justify-content: center !important;
  text-align: center !important;
  display: flex;
  align-items: center;
}

.modern-table,
.modal .modern-table,
.table.modern-table,
.user-panel-table,
.modal .user-panel-table,
.table.user-panel-table {
  border-collapse: separate !important;
  border-spacing: 0 !important;
}
.modern-table th, .modern-table td,
.modal .modern-table th,
.modal .modern-table td,
.table.modern-table th,
.table.modern-table td,
.user-panel-table th,
.user-panel-table td,
.modal .user-panel-table th,
.modal .user-panel-table td,
.table.user-panel-table th,
.table.user-panel-table td {
  border: 1px solid #dee2e6 !important;
}
.modern-table tbody td,
.modal .modern-table tbody td,
.table.modern-table tbody td,
.user-panel-table tbody td,
.modal .user-panel-table tbody td,
.table.user-panel-table tbody td {
  border-top: none !important;
}
.modern-table th + th,
.modern-table td + td,
.modal .modern-table th + th,
.modal .modern-table td + td,
.table.modern-table th + th,
.table.modern-table td + td,
.user-panel-table th + th,
.user-panel-table td + td,
.modal .user-panel-table th + th,
.modal .user-panel-table td + td,
.table.user-panel-table th + th,
.table.user-panel-table td + td {
  border-left: none !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
