.auth-page {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #000;
  padding: 28vh 0 40px;
  box-sizing: border-box;
}

.auth-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.auth-fader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 64px 72px;
  z-index: 1;
  pointer-events: none;
}

.auth-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 640px;
  text-align: center;
}

.auth-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--auth-badge-bg, rgba(43, 127, 255, 0.3));
  border: 2px solid var(--auth-badge-border, rgba(43, 127, 255, 0.3));
  border-radius: 50px;
}

.auth-badge img {
  width: 14px;
  height: 14px;
}

.auth-badge span {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: var(--auth-badge-text, #FFFFFF);
  margin-top: 2px;
}

.auth-heading {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 60px;
  color: var(--auth-heading-color, #FFFFFF);
  margin: 0;
}

.auth-subtext {
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--auth-subtext-color, #CAD5E2);
  margin: 0;
}

.auth-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  gap: 40px;
  width: 440px;
  margin-bottom: auto;
  background: #FFFFFF;
  box-shadow: 0px 6px 10px 4px rgba(0, 0, 0, 0.15), 0px 2px 3px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  box-sizing: border-box;
}

.auth-card-logo {
  height: 48px;
}

.auth-card-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #26282D;
  margin: 0;
  text-align: center;
  padding-top: 48px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.auth-input-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.auth-password-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.auth-remember-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.auth-remember-row .form-check-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #26282D;
}

.auth-submit-btn {
  width: 100%;
  height: 40px;
  background: #26282D;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.auth-submit-btn:hover {
  background: #3F4144;
}

.auth-page .alert-error {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 6px;
  border: none;
  padding: 8px 16px;
  background: var(--errorlighter);
  font-size: 14px;
  font-weight: 600;
  color: var(--errorDark);
  text-align: left;
  line-height: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-check.form-switch,
.form-check.form-switch .form-check-input,
.form-check.form-switch .form-check-label {
  cursor: pointer;
}

.has-submenu > .submenu-trigger-btn {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
  padding: 10px 8px 10px 5px;
  height: 44px;
  min-height: 44px;
  text-decoration: none;
  color: #26282D;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  border-left: 3px solid transparent;
  background: transparent;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  position: relative;
}

.has-submenu > .submenu-trigger-btn:hover img {
  filter: none;
}

.has-submenu > .submenu-trigger-btn:hover {
  color: var(--brand);
  border-left-color: var(--brand);
  background: var(--lightF5);
  box-shadow: -1px 1px 3px 0px rgba(0, 0, 0, 0.14);
}

.submenu-arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #3F4144;
  border-bottom: 2px solid #3F4144;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.has-submenu > .submenu-trigger-btn .submenu-arrow {
  margin-left: auto;
  flex-shrink: 0;
}

.has-submenu.open > .submenu-trigger-btn .submenu-arrow {
  transform: rotate(-135deg);
}

.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.has-submenu.open > .submenu {
  max-height: 200px;
}

.submenu li a {
  display: flex;
  align-items: center;
  padding: 0px 8px 0px 44px;
  height: 44px;
  min-height: 44px;
  width: 100%;
  box-sizing: border-box;
  border-left: 3px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #26282D;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.submenu li a:hover {
  background: #F5F5F5;
  border-left-color: var(--brand);
  border-radius: 4px;
  box-shadow: -1px 1px 3px 0px rgba(0, 0, 0, 0.14);
  color: var(--brand);
  font-weight: 700;
}

.submenu li.active a {
  background: #F5F5F5;
  border-left: 3px solid var(--brand);
  border-radius: 4px;
  box-shadow: -1px 1px 3px 0px rgba(0, 0, 0, 0.14);
  color: var(--brand);
  font-weight: 700;
}

.asterisk-sign {
  color: #F04438;
}

table.dataTable.ftl_datatable > tbody > tr > td.customerid a{ text-decoration: none;}

.theme-datatable table.dataTable > tbody > tr.purple_row > td:first-child { box-shadow: 2px 2px 4px #0000000A, inset 0 -0.5px 0 var(--greyLightest), inset 0 0.5px 0 var(--greyLightest), inset 3px 0 0 #7A5AF8 !important; }

.theme-datatable table.dataTable > tbody > tr.sky_row > td:first-child { box-shadow: 2px 2px 4px #0000000A, inset 0 -0.5px 0 var(--greyLightest), inset 0 0.5px 0 var(--greyLightest), inset 3px 0 0 #0BA5EC !important; }

.ftlod-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ftlod-overlay.ftlod-overlay--show {
  display: block;
  opacity: 1;
}

.ftlod-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -40px 40px 80px -8px rgba(145, 158, 171, 0.24);
  display: flex;
  flex-direction: column;
  z-index: 1101;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Nunito', sans-serif;
}
.ftlod-drawer.ftlod-drawer--open {
  transform: translateX(0);
}
.ftlod-drawer *,
.ftlod-drawer *::before,
.ftlod-drawer *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ftlod-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 64px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(158, 158, 158, 0.2);
  gap: 12px;
}
.ftlod-hdr__center {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.ftlod-hdr__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: #26282D;
  white-space: nowrap;
}
.ftlod-hdr__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  /*background: rgba(247, 144, 9, 0.16);*/
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  /*color: #B54708;*/
  white-space: nowrap;
  flex-shrink: 0;
}
.ftlod-hdr__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.ftlod-hdr__close:hover {
  background: rgba(63, 65, 68, 0.08);
}

.ftlod-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.ftlod-body::-webkit-scrollbar {
  width: 4px;
}
.ftlod-body::-webkit-scrollbar-thumb {
  background: rgba(158, 158, 158, 0.35);
  border-radius: 4px;
}

.ftlod-sec {
  border-bottom: 1px solid rgba(158, 158, 158, 0.2);
}
.ftlod-sec__hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  height: 52px;
  border-bottom: 1px solid rgba(158, 158, 158, 0.2);
  gap: 16px;
}
.ftlod-sec__ttl {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #9A130A;
}
.ftlod-sec__chev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.ftlod-sec__chev:hover {
  background: rgba(158, 158, 158, 0.12);
}
.ftlod-sec__chev-ico {
  transition: transform 0.25s ease;
}
.ftlod-sec__body--collapsed {
  display: none;
}
.ftlod-sec__chev--rotated .ftlod-sec__chev-ico {
  transform: rotate(-90deg);
}

.ftlod-consignee {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
}
.ftlod-consignee__avatar {
  width: 40px;
  height: 40px;
  background: #DCE8FF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #265BBE;
  flex-shrink: 0;
}

.ftlod-consignee__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.ftlod-consignee__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ftlod-consignee__name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #26282D;
}
.ftlod-consignee__phone {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #26282D;
}

.ftlod-consignee__date {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #26282D;
  white-space: nowrap;
  flex-shrink: 0;
}

.ftlod-route__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  min-height: 64px;
  border-bottom: 1px solid rgba(158, 158, 158, 0.2);
}
.ftlod-route__row:last-child {
  border-bottom: none;
}
.ftlod-route__ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
}
.ftlod-route__txt {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ftlod-route__lbl {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #5F6165;
}
.ftlod-route__val {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: #26282D;
}

.ftlod-shipreq__grid {
  display: flex;
}
.ftlod-shipreq__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 16px;
}
.ftlod-shipreq__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ftlod-shipreq__lbl {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #5F6165;
}
.ftlod-shipreq__val {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: #26282D;
}

.ftlod-cargo__chips {
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  flex-wrap: wrap;
}
.ftlod-cargo__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #0D2B63;
}
.ftlod-cargo__chip--filled {
  background: rgba(38, 91, 190, 0.12);
}
.ftlod-cargo__chip--outline {
  background: rgba(38, 91, 190, 0.12);
}
.ftlod-cargo__tblwrap {
  overflow-x: auto;
}
.ftlod-cargo__tbl {
  width: 100%;
  border-collapse: collapse;
}
.ftlod-cargo__tbl thead tr {
  background: #F5F5F5;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.04);
}
.ftlod-cargo__th {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: #26282D;
  text-align: left;
  white-space: nowrap;
}
.ftlod-cargo__tbl tbody tr {
  background: #ffffff;
}
.ftlod-cargo__tbl tbody tr:not(:last-child) .ftlod-cargo__td {
  border-bottom: 0.5px solid rgba(158, 158, 158, 0.2);
}
.ftlod-cargo__td {
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #26282D;
  height: 60px;
}

.ftlod-ftr {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 16px;
  height: 64px;
  flex-shrink: 0;
  border-top: 1px solid rgba(158, 158, 158, 0.2);
}
.ftlod-ftr__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  min-width: 64px;
  height: 40px;
  background: #26282D;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  cursor: pointer;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
}
.ftlod-ftr__btn:hover {
  background: #3F4144;
}
.ftlod-ftr__btn:active {
  background: #1a1c1f;
}

.dtable-dropmenu li:last-child a:is(.add-quote-action, .edit-quote-action, .schedule-pickup-action, .mark-transit-action, .mark-delivered-action) {
  color: inherit !important;
}

.dtable-dropmenu li:last-child a:is(.edit-quote-action, .schedule-pickup-action, .mark-transit-action) i img {
  filter: initial !important;
}

.ftlod-hdr__badge.quote-requested {
  color: #B54708;
  background: rgba(247, 144, 9, 0.16);
}

.ftlod-hdr__badge.quoted {
  background: #265BBE1F;
  color: #265BBE;
}

.ftlod-hdr__badge.accepted {
  background: #E0F2FE;
  color: #0B4A6F;
}

.ftlod-hdr__badge.scheduled {
  background: #F4F3FF;
  color: #5925DC;
}

.ftlod-hdr__badge.delivered {
  background: #28A7451F;
  color: #2B6834;
}

.ftlod-hdr__badge.in-transit {
  color: #B54708;
  background: rgba(247, 144, 9, 0.16);
}

.ftlod-hdr__badge.cancelled {
  background: #F044381F;
  color: #B42318;
}

.ftl-status-modal-open {
  overflow: hidden;
}

.ftl-status-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
}

.ftl-status-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.72);
}

.ftl-status-modal__dialog {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  width: min(400px, calc(100vw - 32px));
  background: var(--white);
  border-radius: 12px;
  box-shadow: -40px 40px 80px -8px rgba(0, 0, 0, 0.24);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ftl-status-modal__dialog--schedule {
  width: min(400px, calc(100vw - 32px));
  min-height: 230px;
}

.ftl-status-modal__dialog--compact {
  width: min(423px, calc(100vw - 32px));
  min-height: 110px;
  padding: 12px 16px;
  gap: 16px;
}

.ftl-status-modal__dialog--wide {
  width: min(638px, calc(100vw - 32px));
  min-height: 110px;
  padding: 12px 16px;
  gap: 16px;
}

.ftl-status-modal__header {
  align-items: flex-start;
  gap: 12px;
}

.ftl-status-modal__icon {
  width: 40px;
  min-width: 40px;
  margin-bottom: 24px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: var(--greyLightest);
  border-radius: 8px;
}

.ftl-status-modal__text-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.ftl-status-modal__title {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: var(--txtPrimary);
}

.ftl-status-modal__description {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: var(--txtSecondary);
}

.ftl-status-modal__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ftl-status-modal__field {
  position: relative;
  width: 100%;
}

.ftl-status-modal__input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--borderColor);
  border-radius: 8px;
  padding: 14px 44px 10px 14px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: var(--txtPrimary);
  background: var(--white);
}

.ftl-status-modal__input:focus {
  border-color: var(--txtPrimary);
}

.ftl-status-modal__label {
  position: absolute;
  top: -8px;
  left: 12px;
  padding: 0 2px;
  background: var(--white);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: var(--txtSecondary);
}

.ftl-status-modal__calendar-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ftl-status-modal__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.ftl-status-modal__btn {
  min-width: 96px;
  height: 40px;
  border-radius: 8px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  border: none;
}

.ftl-status-modal__btn--ghost {
  background: transparent;
  color: var(--txtPrimary);
  box-shadow: none;
}

.ftl-status-modal__btn--primary {
  background: var(--txtPrimary);
  color: var(--white);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
}

.aq-popup-page .modal-overlay {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 64px;
  gap: 8px;
  width: 100%;
  min-height: 100vh;
  background: rgba(30, 30, 30, 0.8);
  position: fixed;
  inset: 0;
  overflow-y: auto;
}

.aq-popup-page .modal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1400px;
  max-width: 100%;
  background: var(--white);
  box-shadow: var(--modal-shadow);
  border-radius: 16px; !important;
  isolation: isolate;
}

.aq-popup-page .dialog-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  gap: 24px;
  width: 100%;
  height: 56px;
  background: var(--white);
  border-bottom: 0.5px solid var(--white);
  flex-shrink: 0;
  position: relative;
}

.aq-popup-page .title-icon-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.aq-popup-page .title-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background: #EEEEEE;
  border-radius: 6px;
  flex-shrink: 0;
}

.aq-popup-page .dialog-title-text {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-dark);
  white-space: nowrap;
}

.aq-popup-page .dialog-close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  padding: 4px;
  transition: background 0.15s ease;
}
.aq-popup-page .dialog-close-btn:hover {
  background: var(--lightF5);
}

.aq-popup-page .content-stack {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.aq-popup-page .left-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% - 400px);
  height: 520px;
  overflow-y: auto;
  border-right: 1px solid var(--color-light-gray);
  flex-shrink: 0;
}

/* Section block */
.aq-popup-page .section-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  border-bottom: 0.6px solid var(--color-light-gray);
}

.aq-popup-page .section-block--last {
  border-bottom: none;
  flex: 1;
}

.aq-popup-page .section-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 16px;
  gap: 16px;
  width: 100%;
  height: 44px;
  border-bottom: 0.6px solid var(--color-light-gray);
  flex-shrink: 0;
}

.aq-popup-page .section-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-red-title);
}

.aq-popup-page .section-table {
  width: 100%;
  overflow-x: auto;
}

.aq-popup-page .details-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.aq-popup-page .details-table thead tr {
  background: var(--lightF5);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.04);
}

.aq-popup-page .details-table th {
  padding: 8px 16px;
  height: 32px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: var(--color-dark);
  text-align: left;
  white-space: nowrap;
}

.aq-popup-page .details-table tbody tr {
  background: var(--white);
}

.aq-popup-page .details-table tbody td {
  padding: 8px 16px;
  height: 60px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-dark);
  border-bottom: 0.5px solid var(--color-light-gray);
  white-space: nowrap;
}

.aq-popup-page .section-block:nth-child(2) .details-table tbody td {
  font-weight: 400;
  height: 44px;
}

.aq-popup-page .chips-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 16px;
  gap: 24px;
  width: 100%;
  height: 48px;
  flex-shrink: 0;
}

.aq-popup-page .chip {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
  cursor: default;
}

.aq-popup-page .payment-inputs {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 16px;
  width: 100%;
  flex-wrap: wrap;
}

.aq-popup-page .text-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 200px;
  position: relative;
}

.aq-popup-page .input-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px;
  gap: 8px;
  width: 100%;
  height: 42px;
  min-height: 42px;
  max-height: 42px;
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 8px;
  position: relative;
  isolation: isolate;
  transition: border-color 0.15s ease;
}

.aq-popup-page .input-field:focus-within {
  border-color: var(--color-dark);
}

.aq-popup-page .input-field input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-dark);
  background: transparent;
  padding: 0;
  width: 100%;
}

.aq-popup-page .input-field .floating-label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-muted);
  pointer-events: none;
  transition: all 0.15s ease;
  background: transparent;
  padding: 0 2px;
}

.aq-popup-page .input-field input:not(:placeholder-shown) ~ .floating-label,
.aq-popup-page .input-field input:focus ~ .floating-label {
  top: -8px;
  transform: translateY(0);
  font-size: 12px;
  line-height: 16px;
  color: var(--color-muted);
  background: var(--white);
}

.aq-popup-page .input-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  pointer-events: none;
}

/* Rupee prefix inputs */
.aq-popup-page .input-field--rupee {
  padding-left: 10px;
}

.aq-popup-page .rupee-prefix {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--color-dark-icon);
  pointer-events: none;
}

.aq-popup-page .input-field--rupee input {
  font-weight: 400;
}

.aq-popup-page .right-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 400px;
  height: 520px;
  flex-shrink: 0;
  overflow-y: auto;
  border-bottom: 1px solid var(--color-light-gray);
}

.aq-popup-page .right-panel-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  gap: 16px;
  width: 100%;
  height: 44px;
  flex-shrink: 0;
}

.aq-popup-page .clear-all-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: var(--color-dark);
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s ease;
  white-space: nowrap;
}
.aq-popup-page .clear-all-btn:hover {
  background: var(--lightF5);
}

/* Total Quoted Amount block */
.aq-popup-page .quote-amount-block {
  width: 100%;
  padding: 16px 16px 12px;
  flex-shrink: 0;
}

.aq-popup-page .quote-amount-input {
  position: relative;
  width: 100%;
}

/* Quote Rows */
.aq-popup-page .quote-rows {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
}

.aq-popup-page .quote-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  border-bottom: 0.5px solid var(--color-light-gray);
}

.aq-popup-page .quote-row-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  padding: 12px 16px;
  flex: 1;
  min-height: 96px;
}

.aq-popup-page .status-chip {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
}

.aq-popup-page .chip-accepted {
  background: #265BBE1F;
  color: #0D2B63;
}

.aq-popup-page .chip-scheduled {
  background: var(--brandLighter);
  color: #9A130A;
}

.aq-popup-page .chip-intransit {
  background: var(--chip-intransit-bg);
  color: #B54708;
}

.aq-popup-page .chip-delivered {
  background: #28A74529;
  color: var(--chip-delivered-txt);
}

.aq-popup-page .row-remove-btn {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 44px 16px 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  width: 60px;
  min-height: 96px;
  transition: opacity 0.15s ease;
}

.aq-popup-page .dialog-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 16px;
  gap: 24px;
  width: 100%;
  height: 72px;
  background: var(--white);
  border-top: 1px solid var(--color-light-gray);
  flex-shrink: 0;
  isolation: isolate;
}

.aq-popup-page .btn-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 8px;
  min-width: 64px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-dark);
  transition: background 0.15s ease;
}
.aq-popup-page .btn-secondary:hover {
  background: var(--lightF5);
}

/* Primary Button */
.aq-popup-page .btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 8px;
  min-width: 64px;
  height: 40px;
  background: var(--color-dark);
  box-shadow: var(--btn-shadow);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--white);
  transition: opacity 0.15s ease, transform 0.1s ease;
}
.aq-popup-page .btn-primary:hover {
  opacity: 0.9;
}
.aq-popup-page .btn-primary:active {
  transform: scale(0.98);
}

.aq-popup-page .left-panel::-webkit-scrollbar,
.aq-popup-page .right-panel::-webkit-scrollbar {
  width: 6px;
}
.aq-popup-page .left-panel::-webkit-scrollbar-track,
.aq-popup-page .right-panel::-webkit-scrollbar-track {
  background: transparent;
}
.aq-popup-page .left-panel::-webkit-scrollbar-thumb,
.aq-popup-page .right-panel::-webkit-scrollbar-thumb {
  background: rgba(158, 158, 158, 0.4);
  border-radius: 3px;
}

.add-quote-page {
  padding: 0 !important;
  overflow: hidden;
}

.add-quote-overlay {
  padding: 72px 96px;
  gap: 8px;
  align-items: flex-start;
  overflow: hidden;
  z-index: 1100;
}

.add-quote-overlay .add-quote-card {
  width: 1400px;
  height: 716px;
  max-width: calc(100vw - 192px);
  background: #FFFFFF;
  box-shadow: -40px 40px 80px -8px rgba(0, 0, 0, 0.24);
  border-radius: 16px;
  overflow: hidden;
}

.add-quote-overlay .dialog-title {
  width: 100%;
  height: 56px;
  min-height: 56px;
  padding: 16px;
  border-bottom: 0.5px solid rgba(158, 158, 158, 0.2);
  border-radius: 16px 16px 0 0;
}

.add-quote-overlay .title-icon-group {
  width: 116px;
  height: 24px;
}

.add-quote-overlay .title-icon {
  padding: 2px 2.4px;
  gap: 2px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #EEEEEE;
}

.add-quote-overlay .dialog-title-text {
  width: 80px;
  height: 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #26282D;
}

.add-quote-overlay .dialog-close-btn {
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 500px;
}

.add-quote-overlay .content-stack {
  width: 100%;
  height: 588px;
  overflow: hidden;
}

.add-quote-overlay .left-panel {
  flex: 1 1 0;
  min-width: 0;
  height: 588px;
  border-right: 1px solid rgba(158, 158, 158, 0.2);
  overflow-x: hidden;
  overflow-y: hidden;
}

.add-quote-overlay .right-panel {
  width: 340px;
  flex-shrink: 0;
  height: 588px;
  border-bottom: 1px solid rgba(158, 158, 158, 0.2);
  overflow-x: hidden;
  overflow-y: hidden;
}

.add-quote-overlay .section-block {
  width: 100%;
  border-bottom: 0.6px solid rgba(158, 158, 158, 0.2);
}

.add-quote-overlay .section-block:first-child {
  height: 136px;
}

.add-quote-overlay .section-block:nth-child(2) {
  max-height: 327px;
  display: flex;
  flex-direction: column;
}

.add-quote-overlay .section-block:nth-child(2) .chips-row,
.add-quote-overlay .section-block:nth-child(2) .section-header {
  flex-shrink: 0;
}

.add-quote-overlay .section-block:nth-child(2) .section-table {
  flex: 1;
  overflow-y: auto;
}

.add-quote-overlay .details-table--cargo thead tr {
  position: sticky;
  top: 0;
  z-index: 1;
}

.add-quote-overlay .section-block--last {
  height: 172px;
  border-bottom: none;
  flex: none;
}

.add-quote-overlay .section-header,
.add-quote-overlay .right-panel-header {
  padding: 8px 16px;
  gap: 16px;
  width: 100%;
  height: 44px;
  min-height: 44px;
  border-bottom: 0.6px solid rgba(158, 158, 158, 0.2);
}

.add-quote-overlay .right-panel-header {
  justify-content: space-between;
}

.add-quote-overlay .section-title {
  display: flex;
  align-items: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #9A130A;
}

.add-quote-overlay .section-table {
  width: 100%;
  overflow: hidden;
}

.add-quote-overlay .details-table {
  width: 100%;
  table-layout: fixed;
}

.add-quote-overlay .details-table--consignee colgroup col:nth-child(1) { width: 13%; }
.add-quote-overlay .details-table--consignee colgroup col:nth-child(2) { width: 20%; }
.add-quote-overlay .details-table--consignee colgroup col:nth-child(3) { width: 18%; }
.add-quote-overlay .details-table--consignee colgroup col:nth-child(4) { width: 9%; }
.add-quote-overlay .details-table--consignee colgroup col:nth-child(5) { width: 13%; }
.add-quote-overlay .details-table--consignee colgroup col:nth-child(6) { width: 14%; }
.add-quote-overlay .details-table--consignee colgroup col:nth-child(7) { width: 8%; }

.add-quote-overlay .details-table th {
  height: 32px;
  padding: 8px 13px;
  background: #F5F5F5;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.04);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #26282D;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.add-quote-overlay .details-table--consignee tbody td {
  height: 60px;
  max-height: 60px;
  padding: 8px 16px;
  border-bottom: 0.5px solid rgba(158, 158, 158, 0.2);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #26282D;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.add-quote-overlay .details-table--consignee tbody td.route-cell {
  overflow: hidden;
}

.add-quote-overlay .route-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  min-width: 0;
}

.add-quote-overlay .route-wrapper .route-city {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1 1 0;
}

.add-quote-overlay .route-wrapper .route-icon {
  flex-shrink: 0;
}

.add-quote-overlay .details-table--consignee tbody td.truck-type-cell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.add-quote-overlay .chips-row {
  padding: 12px 16px;
  gap: 24px;
  width: 100%;
  height: 48px;
}

.add-quote-overlay .chip {
  padding: 4px 8px;
  gap: 4px;
  height: 24px;
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}

.add-quote-overlay .details-table--cargo tbody td {
  height: 44px;
  padding: 8px 16px;
  border-bottom: 0.5px solid rgba(158, 158, 158, 0.2);
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #26282D;
  vertical-align: middle;
}

.add-quote-overlay .payment-inputs {
  width: 100%;
  height: 128px;
  padding: 20px 16px;
  gap: 16px;
  flex-wrap: nowrap;
}

.add-quote-overlay .text-field {
  width: 258.67px;
  min-width: 258.67px;
  flex: 0 0 258.67px;
}

.add-quote-overlay .input-field {
  width: 100%;
  height: 42px;
  min-height: 42px;
  max-height: 42px;
  padding: 12px;
  gap: 8px;
  border: 1px solid rgba(158, 158, 158, 0.32);
  border-radius: 8px;
  background: #FFFFFF;
}

.add-quote-overlay .input-field input {
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #26282D;
}

/* Validation highlight for add-quote modal */
.add-quote-overlay .input-field.has-validation {
  border-color: var(--error) !important;
}

.add-quote-overlay .input-field.has-validation .floating-label {
  color: var(--error);
}

.add-quote-overlay .quote-amount-input.has-validation .input-field {
  border-color: var(--error) !important;
}

.add-quote-overlay .quote-amount-input.has-validation .floating-label {
  color: var(--error);
}

.add-quote-overlay .input-field--rupee input {
  font-weight: 400;
}

.add-quote-overlay .input-field .floating-label {
  left: 14px;
  top: -8px;
  transform: none;
  padding: 0 2px;
  background: linear-gradient(to bottom, transparent 0, transparent 7px, #FFFFFF 7px, #FFFFFF 10px, transparent 10px);
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #5F6165;
}

.add-quote-overlay .input-icon,
.add-quote-overlay .rupee-prefix {
  width: 20px;
  height: 20px;
}

.add-quote-overlay .clear-all-btn {
  width: 88px;
  min-width: 88px;
  height: 28px;
  padding: 4px 8px;
  gap: 8px;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #26282D;
}

.add-quote-overlay .quote-amount-block {
  width: 100%;
  padding: 25px 16px;
  border-bottom: 0.5px solid rgba(158, 158, 158, 0.2);
}

.add-quote-overlay .quote-amount-input {
  width: 100%;
}

.add-quote-overlay .quote-amount-block .input-field {
  width: 100%;
}

.add-quote-overlay .quote-row {
  width: 100%;
  border-bottom: none;
}

.add-quote-overlay .quote-row-content {
  width: calc(100% - 52px);
  min-height: 68px;
  padding: 6px 16px;
  gap: 8px;
}

.add-quote-overlay .quote-row:first-child .quote-row-content,
.add-quote-overlay .quote-row:first-child .row-remove-btn {
  min-height: 68px;
}

.add-quote-overlay .quote-row-content .input-field {
  width: 100%;
}

.add-quote-overlay .status-chip {
  height: 24px;
  padding: 4px 8px;
  gap: 4px;
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
}

.add-quote-overlay .row-remove-btn {
  width: 52px;
  min-width: 52px;
  min-height: 68px;
  padding: 47px 12px 6px;
}

.add-quote-overlay .quote-row.cancellation-charge-row .quote-row-content {
  min-height: 58px;
  padding-top: 16px;
  padding-bottom: 6px;
}

.add-quote-overlay .quote-row.cancellation-charge-row .row-remove-btn {
  min-height: 58px;
  padding-top: 30px;
}

.add-quote-overlay .dialog-actions {
  width: 100%;
  height: 72px;
  min-height: 72px;
  padding: 16px;
  gap: 24px;
  border-top: 1px solid rgba(158, 158, 158, 0.2);
  border-radius: 0 0 16px 16px;
}

.add-quote-overlay .btn-secondary {
  width: 67px;
  min-width: 64px;
  height: 40px;
  padding: 8px 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #26282D;
}

.add-quote-overlay .btn-primary {
  width: 127px;
  min-width: 64px;
  height: 40px;
  padding: 8px 12px;
  background: #26282D;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}

.add-quote-overlay .left-panel::-webkit-scrollbar,
.add-quote-overlay .right-panel::-webkit-scrollbar {
  width: 14px;
}

.add-quote-overlay .left-panel::-webkit-scrollbar-track,
.add-quote-overlay .right-panel::-webkit-scrollbar-track {
  background: transparent;
}

.add-quote-overlay .left-panel::-webkit-scrollbar-thumb,
.add-quote-overlay .right-panel::-webkit-scrollbar-thumb {
  border: 4px solid transparent;
  border-radius: 999px;
  background-clip: padding-box;
  background-color: rgba(63, 65, 68, 0.18);
}


.badge.badge-quote-accepted{ color: #0B4A6F ; background: #E0F2FE }
.badge.badge-ftl-draft{ color: var(--txtPrimary); background: #9E9E9E29;}
.badge.badge-ftl-quote-requested{ color: var(--warningDark); background: #F7900929;}
.badge.badge-ftl-quoted{ color: var(--infoDark); background: var(--info12);}
.badge.badge-ftl-cancelled{ color: #FFF5F1; background: #B42318;}
.badge.badge-ftl-in-transit{ color: #FFF6ED; background: #C4320A;}
.badge.badge-ftl-scheduled{ color: #F4F3FF; background: #5925DC;}
.theme-datatable table#ftlOrderTable > thead > tr > th > .search-wrapper input{ border: none; border-bottom: 1px solid var(--borderColor); background: none; font-size: 12px; font-weight: 500; color: var(--txtGrey); border-radius: 0; margin-top:9px; width: 100%; color: var(--txtPrimary);}
.theme-datatable table#ftlOrderTable > thead > tr > th > .search-wrapper input::placeholder{ color: var(--txtGrey); opacity: 1;}
.theme-datatable table#ftlOrderTable > thead > tr > th > select{ padding-right: 28px;}
.theme-datatable table#ftlOrderTable > thead > tr > th .priority-selectpckr > .btn{ padding-right: 30px;}
.theme-datatable table#ftlOrderTable > thead > tr > th .clear-btn{ position: absolute; bottom: 2px; right: 0; border: none; background: none;}
.theme-datatable table#ftlOrderTable > thead > tr > th .clear-select-btn{ position: absolute; bottom: 2px; right: 17px; border: none; background: none;}
.theme-datatable table#ftlOrderTable > thead > tr > th > select ~ .clear-btn{ right: 37px;}
.theme-datatable table#ftlOrderTable > thead > tr > th > .priority-select ~ .clear-btn{ right: 37px;}

.sidebar-menu > li > .submenu-trigger-btn img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(8%) saturate(886%) hue-rotate(185deg) brightness(96%) contrast(89%);
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

div.bs-container.form-select,
div.bs-container.form-control {
  background: none !important;
  border: none !important;
  height: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.finance-account-truncate {
  max-width: 180px;
}

.address-truncate {
  max-width: 300px;
}

.finance-summary-truncate {
  max-width: 300px;
}

.finance-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}



.range-filter-dropdown {
  overflow-x: hidden;
}

.range-error-msg {
  display: none;
  align-items: flex-start;
  gap: 8px;
  padding: 0 8px 12px 8px;
  box-sizing: border-box;
  width: 100%;
}

.range-error-msg.show {
  display: flex;
}

.range-error-msg span {
  font-size: 13px;
  font-weight: 500;
  color: var(--error);
  line-height: 18px;
  word-break: break-word;
}

input[type="number"].range-input-field::-webkit-outer-spin-button,
input[type="number"].range-input-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"].range-input-field {
  -moz-appearance: textfield;
}

nput[type="number"].range-input-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"].range-input-field {
  -moz-appearance: textfield;
}

.range-filter-wrapper{ position: relative; width: 100%; margin-top: 9px;}
.range-filter-trigger{ display: flex; align-items: center; justify-content: space-between; cursor: pointer; border-bottom: 1px solid var(--borderColor) !important; font-size: 12px; color: var(--txtGrey); font-weight: 500; background: transparent; user-select: none; transition: border-color 0.2s; text-transform: none !important;}
.range-trigger-label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-right: 24px; }
.range-filter-trigger .dropdown-icon{ width: 8px; height: 8px; transition: transform 0.2s;}
.range-filter-wrapper.active .range-filter-trigger .dropdown-icon{ transform: rotate(180deg);}
.range-filter-wrapper .clear-select-btn{ position: absolute; right: 20px; top: 50%; transform: translateY(-50%); background: none; border: none; padding: 0; display: none; align-items: center; cursor: pointer; z-index: 5;}
.range-filter-dropdown{ display: flex; flex-direction: column; align-items: center; padding: 16px 8px 8px 8px; gap: 12px; position: absolute; width: 252px; max-height: 392px; overflow-y: auto; right: 0; top: calc(100% + 4px); background: #FFFFFF; box-shadow: -40px 40px 80px -8px rgba(0, 0, 0, 0.24); border-radius: 8px; z-index: 1050; border: 1px solid var(--borderColor);}
.range-inputs-row{ display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 8px; padding: 0 8px;}
.range-input-field{ width: 96px; height: 36px; border: 1px solid var(--borderColor); border-radius: 8px; outline: none; padding: 0 8px; font-size: 13px; color: var(--txtPrimary); text-align: center; transition: border-color 0.2s;}
.range-input-field:focus{ border-color: var(--brand);}
.range-input-field::placeholder{ color: var(--txtGrey); font-size: 11px;}
.range-sep{ font-size: 14px; color: var(--txtGrey); font-weight: 500;}
.range-or-divider{ display: flex; align-items: center; width: 100%; padding: 0 8px;}
.range-or-divider .line{ flex: 1; height: 1px; background-color: var(--borderColor);}
.range-or-divider .text{ padding: 0 8px; font-size: 11px; font-weight: 600; color: var(--txtGrey); text-transform: uppercase;}
.predefined-ranges-list{ width: 100%; display: flex; flex-direction: column; gap: 4px;}
.predefined-range-item{ display: flex; align-items: center; justify-content: space-between; padding: 6px 8px; border-radius: 6px; cursor: pointer; transition: background-color 0.2s; user-select: none; text-transform: none !important;}
.predefined-range-item:hover{ background-color: #f5f5f5;}
.predefined-range-left{ display: flex; align-items: center; gap: 10px;}
.range-custom-radio{ width: 20px; height: 20px; min-width: 20px; border: 2px solid #919EAB; border-radius: 50%; display: inline-block; position: relative; transition: border-color 0.2s;}
.predefined-range-item.active .range-custom-radio{ border-color: #8C1D18;}
.predefined-range-item.active .range-custom-radio::after{ content: ""; width: 10px; height: 10px; background-color: #8C1D18; border-radius: 50%; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);}
.predefined-range-label-text{ font-size: 13px; font-weight: 500; color: var(--txtPrimary); white-space: nowrap;}
.predefined-range-count{ font-size: 12px; font-weight: 500; color: var(--txtGrey);}
.ftlod-order-header-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.ftlod-order-header-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ftlod-order-header-updated-row {
  display: flex;
  align-items: center;
}

.ftlod-order-header-updated-text {
  font-size: 11px;
  color: #5F6165;
  text-transform: uppercase;
  font-weight: 600;
}
