@charset "UTF-8";
/*
 * TMT application stylesheet.
 *
 * This entry follows the Sass 7-1 directory model while preserving the
 * established cascade order. Keep Material Dashboard vendor source under
 * ../material-dashboard; application styles belong under ./tmt.
 */
/*
 * TMT UI overrides.
 * Keep this file small and loaded after the Material Dashboard stylesheet.
 */
:root {
  --tmt-color-surface: #ffffff;
  --tmt-color-muted: #7b809a;
  --tmt-color-brand: #e91e63;
  --tmt-color-heading: #344767;
  --tmt-color-border-light: #e9ecef;
  --tmt-dropdown-surface: #ffffff;
  --tmt-dropdown-surface-muted: #f8f9fa;
  --tmt-dropdown-text: #344767;
  --tmt-dropdown-muted: #7b809a;
  --tmt-dropdown-border: #e9ecef;
  --tmt-dropdown-inline-size: 16.25rem;
  --tmt-dropdown-item-min-height: 2.75rem;
  --tmt-dropdown-radius: 0.75rem;
  --tmt-dropdown-shadow: 0 0.75rem 1.75rem rgba(17, 24, 39, 0.16);
}

body.dark-version,
[data-bs-theme=dark] {
  --tmt-dropdown-surface: #202940;
  --tmt-dropdown-surface-muted: #28334f;
  --tmt-dropdown-text: #f8f9fa;
  --tmt-dropdown-muted: #c7cbe0;
  --tmt-dropdown-border: rgba(255, 255, 255, 0.14);
  --tmt-dropdown-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.36);
}

.form-control,
.form-select {
  border: 1px solid #D1D5DB;
  border-radius: 6px;
}

.form-control:focus,
.form-select:focus {
  border: 1px solid #D1D5DB;
  box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.08);
  outline: 0;
}

.tmt-employee-edit-offcanvas .form-control,
.tmt-employee-edit-offcanvas .form-select {
  min-height: 42px;
}

.tmt-employee-edit-offcanvas textarea.form-control {
  min-height: 108px;
}

.tmt-shift-form-modal .modal-dialog {
  max-width: min(1100px, 100vw - 2rem);
}

.tmt-shift-form-modal .modal-content {
  height: min(860px, 100vh - 2rem);
}

.tmt-shift-form-modal .modal-body {
  min-height: 0;
  overscroll-behavior: contain;
}

.tmt-shift-form-modal .form-control,
.tmt-shift-form-modal .form-select {
  min-height: 42px;
}

.tmt-form-field .input-group.input-group-outline {
  min-height: 42px;
}

.tmt-form-field {
  margin-bottom: 1rem;
  width: 100%;
}

.tmt-form-field .input-group {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.tmt-form-field .input-group.input-group-static {
  min-height: 42px;
}

.tmt-form-field .input-group.is-invalid::before,
.tmt-form-field .input-group.is-invalid::after {
  border-color: var(--bs-danger);
}

.tmt-form-field .form-label {
  margin-bottom: 0;
}

.tmt-exception-deduction-row {
  min-height: 42px;
}
.tmt-exception-deduction-row .form-control {
  text-align: center;
}
.tmt-exception-deduction-row > .tmt-exception-deduction-row__lead {
  flex: 0 0 11.5rem;
  max-width: 11.5rem;
}
.tmt-exception-deduction-row > .col {
  flex: 0 1 7rem;
  min-width: 5rem;
  max-width: 7rem;
}

.tmt-calculation-rules-accordion input.form-control {
  text-align: center;
}

.tmt-missing-punch-row {
  min-height: 42px;
}
.tmt-missing-punch-row > .tmt-missing-punch-row__lead {
  flex: 0 0 11.5rem;
  max-width: 11.5rem;
}
.tmt-missing-punch-row > .tmt-missing-punch-row__policy {
  flex: 0 1 9rem;
  min-width: 7rem;
  max-width: 9rem;
}
.tmt-missing-punch-row > .tmt-missing-punch-row__minutes {
  flex: 0 1 7rem;
  min-width: 5rem;
  max-width: 7rem;
}

@media (max-width: 575.98px) {
  .tmt-mobile-optional-copy {
    display: none !important;
  }
}
.tmt-icon-dropdown {
  background: var(--tmt-dropdown-surface) !important;
  border: 1px solid var(--tmt-dropdown-border);
  border-radius: var(--tmt-dropdown-radius);
  box-shadow: var(--tmt-dropdown-shadow);
  color: var(--tmt-dropdown-text);
  max-width: calc(100vw - 2rem);
  min-width: var(--tmt-dropdown-inline-size);
  padding: 0.5rem !important;
}

.tmt-icon-dropdown__trigger-icon {
  font-size: 20px;
}

.tmt-icon-dropdown__trigger-icon--sm {
  font-size: 16px;
}

.tmt-icon-dropdown .dropdown-item {
  cursor: pointer;
  gap: 0;
  padding: 0.55rem 0.75rem;
  white-space: normal;
}

.tmt-dropdown-mobile-header {
  display: none;
}

.tmt-icon-dropdown__icon {
  color: var(--tmt-dropdown-muted);
  flex: 0 0 20px;
  font-size: 20px;
  margin-right: 0.5rem;
  text-align: center;
}

.tmt-icon-dropdown .tmt-command-checkbox {
  flex: 0 0 auto;
  margin-left: 0.75rem !important;
}

.tmt-icon-dropdown .dropdown-header {
  background: var(--tmt-dropdown-surface-muted);
  border-radius: calc(var(--tmt-dropdown-radius) - 0.25rem);
  color: var(--tmt-dropdown-text);
  margin-bottom: 0.35rem;
}

.tmt-icon-dropdown .dropdown-item {
  color: var(--tmt-dropdown-text);
}

.tmt-icon-dropdown .dropdown-item:hover,
.tmt-icon-dropdown .dropdown-item:focus {
  background: var(--tmt-dropdown-surface-muted);
  color: var(--tmt-dropdown-text);
}

.tmt-page-navigation .dropdown-item {
  align-items: center;
  display: grid !important;
  grid-template-columns: 24px minmax(0, auto);
  justify-content: center !important;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.tmt-page-navigation .tmt-icon-dropdown__icon {
  display: block;
  height: 24px;
  justify-self: start;
  line-height: 24px;
  margin-right: 0;
  position: static;
  width: 24px;
}

.tmt-page-navigation .dropdown-item > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.dropdown .tmt-page-navigation::before {
  content: none !important;
  display: none !important;
}

.tmt-column-filter-dropdown {
  backdrop-filter: none !important;
  background-color: var(--tmt-dropdown-surface) !important;
  background-image: none !important;
  border: 1px solid var(--tmt-dropdown-border);
  filter: none !important;
  isolation: isolate;
  mix-blend-mode: normal;
  box-shadow: var(--tmt-dropdown-shadow);
  color: var(--tmt-dropdown-text);
  max-height: min(32rem, 100vh - 2rem);
  min-width: var(--tmt-dropdown-inline-size);
  overflow-y: auto;
}

.dropdown .tmt-column-filter-dropdown.show,
.dropdown .tmt-filter-dropdown-menu.show {
  background-color: var(--tmt-dropdown-surface) !important;
  background-image: none !important;
  filter: none !important;
  opacity: 1 !important;
}

.dropdown .tmt-column-filter-dropdown.show {
  margin: 0 !important;
  transform: none !important;
}

.dropdown .tmt-column-filter-dropdown::before,
.dropdown .tmt-filter-dropdown-menu::before {
  color: var(--tmt-dropdown-surface) !important;
}

.tmt-column-filter-dropdown .dropdown-item {
  border-radius: calc(var(--tmt-dropdown-radius) - 0.25rem);
  color: var(--tmt-dropdown-text);
}

.tmt-column-filter-dropdown .dropdown-item:hover,
.tmt-column-filter-dropdown .dropdown-item:focus {
  background-color: var(--tmt-dropdown-surface-muted);
  color: var(--tmt-dropdown-text);
}

.tmt-column-filter-dropdown .form-select,
.tmt-column-filter-dropdown .form-control {
  background-color: var(--tmt-dropdown-surface-muted);
  border-color: var(--tmt-dropdown-border);
  color: var(--tmt-dropdown-text);
  font-size: 0.8125rem;
}

.tmt-filter-dropdown-menu {
  backdrop-filter: none !important;
  background-color: var(--tmt-dropdown-surface) !important;
  background-image: none !important;
  border: 1px solid var(--tmt-dropdown-border);
  filter: none !important;
  isolation: isolate;
  mix-blend-mode: normal;
  box-shadow: var(--tmt-dropdown-shadow);
  color: var(--tmt-dropdown-text);
  max-height: min(32rem, 100vh - 2rem);
  min-width: var(--tmt-dropdown-inline-size);
  overflow-y: auto;
  padding: 0.5rem !important;
}

.tmt-filter-dropdown-menu .dropdown-header {
  background-color: var(--tmt-dropdown-surface-muted);
  border-radius: calc(var(--tmt-dropdown-radius) - 0.25rem);
  color: var(--tmt-dropdown-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  margin-bottom: 0.35rem;
  padding: 0.7rem 0.8rem;
  text-transform: uppercase;
}

.tmt-filter-dropdown-menu .dropdown-item {
  border-radius: calc(var(--tmt-dropdown-radius) - 0.25rem);
  color: var(--tmt-dropdown-text);
}

.tmt-filter-dropdown-menu .dropdown-item:hover,
.tmt-filter-dropdown-menu .dropdown-item:focus {
  background-color: var(--tmt-dropdown-surface-muted);
  color: var(--tmt-dropdown-text);
}

.tmt-filter-dropdown-menu .form-control,
.tmt-filter-dropdown-menu .form-select {
  background-color: var(--tmt-dropdown-surface-muted);
  border-color: var(--tmt-dropdown-border);
  color: var(--tmt-dropdown-text);
}

.tmt-column-filter-dropdown .form-label,
.tmt-filter-dropdown-menu .form-label,
.tmt-filter-dropdown-menu .text-secondary,
.tmt-column-filter-dropdown .text-secondary,
.tmt-column-filter-dropdown .tmt-icon-dropdown__icon,
.tmt-filter-dropdown-menu .tmt-icon-dropdown__icon {
  color: var(--tmt-dropdown-text) !important;
}

.tmt-filter-dropdown-menu .dropdown-divider {
  border-color: var(--tmt-dropdown-border);
  margin: 0.45rem 0;
  opacity: 1;
}

.tmt-column-filter-dropdown .dropdown-divider {
  border-color: var(--tmt-dropdown-border);
  opacity: 1;
}

@media (max-width: 575.98px) {
  .dropdown .tmt-filter-dropdown-menu.show,
  .dropdown .tmt-column-filter-dropdown.show,
  .dropdown .tmt-table-toolbar-dropdown.show,
  .dropdown .tmt-page-navigation.show {
    bottom: max(1rem, env(safe-area-inset-bottom)) !important;
    left: 1rem !important;
    margin: 0;
    max-height: calc(100dvh - 2rem);
    max-width: none;
    min-width: 0;
    overflow-y: auto;
    position: fixed !important;
    right: 1rem !important;
    top: auto !important;
    transform: none !important;
    width: auto;
    z-index: 10001;
  }
  .dropdown .tmt-filter-dropdown-menu.show::before,
  .dropdown .tmt-column-filter-dropdown.show::before,
  .dropdown .tmt-table-toolbar-dropdown.show::before,
  .dropdown .tmt-page-navigation.show::before {
    content: none !important;
    display: none !important;
  }
  .dropdown .tmt-page-navigation.show {
    background-color: var(--tmt-dropdown-surface) !important;
    background-image: none !important;
    border: 1px solid var(--tmt-dropdown-border);
    border-radius: var(--tmt-dropdown-radius);
  }
  .tmt-filter-dropdown-menu .btn,
  .tmt-filter-dropdown-menu .dropdown-item,
  .tmt-filter-dropdown-menu .form-control,
  .tmt-filter-dropdown-menu .form-select,
  .tmt-column-filter-dropdown .btn,
  .tmt-column-filter-dropdown .dropdown-item,
  .tmt-column-filter-dropdown .form-control,
  .tmt-column-filter-dropdown .form-select,
  .tmt-table-toolbar-dropdown .btn,
  .tmt-table-toolbar-dropdown .dropdown-item,
  .tmt-table-toolbar-dropdown .form-control,
  .tmt-table-toolbar-dropdown .form-select,
  .tmt-page-navigation .dropdown-item,
  .tmt-dropdown-tooltip-trigger > .btn:not(.tmt-column-filter-trigger) {
    min-height: var(--tmt-dropdown-item-min-height);
  }
  .tmt-dropdown-tooltip-trigger > .btn:not(.tmt-column-filter-trigger) {
    min-width: 44px;
  }
  .tmt-icon-dropdown.show > .tmt-dropdown-mobile-header {
    position: sticky;
    z-index: 2;
    top: -0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    margin: -0.5rem -0.5rem 0.5rem;
    padding: 0.25rem 0.25rem 0.25rem 0.75rem;
    border-bottom: 1px solid var(--tmt-dropdown-border);
    background: var(--tmt-dropdown-surface);
    color: var(--tmt-dropdown-text);
    font-size: 0.8125rem;
    font-weight: 700;
  }
  .tmt-dropdown-mobile-close {
    display: inline-grid;
    flex: 0 0 44px;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--tmt-dropdown-muted);
  }
  .tmt-dropdown-mobile-close:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -4px;
  }
}
.tmt-metric-icon.icon-shape > i {
  position: static;
  top: auto;
}

.tmt-metric-action-link {
  font-weight: 400;
  text-decoration: none;
  text-transform: none;
}

@media (max-width: 575.98px) {
  .row > [class*=col]:has(> .tmt-metric) {
    flex: 0 0 auto;
    max-width: 50%;
    width: 50%;
  }
  .tmt-metric {
    border-color: #dee2e6 !important;
    box-shadow: none;
    gap: 0.625rem !important;
    min-height: 4.5rem;
    padding: 0.75rem !important;
  }
  .tmt-metric-icon.icon-shape {
    flex: 0 0 2rem;
    height: 2rem;
    min-height: 2rem;
    min-width: 2rem;
    width: 2rem;
  }
  .tmt-metric-icon.icon-shape > i {
    font-size: 1rem;
    line-height: 1;
  }
  .tmt-metric-icon.icon-shape > svg {
    height: 1rem;
    width: 1rem;
  }
  .tmt-metric__content {
    min-width: 0;
  }
  .tmt-metric__label {
    display: -webkit-box;
    font-size: 0.6875rem !important;
    line-height: 1.2;
    overflow: hidden;
    text-transform: none !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .tmt-metric__value {
    font-size: 1.25rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }
  .tmt-metric__meta {
    display: none;
  }
  .tmt-metric--with-action {
    min-height: 5.5rem;
    padding-bottom: 2rem !important;
  }
  .tmt-metric__action {
    padding: 0.375rem 0.75rem !important;
  }
  .tmt-metric__action .tmt-metric-action-link {
    font-size: 0.6875rem !important;
  }
}
.tmt-daily-timesheet-table thead,
.tmt-daily-timesheet-table thead tr,
.tmt-daily-timesheet-table thead th,
.tmt-daily-timesheet-table thead th > span {
  filter: none !important;
  opacity: 1 !important;
}

.tmt-table-toolbar-dropdown {
  min-width: 280px;
}

.tmt-table-search {
  flex: 1 1 240px;
  max-width: 440px;
  min-width: 0;
}

.tmt-table-search > .material-icons-round {
  font-size: 18px;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.tmt-table-search > .form-control {
  padding-left: 2.35rem;
  width: 100%;
}

.tmt-device-table-toolbar {
  flex: 1 1 480px;
  justify-content: flex-end;
  min-width: 0;
}

.tmt-table-action-group {
  white-space: nowrap;
}

.tmt-raw-log-toolbar {
  min-width: 0;
}

.tmt-raw-log-toolbar .tmt-bulk-selection-summary {
  margin-left: 0;
}

.tmt-bulk-selection-summary {
  flex: 0 0 auto;
  margin-left: auto;
}

.tmt-bulk-selection-summary__actions {
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 0.25rem;
}

.tmt-bulk-selection-summary__actions > * + *::before {
  color: var(--tmt-color-muted);
  content: "·";
  display: inline-block;
  margin: 0 0.4rem;
}

.tmt-table-pagination {
  min-height: 64px;
}

.tmt-table-pagination__per-page {
  min-width: 78px;
  width: 78px;
}

.tmt-table-pagination .page-link {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0.375rem;
  color: var(--tmt-color-muted);
  display: inline-flex;
  height: 32px;
  justify-content: center;
  min-width: 32px;
  padding: 0.25rem 0.5rem;
}

.tmt-table-pagination .page-item.active .page-link {
  background: var(--tmt-color-brand);
  color: #fff;
}

.tmt-table-pagination .page-item.disabled .page-link {
  color: #adb5bd;
  opacity: 0.65;
}

@media (max-width: 767.98px) {
  .tmt-device-table-toolbar {
    flex-basis: 100%;
    justify-content: stretch;
    width: 100%;
  }
  .tmt-device-table-toolbar .tmt-table-search {
    max-width: none;
    width: 100%;
  }
  .tmt-table-action-group {
    margin-left: auto;
  }
}
@media (max-width: 575.98px) {
  .tmt-table-pagination {
    min-width: 0;
    width: 100%;
  }
  .tmt-table-pagination__summary {
    justify-content: space-between;
    min-width: 0;
    width: 100%;
  }
  .tmt-table-pagination__mobile-nav {
    min-width: 0;
    width: 100%;
  }
  .tmt-table-pagination__mobile-nav .pagination {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    width: 100%;
  }
  .tmt-table-pagination .tmt-table-pagination__mobile-nav .page-link {
    height: 44px;
    min-width: 44px;
  }
  .tmt-table-pagination__mobile-status {
    min-width: 0;
  }
  .tmt-table-pagination .tmt-table-pagination__mobile-status .page-link {
    color: var(--tmt-color-text);
    min-width: 0;
    white-space: nowrap;
    width: 100%;
  }
  .tmt-table-search {
    flex: 0 0 auto;
    max-width: none;
    min-height: 44px;
    width: 100%;
  }
  .tmt-table-search > .form-control {
    min-height: 44px;
  }
  .tmt-device-table-toolbar {
    gap: 0.75rem !important;
  }
  .tmt-device-table-toolbar .tmt-table-search > .form-control {
    min-height: 44px;
  }
  .tmt-device-table-toolbar .tmt-table-action-group {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: 0;
    width: 100%;
  }
  .tmt-device-table-toolbar .tmt-table-action-group > .btn,
  .tmt-device-table-toolbar .tmt-table-action-group > .dropdown,
  .tmt-device-table-toolbar .tmt-table-action-group > .dropdown > .btn {
    min-width: 0;
    width: 100%;
  }
  .tmt-device-table-toolbar .tmt-table-action-group > .btn,
  .tmt-device-table-toolbar .tmt-table-action-group > .dropdown > .btn {
    align-items: center;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    min-height: 44px;
  }
}
.tmt-company-outline__viewport {
  min-height: 34rem;
  max-height: calc(100vh - 16rem);
  overflow: auto;
  padding: 1rem;
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
  background: #f8f9fa;
  overscroll-behavior: contain;
}

.tmt-company-outline,
.tmt-company-outline__children {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tmt-company-outline {
  min-width: 40rem;
}

.tmt-company-outline__item {
  position: relative;
}

.tmt-company-outline__row {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 3.5rem;
}

.tmt-company-outline__children {
  position: relative;
  margin-left: 1.1rem;
  padding-left: 2rem;
}

.tmt-company-outline__children::before {
  position: absolute;
  top: 0;
  bottom: 1.75rem;
  left: 0.75rem;
  width: 1px;
  background: #c7ceda;
  content: "";
}

.tmt-company-outline__children > .tmt-company-outline__item > .tmt-company-outline__row::before {
  position: absolute;
  top: 50%;
  left: -1.25rem;
  width: 1.25rem;
  height: 1px;
  background: #c7ceda;
  content: "";
}

.tmt-company-outline__toggle,
.tmt-company-outline__toggle-placeholder {
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 1.75rem;
  margin-right: 0.35rem;
}

.tmt-company-outline__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0.35rem;
  color: #7b809a;
  background: transparent;
}

.tmt-company-outline__toggle:hover,
.tmt-company-outline__toggle:focus-visible {
  color: #344767;
  background: #e9edf3;
  outline: none;
}

.tmt-company-outline__toggle i {
  font-size: 1.2rem;
}

.tmt-company-outline__node {
  display: flex;
  flex: 1;
  min-width: 0;
  max-width: 52rem;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 0.6rem;
  color: #344767;
  background: transparent;
  text-align: left;
  transition: border-color 140ms ease, background-color 140ms ease;
}

.tmt-company-outline__node:hover,
.tmt-company-outline__node:focus-visible,
.tmt-company-outline__node.is-search-match {
  border-color: #d8dee8;
  background: #fff;
  outline: none;
}

.tmt-company-outline__node.is-search-match {
  border-color: #e91e63;
  box-shadow: 0 0.25rem 0.75rem rgba(233, 30, 99, 0.12);
}

.tmt-company-outline__node--company {
  color: #fff;
  background: #344767;
}

.tmt-company-outline__node--company:hover,
.tmt-company-outline__node--company:focus-visible {
  border-color: #344767;
  background: #344767;
}

.tmt-company-outline__node--employee {
  max-width: 46rem;
}

.tmt-company-outline__avatar,
.tmt-company-outline__icon {
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 2.25rem;
  border-radius: 50%;
}

.tmt-company-outline__avatar {
  -o-object-fit: cover;
     object-fit: cover;
}

.tmt-company-outline__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #344767;
  background: #e9edf3;
}

.tmt-company-outline__detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 3.5rem;
  border-radius: 50%;
  color: #344767;
  background: #e9edf3;
}

.tmt-company-outline__node--company .tmt-company-outline__icon {
  background: #fff;
}

.tmt-company-outline__copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.tmt-company-outline__copy strong {
  overflow: hidden;
  font-size: 0.8rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tmt-company-outline__copy small {
  overflow: hidden;
  margin-top: 0.1rem;
  color: #7b809a;
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tmt-company-outline__node--company .tmt-company-outline__copy small {
  color: rgba(255, 255, 255, 0.72);
}

.tmt-company-outline__count {
  margin-left: auto;
  color: #7b809a;
  font-size: 0.7rem;
  white-space: nowrap;
}

.tmt-company-outline__employee-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  margin-left: 0.35rem;
  padding: 0;
  border: 0;
  border-radius: 0.4rem;
  color: #7b809a;
  background: transparent;
}

.tmt-company-outline__employee-toggle:hover,
.tmt-company-outline__employee-toggle:focus-visible,
.tmt-company-outline__employee-toggle[aria-pressed=true] {
  color: #344767;
  background: #e9edf3;
  outline: none;
}

.tmt-company-outline__employee-toggle i {
  font-size: 1.15rem;
}

.tmt-company-outline__item.is-collapsed > .tmt-company-outline__children {
  display: none;
}

.tmt-collapse-indicator {
  font-size: 18px;
  transition: transform 180ms ease;
}

[aria-expanded=true] > .tmt-collapse-indicator {
  transform: rotate(180deg);
}

.tmt-company-outline__empty {
  min-height: 20rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 767.98px) {
  .tmt-standard-offcanvas.tmt-company-outline__detail-panel {
    top: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    width: calc(100vw - 1rem);
    height: calc(100% - 1rem);
    max-height: calc(100% - 1rem);
  }
  @supports (height: 100dvh) {
    .tmt-standard-offcanvas.tmt-company-outline__detail-panel {
      height: calc(100dvh - 1rem);
      max-height: calc(100dvh - 1rem);
    }
  }
  .tmt-company-outline__detail-panel .offcanvas-header {
    flex: 0 0 auto;
  }
  .tmt-company-outline__detail-panel .offcanvas-body {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .tmt-company-outline__viewport {
    min-height: 28rem;
    overflow-x: hidden;
    padding: 0.5rem;
  }
  .tmt-company-outline {
    width: 100%;
    min-width: 0;
  }
  .tmt-company-outline__children {
    margin-left: 0;
    padding-left: 1rem;
  }
  .tmt-company-outline__children::before {
    left: 0.35rem;
  }
  .tmt-company-outline__children > .tmt-company-outline__item > .tmt-company-outline__row::before {
    left: -0.65rem;
    width: 0.65rem;
  }
  .tmt-company-outline__row {
    width: 100%;
    min-width: 0;
  }
  .tmt-company-outline__toggle,
  .tmt-company-outline__toggle-placeholder {
    width: 1.5rem;
    height: 1.5rem;
    flex-basis: 1.5rem;
    margin-right: 0.2rem;
  }
  .tmt-company-outline__node {
    width: 0;
    padding: 0.4rem 0.5rem;
  }
  .tmt-company-outline__avatar,
  .tmt-company-outline__icon {
    width: 2rem;
    height: 2rem;
    flex-basis: 2rem;
  }
  .tmt-company-outline__count {
    max-width: 5.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .tmt-company-outline__employee-toggle {
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    margin-left: 0.2rem;
  }
}
.tmt-data-table-wrap {
  max-height: 65vh;
  overflow: auto;
  position: relative;
}

.tmt-data-table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 100%;
  width: -moz-max-content;
  width: max-content;
}

.tmt-data-table thead th {
  background: var(--tmt-color-surface);
  box-shadow: inset 0 -1px 0 var(--tmt-color-border-light);
}

.tmt-data-table--split thead th {
  position: sticky;
  top: 0;
  z-index: 6;
}

.tmt-data-table--split.tmt-employee-table th:nth-child(-n+3),
.tmt-data-table--split.tmt-employee-table td:nth-child(-n+3),
.tmt-data-table--split.tmt-employee-table--with-select th:nth-child(-n+4),
.tmt-data-table--split.tmt-employee-table--with-select td:nth-child(-n+4) {
  background: var(--tmt-color-surface);
  position: sticky;
  z-index: 4;
}

.tmt-data-table--split.tmt-employee-table thead th:nth-child(-n+3),
.tmt-data-table--split.tmt-employee-table--with-select thead th:nth-child(-n+4) {
  z-index: 8;
}

.tmt-data-table--split.tmt-employee-table:not(.tmt-employee-table--with-select) th:nth-child(1),
.tmt-data-table--split.tmt-employee-table:not(.tmt-employee-table--with-select) td:nth-child(1) {
  left: 0;
  min-width: 64px;
}

.tmt-data-table--split.tmt-employee-table:not(.tmt-employee-table--with-select) th:nth-child(2),
.tmt-data-table--split.tmt-employee-table:not(.tmt-employee-table--with-select) td:nth-child(2) {
  left: 64px;
  min-width: 140px;
}

.tmt-data-table--split.tmt-employee-table:not(.tmt-employee-table--with-select) th:nth-child(3),
.tmt-data-table--split.tmt-employee-table:not(.tmt-employee-table--with-select) td:nth-child(3) {
  box-shadow: inset -1px 0 0 var(--tmt-color-border-light);
  left: 204px;
  min-width: 240px;
}

.tmt-data-table--split.tmt-employee-table--with-select th:nth-child(1),
.tmt-data-table--split.tmt-employee-table--with-select td:nth-child(1) {
  left: 0;
  min-width: 52px;
}

.tmt-data-table--split.tmt-employee-table--with-select th:nth-child(2),
.tmt-data-table--split.tmt-employee-table--with-select td:nth-child(2) {
  left: 52px;
  min-width: 64px;
}

.tmt-data-table--split.tmt-employee-table--with-select th:nth-child(3),
.tmt-data-table--split.tmt-employee-table--with-select td:nth-child(3) {
  left: 116px;
  min-width: 140px;
}

.tmt-data-table--split.tmt-employee-table--with-select th:nth-child(4),
.tmt-data-table--split.tmt-employee-table--with-select td:nth-child(4) {
  box-shadow: inset -1px 0 0 var(--tmt-color-border-light);
  left: 256px;
  min-width: 240px;
}

.tmt-data-table--split.tmt-device-table th:first-child,
.tmt-data-table--split.tmt-device-table td:first-child {
  background: var(--tmt-color-surface);
  box-shadow: inset -1px 0 0 var(--tmt-color-border-light);
  left: 0;
  min-width: 280px;
  position: sticky;
  z-index: 4;
}

.tmt-data-table--split.tmt-device-table thead th:first-child {
  z-index: 8;
}

.tmt-data-table--split.tmt-leave-table th:first-child,
.tmt-data-table--split.tmt-leave-table td:first-child {
  background: var(--tmt-color-surface);
  box-shadow: inset -1px 0 0 var(--tmt-color-border-light);
  left: 0;
  min-width: 280px;
  position: sticky;
  z-index: 4;
}

.tmt-data-table--split.tmt-leave-table thead th:first-child {
  z-index: 8;
}

.tmt-data-table--split.tmt-daily-timesheet-table th:nth-child(-n+2),
.tmt-data-table--split.tmt-daily-timesheet-table tr:not(.tmt-daily-timesheet-table__department-row) td:nth-child(-n+2) {
  background: var(--tmt-color-surface);
  position: sticky;
  z-index: 6;
}

.tmt-data-table--split.tmt-daily-timesheet-table th:nth-child(1),
.tmt-data-table--split.tmt-daily-timesheet-table tr:not(.tmt-daily-timesheet-table__department-row) td:nth-child(1) {
  left: 0;
  min-width: 120px;
  width: 120px;
}

.tmt-data-table--split.tmt-daily-timesheet-table th:nth-child(2),
.tmt-data-table--split.tmt-daily-timesheet-table tr:not(.tmt-daily-timesheet-table__department-row) td:nth-child(2) {
  box-shadow: 1px 0 0 var(--tmt-color-border-light);
  left: 120px;
  min-width: 240px;
  width: 240px;
}

.tmt-data-table--split.tmt-daily-timesheet-table thead th:nth-child(-n+2) {
  z-index: 8;
}

.tmt-daily-timesheet-table thead th {
  height: 52px;
}

.tmt-data-table--split.tmt-daily-timesheet-table:not(.tmt-daily-timesheet-table--horizontal-split) thead th {
  top: auto;
}

.tmt-daily-timesheet-table--horizontal-split thead th {
  position: sticky;
  top: 0;
  z-index: 9;
}

.tmt-daily-timesheet-table--sticky-departments .tmt-daily-timesheet-table__department-row td {
  position: sticky;
  top: 52px;
  z-index: 8;
}

.tmt-daily-timesheet-table__select {
  min-width: 52px;
  width: 52px;
}

.tmt-daily-timesheet-table__editable-cell {
  transition: background-color 0.16s ease, box-shadow 0.16s ease;
}

.tmt-daily-timesheet-table__cell-edit.btn {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(52, 71, 103, 0.16);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(52, 71, 103, 0.14);
  display: inline-flex;
  height: 1.65rem;
  justify-content: center;
  left: calc(100% + 0.3rem);
  opacity: 0;
  padding: 0 !important;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  transition: opacity 0.14s ease, transform 0.14s ease, color 0.14s ease;
  width: 1.65rem;
  z-index: 2;
}
.tmt-daily-timesheet-table__cell-edit.btn .material-icons-round {
  font-size: 0.9rem;
}

.tmt-daily-timesheet-table__editable-cell:hover,
.tmt-daily-timesheet-table__editable-cell:focus-within {
  background-color: rgba(26, 115, 232, 0.045);
  box-shadow: inset 0 0 0 1px rgba(26, 115, 232, 0.12);
}

.tmt-daily-timesheet-table__editable-cell:hover .tmt-daily-timesheet-table__cell-edit,
.tmt-daily-timesheet-table__editable-cell:focus-within .tmt-daily-timesheet-table__cell-edit,
.tmt-daily-timesheet-table__cell-edit:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.tmt-daily-timesheet-table__adjustment-breakdown {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
.tmt-daily-timesheet-table__adjustment-breakdown p {
  font-size: 0.65rem;
}

.tmt-daily-timesheet-table__row-action.btn {
  align-items: center;
  display: inline-flex;
  height: 1.5rem;
  justify-content: center;
  width: 1.5rem;
}
.tmt-daily-timesheet-table__row-action.btn .material-icons,
.tmt-daily-timesheet-table__row-action.btn .material-icons-round {
  font-size: 1.05rem !important;
  line-height: 1;
}

.tmt-daily-timesheet-table__cell-edit:hover,
.tmt-daily-timesheet-table__cell-edit:focus-visible {
  color: #1a73e8 !important;
}

.tmt-daily-timesheet-adjustment-context {
  flex: 1 1 auto;
  min-width: 0;
}

.tmt-daily-timesheet-adjustment-context__heading {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  min-width: 0;
}

.tmt-daily-timesheet-adjustment-context__employee {
  color: #344767;
  font-family: "Be Vietnam Pro", "Roboto", Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 0.55rem;
}

.tmt-daily-timesheet-adjustment-context__employee-code {
  color: #7b809a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.35;
  margin-top: 0.1rem;
}

.tmt-daily-timesheet-adjustment-context__date {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.3rem;
  padding: 0.25rem 0.65rem;
}
.tmt-daily-timesheet-adjustment-context__date .material-icons-round {
  font-size: 0.95rem;
}

@media (max-width: 575.98px) {
  .tmt-daily-timesheet-adjustment-context__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media (hover: none) {
  .tmt-daily-timesheet-table__cell-edit.btn {
    opacity: 0.75;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .tmt-daily-timesheet-table__editable-cell,
  .tmt-daily-timesheet-table__cell-edit.btn {
    transition: none;
  }
}
.tmt-data-table--split.tmt-daily-timesheet-table--with-select th:nth-child(-n+3),
.tmt-data-table--split.tmt-daily-timesheet-table--with-select tr:not(.tmt-daily-timesheet-table__department-row) td:nth-child(-n+3) {
  background: var(--tmt-color-surface);
  position: sticky;
  z-index: 6;
}

.tmt-data-table--split.tmt-daily-timesheet-table--with-select th:nth-child(1),
.tmt-data-table--split.tmt-daily-timesheet-table--with-select tr:not(.tmt-daily-timesheet-table__department-row) td:nth-child(1) {
  left: 0;
  min-width: 52px;
  width: 52px;
}

.tmt-data-table--split.tmt-daily-timesheet-table--with-select th:nth-child(2),
.tmt-data-table--split.tmt-daily-timesheet-table--with-select tr:not(.tmt-daily-timesheet-table__department-row) td:nth-child(2) {
  box-shadow: none;
  left: 52px;
  min-width: 120px;
  width: 120px;
}

.tmt-data-table--split.tmt-daily-timesheet-table--with-select th:nth-child(3),
.tmt-data-table--split.tmt-daily-timesheet-table--with-select tr:not(.tmt-daily-timesheet-table__department-row) td:nth-child(3) {
  box-shadow: 1px 0 0 var(--tmt-color-border-light);
  left: 172px;
  min-width: 240px;
  width: 240px;
}

.tmt-data-table--split.tmt-daily-timesheet-table--with-select thead th:nth-child(-n+3) {
  z-index: 10;
}

.tmt-daily-timesheet-table__department-row td {
  background: #f8f9fa;
  box-shadow: inset 0 -1px 0 var(--tmt-color-border-light);
  padding: 0.75rem 1rem;
}

.tmt-data-table--split.tmt-monthly-timesheet-table th:nth-child(-n+2),
.tmt-data-table--split.tmt-monthly-timesheet-table td:nth-child(-n+2) {
  background: var(--tmt-color-surface);
  position: sticky;
  z-index: 6;
}

.tmt-data-table--split.tmt-monthly-timesheet-table th:nth-child(1),
.tmt-data-table--split.tmt-monthly-timesheet-table td:nth-child(1) {
  left: 0;
  min-width: 120px;
  width: 120px;
}

.tmt-data-table--split.tmt-monthly-timesheet-table th:nth-child(2),
.tmt-data-table--split.tmt-monthly-timesheet-table td:nth-child(2) {
  box-shadow: 1px 0 0 var(--tmt-color-border-light);
  left: 120px;
  min-width: 260px;
  width: 260px;
}

.tmt-monthly-timesheet-table thead th {
  height: 52px;
}

.tmt-data-table--split.tmt-monthly-timesheet-table:not(.tmt-monthly-timesheet-table--horizontal-split) thead th {
  top: auto;
}

.tmt-monthly-timesheet-table--horizontal-split thead th {
  background: var(--tmt-color-surface);
  position: sticky;
  top: 0;
  z-index: 9;
}

.tmt-data-table--split.tmt-monthly-timesheet-table--horizontal-split thead th:nth-child(-n+2) {
  z-index: 10;
}

.tmt-monthly-timesheet-table th:nth-child(3),
.tmt-monthly-timesheet-table td:nth-child(3) {
  min-width: 220px;
}

.tmt-monthly-timesheet-table th:nth-child(n+4):nth-child(-n+7),
.tmt-monthly-timesheet-table td:nth-child(n+4):nth-child(-n+7) {
  min-width: 150px;
}

.tmt-monthly-timesheet-table th:nth-child(8),
.tmt-monthly-timesheet-table td:nth-child(8) {
  min-width: 190px;
}

.tmt-monthly-timesheet-table th:nth-child(9),
.tmt-monthly-timesheet-table td:nth-child(9) {
  min-width: 140px;
}

@media (max-width: 1199.98px) {
  .tmt-monthly-timesheet-toolbar {
    width: 100%;
  }
}
.tmt-standard-offcanvas {
  border: 0.5px solid var(--tmt-color-heading);
  border-radius: 1rem;
  height: 95vh;
  overflow: hidden;
  right: 0.75rem;
  top: 2.5%;
  width: min(90vw, 960px);
}

.tmt-device-command-offcanvas {
  width: min(92vw, 720px);
}

.tmt-device-command-offcanvas .offcanvas-body {
  overflow-y: auto;
}

.tmt-device-command-offcanvas .btn {
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
  justify-content: center;
}

.tmt-device-command-offcanvas .btn .material-icons-round {
  font-size: 18px;
  line-height: 1;
}

.tmt-table-search .input-group .input-group-text {
  background: transparent;
  border-right: 0;
  padding-right: 0.5rem;
}

.tmt-table-search .input-group .form-control {
  border-left: 0;
  padding-left: 0;
}

.tmt-device-command-filter-menu {
  min-width: min(360px, 100vw - 2rem);
}

.tmt-device-command-table {
  table-layout: fixed;
}

.tmt-device-command-table__select {
  width: 56px;
}

.tmt-device-command-table th:nth-last-child(3),
.tmt-device-command-table td:nth-last-child(3) {
  width: 190px;
}

.tmt-device-command-group-row td {
  background: var(--tmt-color-surface-muted, #f8f9fa);
  border-top: 1px solid var(--tmt-color-border-light, #dee2e6);
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
}

.tmt-data-table--split.tmt-leave-table--with-select th:first-child,
.tmt-data-table--split.tmt-leave-table--with-select td:first-child {
  left: 0;
  min-width: 56px;
  width: 56px;
}

.tmt-data-table--split.tmt-leave-table--with-select th:nth-child(2),
.tmt-data-table--split.tmt-leave-table--with-select td:nth-child(2) {
  background: var(--tmt-color-surface);
  box-shadow: inset -1px 0 0 var(--tmt-color-border-light);
  left: 56px;
  min-width: 280px;
  position: sticky;
  z-index: 4;
}

.tmt-data-table--split.tmt-leave-table--with-select thead th:nth-child(2) {
  z-index: 8;
}

.tmt-raw-log-filter-dropdown {
  min-width: min(420px, 100vw - 2rem);
}

.tmt-data-table--split.tmt-raw-log-table th:nth-child(-n+3),
.tmt-data-table--split.tmt-raw-log-table td:nth-child(-n+3) {
  background: var(--tmt-color-surface);
  position: sticky;
  z-index: 4;
}

.tmt-data-table--split.tmt-raw-log-table thead th:nth-child(-n+3) {
  z-index: 8;
}

.tmt-data-table--split.tmt-raw-log-table th:nth-child(1),
.tmt-data-table--split.tmt-raw-log-table td:nth-child(1) {
  left: 0;
  min-width: 52px;
}

.tmt-data-table--split.tmt-raw-log-table th:nth-child(2),
.tmt-data-table--split.tmt-raw-log-table td:nth-child(2) {
  left: 52px;
  min-width: 80px;
}

.tmt-data-table--split.tmt-raw-log-table th:nth-child(3),
.tmt-data-table--split.tmt-raw-log-table td:nth-child(3) {
  box-shadow: inset -1px 0 0 var(--tmt-color-border-light);
  left: 132px;
  min-width: 150px;
}

.tmt-mapping-table-toolbar {
  flex: 1 1 440px;
  justify-content: flex-end;
  min-width: 0;
}

.tmt-data-table--split.tmt-mapping-table th:first-child,
.tmt-data-table--split.tmt-mapping-table td:first-child {
  background: var(--tmt-color-surface);
  box-shadow: inset -1px 0 0 var(--tmt-color-border-light);
  left: 0;
  min-width: 190px;
  position: sticky;
  z-index: 4;
}

.tmt-data-table--split.tmt-mapping-table thead th:first-child {
  z-index: 8;
}

.tmt-department-table-toolbar {
  flex: 1 1 560px;
  justify-content: flex-end;
  min-width: 0;
}

.tmt-data-table--split.tmt-department-table th:first-child,
.tmt-data-table--split.tmt-department-table td:first-child {
  background: var(--tmt-color-surface);
  box-shadow: inset -1px 0 0 var(--tmt-color-border-light);
  left: 0;
  min-width: 240px;
  position: sticky;
  z-index: 4;
}

.tmt-data-table--split.tmt-department-table thead th:first-child {
  z-index: 8;
}

.tmt-data-table--split.tmt-position-table th:first-child,
.tmt-data-table--split.tmt-position-table td:first-child {
  background: var(--tmt-color-surface);
  box-shadow: inset -1px 0 0 var(--tmt-color-border-light);
  left: 0;
  min-width: 240px;
  position: sticky;
  z-index: 4;
}

.tmt-data-table--split.tmt-position-table thead th:first-child {
  z-index: 8;
}

.tmt-data-table--split.tmt-schedule-matrix th:first-child,
.tmt-data-table--split.tmt-schedule-matrix td:first-child {
  background: var(--tmt-color-surface);
  box-shadow: inset -1px 0 0 var(--tmt-color-border-light);
  left: 0;
  min-width: 280px;
  position: sticky;
  z-index: 4;
}

.tmt-data-table--split.tmt-schedule-matrix thead th:first-child {
  z-index: 8;
}

.tmt-schedule-matrix thead th {
  height: 56px;
}

.tmt-schedule-matrix th:not(:first-child),
.tmt-schedule-matrix__cell {
  min-width: 112px;
}

.tmt-schedule-matrix .tmt-schedule-matrix__department-row td {
  background: #f8f9fa;
  box-shadow: inset 0 -1px 0 var(--tmt-color-border-light);
}

.tmt-schedule-matrix--sticky-departments .tmt-schedule-matrix__department-row td {
  position: sticky;
  top: 56px;
  z-index: 6;
}

.tmt-data-table--split.tmt-schedule-matrix .tmt-schedule-matrix__department-row td:first-child {
  background: #f8f9fa;
  box-shadow: inset -1px 0 0 var(--tmt-color-border-light), inset 0 -1px 0 var(--tmt-color-border-light);
  left: 0;
  position: sticky;
  z-index: 5;
}

.tmt-data-table--split.tmt-schedule-matrix--sticky-departments .tmt-schedule-matrix__department-row td:first-child {
  z-index: 7;
}

.tmt-schedule-matrix__identity-column,
.tmt-schedule-matrix__department-cell {
  min-width: 280px;
  width: 280px;
}

.tmt-schedule-matrix__department-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  justify-content: center;
  min-height: 44px;
}

.tmt-schedule-matrix__department-stats {
  padding-left: 28px;
  white-space: nowrap;
}

.tmt-schedule-matrix__employee-cell > .d-flex {
  padding-left: 1.25rem;
}

.tmt-schedule-matrix__weekend {
  background: rgba(244, 67, 53, 0.06);
}

.tmt-schedule-matrix__shift {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.tmt-employee-avatar__image {
  -o-object-fit: cover;
     object-fit: cover;
}

.tmt-schedule-matrix__cell-content {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 32px;
  position: relative;
}

.tmt-schedule-matrix__value {
  transition: opacity 0.15s ease;
}

.tmt-schedule-matrix__actions {
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
  inset: 0;
  justify-content: center;
  opacity: 0;
  position: absolute;
  transition: opacity 0.15s ease;
  visibility: hidden;
}

.tmt-schedule-matrix__action {
  align-items: center;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  line-height: 1;
  width: 24px;
}

.tmt-schedule-matrix__cell:hover .tmt-schedule-matrix__value,
.tmt-schedule-matrix__cell:focus-within .tmt-schedule-matrix__value {
  opacity: 0;
}

.tmt-schedule-matrix__cell:hover .tmt-schedule-matrix__actions,
.tmt-schedule-matrix__cell:focus-within .tmt-schedule-matrix__actions {
  opacity: 1;
  visibility: visible;
}

.tmt-schedule-matrix__delete {
  line-height: 1;
}

.tmt-schedule-matrix__actions .material-icons-round {
  font-size: 16px;
  line-height: 1;
}

@media (hover: none) {
  .tmt-schedule-matrix__actions {
    inset: 0;
    opacity: 1;
    visibility: visible;
  }
  .tmt-schedule-matrix__value {
    opacity: 0;
  }
}
@media (max-width: 767.98px) {
  .tmt-mapping-table-toolbar {
    flex-basis: 100%;
    justify-content: stretch;
    width: 100%;
  }
  .tmt-mapping-table-toolbar .tmt-table-search {
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .tmt-device-command-console > .col-12 > .card,
  .tmt-device-command-console .card-body,
  .tmt-device-command-console .card-header {
    min-width: 0;
  }
  .tmt-device-command-offcanvas {
    height: calc(100dvh - 2rem);
    max-width: none;
    right: 1rem;
    top: 1rem;
    width: calc(100vw - 2rem);
  }
  .tmt-device-command-offcanvas .offcanvas-header {
    padding-right: 1rem;
  }
  .tmt-device-command-offcanvas form > .border-top {
    flex-wrap: nowrap;
  }
  .tmt-device-command-offcanvas form > .border-top > .tmt-page-action {
    flex: 1 1 0;
    min-width: 0;
  }
  .tmt-device-command-toolbar > .flex-grow-1,
  .tmt-device-command-toolbar .tmt-table-search,
  .tmt-device-command-toolbar__actions {
    max-width: none;
    width: 100%;
  }
  .tmt-device-command-toolbar__actions {
    gap: 0.75rem !important;
  }
  .tmt-device-command-toolbar__actions > .tmt-bulk-selection-summary {
    margin-left: 0;
    width: 100%;
  }
  .tmt-device-command-toolbar__actions > .tmt-table-action-group {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: 0;
    width: 100%;
  }
  .tmt-device-command-toolbar .tmt-table-search .form-control,
  .tmt-device-command-toolbar__actions .tmt-table-action-group > .btn,
  .tmt-device-command-toolbar__actions .tmt-table-action-group > .dropdown > .btn {
    min-height: 44px;
  }
  .tmt-device-command-toolbar__actions .tmt-table-action-group > .btn,
  .tmt-device-command-toolbar__actions .tmt-table-action-group > .dropdown,
  .tmt-device-command-toolbar__actions .tmt-table-action-group > .dropdown > .btn {
    min-width: 0;
    width: 100%;
  }
  .tmt-device-command-table-wrap {
    overflow: visible;
  }
  .tmt-device-command-table,
  .tmt-device-command-table tbody {
    display: block;
    min-width: 0;
    width: 100%;
  }
  .tmt-device-command-table thead {
    display: none;
  }
  .tmt-device-command-table tbody tr:not(.tmt-device-command-group-row) {
    background: var(--tmt-color-surface);
    border: 1px solid var(--tmt-color-border-light);
    border-radius: 0.75rem;
    display: block;
    margin-bottom: 0.75rem;
    overflow: hidden;
    width: 100%;
  }
  .tmt-device-command-table tbody tr:not(.tmt-device-command-group-row) > td {
    align-items: start;
    background: transparent;
    border-bottom: 1px solid var(--tmt-color-border-light);
    display: grid;
    grid-template-columns: minmax(78px, 0.38fr) minmax(0, 1fr);
    min-width: 0;
    padding: 0.75rem !important;
    text-align: left !important;
    white-space: normal;
    width: 100%;
  }
  .tmt-device-command-table tbody tr:not(.tmt-device-command-group-row) > td::before {
    color: var(--tmt-color-muted);
    content: attr(data-label);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    padding-top: 0.15rem;
    text-transform: uppercase;
  }
  .tmt-device-command-table tbody tr:not(.tmt-device-command-group-row) > td:last-child {
    border-bottom: 0;
  }
  .tmt-device-command-table tbody .tmt-device-command-group-row {
    display: block;
    margin: 1rem 0 0.5rem;
  }
  .tmt-device-command-table tbody .tmt-device-command-group-row > td {
    border-radius: 0.75rem;
    display: block;
    width: 100%;
  }
  .tmt-device-command-table tbody .tmt-data-table__empty {
    border: 0 !important;
    display: block !important;
    padding: 1.5rem 1rem !important;
    text-align: center !important;
  }
  .tmt-device-command-table tbody .tmt-data-table__empty::before {
    content: none !important;
  }
  .tmt-device-command-stream {
    height: 320px;
  }
  .tmt-device-command-response {
    height: auto;
    max-height: 70dvh;
  }
  .tmt-device-table-wrap {
    max-height: none;
    overflow: visible;
  }
  .tmt-device-table,
  .tmt-device-table tbody {
    display: block;
    min-width: 0;
    width: 100%;
  }
  .tmt-device-table thead {
    display: none;
  }
  .tmt-device-table tbody tr {
    background: var(--tmt-color-surface);
    border: 1px solid var(--tmt-color-border-light);
    border-radius: 0.75rem;
    display: block;
    margin-bottom: 0.75rem;
    overflow: hidden;
    width: 100%;
  }
  .tmt-device-table tbody td,
  .tmt-data-table--split.tmt-device-table tbody td:first-child {
    background: transparent;
    border-bottom: 1px solid var(--tmt-color-border-light);
    box-shadow: none;
    display: grid;
    grid-template-columns: minmax(78px, 0.38fr) minmax(0, 1fr);
    left: auto;
    min-width: 0;
    padding: 0.75rem !important;
    position: static;
    text-align: left !important;
    white-space: normal;
    width: 100%;
  }
  .tmt-device-table tbody td::before {
    color: var(--tmt-color-muted);
    content: attr(data-label);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    padding-top: 0.15rem;
    text-transform: uppercase;
  }
  .tmt-device-table__value {
    min-width: 0;
  }
  .tmt-device-status {
    background: transparent !important;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: var(--tmt-color-muted) !important;
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1.25;
    padding: 0;
    text-transform: none;
  }
  .tmt-device-status.bg-gradient-success {
    color: #4caf50 !important;
  }
  .tmt-device-status.bg-gradient-warning {
    color: #fb8c00 !important;
  }
  .tmt-device-table tbody td:first-child {
    display: block;
  }
  .tmt-device-table tbody td:first-child::before,
  .tmt-device-table tbody .tmt-data-table__empty::before {
    content: none;
  }
  .tmt-device-table tbody td[data-label="Thao tác"] {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .tmt-device-table tbody td[data-label="Thao tác"]::before {
    margin-right: auto;
  }
  .tmt-device-table tbody td[data-label="Thao tác"] > .btn,
  .tmt-device-table tbody td[data-label="Thao tác"] > .d-inline-flex {
    margin-right: 0 !important;
  }
  .tmt-device-table tbody td:last-child {
    border-bottom: 0;
  }
  .tmt-device-table tbody .tmt-data-table__empty {
    border: 0;
    display: block !important;
    padding: 1.5rem 1rem !important;
    text-align: center !important;
  }
  .tmt-device-table tbody .tmt-data-table__empty > * {
    max-width: none;
    text-align: center;
    width: 100%;
  }
}
.form-switch .form-check-input {
  background-color: var(--tmt-color-muted);
  border-color: var(--tmt-color-muted);
}

.form-switch .form-check-input:checked {
  background-color: var(--tmt-color-brand);
  border-color: var(--tmt-color-brand);
}

.form-switch .form-check-input:focus {
  border-color: var(--tmt-color-brand);
  box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.15);
}

.tmt-command-checkbox .form-check-input[type=checkbox] {
  background-color: var(--tmt-color-surface);
  background-image: none;
  border: 1px solid #ced4da;
  border-radius: 4px;
  cursor: pointer;
  flex: 0 0 1.1rem;
  height: 1.1rem !important;
  margin-top: 0;
  max-height: 1.1rem;
  max-width: 1.1rem;
  min-height: 1.1rem;
  min-width: 1.1rem;
  position: relative;
  width: 1.1rem !important;
}

.tmt-command-checkbox.form-check {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 1.1rem;
  padding-left: 0;
}

.tmt-command-checkbox .form-check-input {
  float: none;
  margin-left: 0;
}

.tmt-command-checkbox .form-check-input[type=checkbox]:checked {
  background-color: var(--tmt-color-brand);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m3.5 8.5 3 3 6-7'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.75rem 0.75rem;
  border-color: var(--tmt-color-brand);
}

.tmt-command-checkbox .form-check-input[type=checkbox]:focus {
  border-color: var(--tmt-color-brand);
  box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.12);
}

/*
 * Shared visual contract for native date and time controls.
 *
 * Keep the native picker so keyboard, locale and mobile platform behavior stay
 * intact. This layer only normalizes the application-facing control surface.
 */
input.form-control[type=date] {
  min-height: 42px;
  padding: 0.625rem 0.75rem;
  color: #212529;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
  color-scheme: light;
  cursor: pointer;
}

input.form-control.form-control-sm[type=date] {
  min-height: 36px;
  padding: 0.4375rem 0.625rem;
  font-size: 0.8125rem;
}

input.form-control[type=date]:disabled,
input.form-control[type=date][readonly] {
  cursor: not-allowed;
}

input.form-control[type=time] {
  min-height: 42px;
  padding: 0.625rem 0.75rem;
  color: #212529;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
  color-scheme: light;
  cursor: pointer;
}

input.form-control.form-control-sm[type=time] {
  min-height: 36px;
  padding: 0.4375rem 0.625rem;
  font-size: 0.8125rem;
}

input.form-control[type=time]:disabled,
input.form-control[type=time][readonly] {
  cursor: not-allowed;
}

input.form-control[type=datetime-local] {
  min-height: 42px;
  padding: 0.625rem 0.75rem;
  color: #212529;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
  color-scheme: light;
  cursor: pointer;
}

input.form-control.form-control-sm[type=datetime-local] {
  min-height: 36px;
  padding: 0.4375rem 0.625rem;
  font-size: 0.8125rem;
}

input.form-control[type=datetime-local]:disabled,
input.form-control[type=datetime-local][readonly] {
  cursor: not-allowed;
}

input.form-control[type=month] {
  min-height: 42px;
  padding: 0.625rem 0.75rem;
  color: #212529;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
  color-scheme: light;
  cursor: pointer;
}

input.form-control.form-control-sm[type=month] {
  min-height: 36px;
  padding: 0.4375rem 0.625rem;
  font-size: 0.8125rem;
}

input.form-control[type=month]:disabled,
input.form-control[type=month][readonly] {
  cursor: not-allowed;
}

input.form-control[type=date]::-webkit-calendar-picker-indicator,
input.form-control[type=time]::-webkit-calendar-picker-indicator,
input.form-control[type=datetime-local]::-webkit-calendar-picker-indicator,
input.form-control[type=month]::-webkit-calendar-picker-indicator {
  width: 1.25rem;
  height: 1.25rem;
  margin-inline-start: 0.5rem;
  padding: 0.25rem;
  border-radius: 0.375rem;
  opacity: 0.68;
  cursor: pointer;
  -webkit-transition: background-color 180ms ease, opacity 180ms ease;
  transition: background-color 180ms ease, opacity 180ms ease;
}

input.form-control[type=date]:hover::-webkit-calendar-picker-indicator,
input.form-control[type=time]:hover::-webkit-calendar-picker-indicator,
input.form-control[type=datetime-local]:hover::-webkit-calendar-picker-indicator,
input.form-control[type=month]:hover::-webkit-calendar-picker-indicator,
input.form-control[type=date]:focus::-webkit-calendar-picker-indicator,
input.form-control[type=time]:focus::-webkit-calendar-picker-indicator,
input.form-control[type=datetime-local]:focus::-webkit-calendar-picker-indicator,
input.form-control[type=month]:focus::-webkit-calendar-picker-indicator {
  background-color: rgba(33, 37, 41, 0.08);
  opacity: 1;
}

input.form-control[type=date]:disabled::-webkit-calendar-picker-indicator,
input.form-control[type=time]:disabled::-webkit-calendar-picker-indicator,
input.form-control[type=datetime-local]:disabled::-webkit-calendar-picker-indicator,
input.form-control[type=month]:disabled::-webkit-calendar-picker-indicator,
input.form-control[type=date][readonly]::-webkit-calendar-picker-indicator,
input.form-control[type=time][readonly]::-webkit-calendar-picker-indicator,
input.form-control[type=datetime-local][readonly]::-webkit-calendar-picker-indicator,
input.form-control[type=month][readonly]::-webkit-calendar-picker-indicator {
  cursor: not-allowed;
  opacity: 0.35;
}

@media (prefers-reduced-motion: reduce) {
  input.form-control[type=date]::-webkit-calendar-picker-indicator,
  input.form-control[type=time]::-webkit-calendar-picker-indicator,
  input.form-control[type=datetime-local]::-webkit-calendar-picker-indicator,
  input.form-control[type=month]::-webkit-calendar-picker-indicator {
    -webkit-transition: none;
    transition: none;
  }
}
/*
 * Material Dashboard forces `.table td, .table th { white-space: nowrap; }`,
 * which silently defeats Bootstrap's `.text-break` (word-wrap/word-break do
 * nothing while white-space stays nowrap). Use on cells that must wrap long
 * content (payloads, messages) instead of overflowing into sibling columns.
 */
.tmt-cell-wrap {
  white-space: normal !important;
}

.employee-create-page .multisteps-form__panel.js-active {
  height: auto;
  position: relative;
}

.employee-create-page .multisteps-form__form {
  height: auto !important;
}

.employee-create-page .js-btn-prev .material-icons-round,
.employee-create-page .js-btn-next .material-icons-round,
.employee-create-page button[type=submit] .material-icons-round {
  pointer-events: none;
}

.dataTable-wrapper .dataTable-dropdown {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.dataTable-wrapper .dataTable-dropdown p {
  color: var(--tmt-color-muted);
  font-weight: 400;
  margin-bottom: 0;
  padding-top: 0 !important;
}

.dataTable-wrapper .dataTable-search .form-control,
.dataTable-wrapper .dataTable-search .dataTable-input {
  font-size: 0.875rem;
}

.shift-definition-page .shift-form-action-btn {
  min-width: 112px;
}

.weekend-paid-switch {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  min-height: 41px;
}

.weekend-paid-switch .form-check-input {
  flex: 0 0 auto;
  margin-top: 0;
}

.position-department-filter .tmt-tags-filter {
  align-items: center;
  background-color: var(--tmt-color-surface);
  border: 1px solid #dee2e6;
  border-radius: 6px;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0.45rem;
}

.position-department-filter .tmt-tag-filter {
  align-items: center;
  background-color: var(--tmt-color-border-light);
  border: 0;
  border-radius: 4px;
  color: var(--tmt-color-heading);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 0.35rem;
  line-height: 1.2;
  max-width: 100%;
  min-height: 28px;
  padding: 0.35rem 0.55rem;
}

.position-department-filter .tmt-tag-filter:hover,
.position-department-filter .tmt-tag-filter:focus {
  background-color: #dee2e6;
  outline: none;
}

.position-department-filter .tmt-tag-filter.active {
  background-color: var(--tmt-color-brand);
  color: var(--tmt-color-surface);
}

.position-department-filter .tmt-tag-filter-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.position-department-filter .tmt-tag-filter-count {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  color: var(--tmt-color-heading);
  display: inline-flex;
  font-size: 0.68rem;
  justify-content: center;
  line-height: 1;
  min-width: 20px;
  padding: 0.18rem 0.3rem;
}

.position-department-filter .tmt-tag-filter.active .tmt-tag-filter-count {
  background-color: rgba(255, 255, 255, 0.22);
  color: var(--tmt-color-surface);
}

.position-department-filter .tmt-tag-filter .material-icons-round {
  font-size: 0.9rem;
  line-height: 1;
}

.tmt-department-form {
  border: 0.5px solid #344767;
  border-radius: 1rem;
  height: 95vh;
  overflow: hidden;
  right: 0.75rem;
  top: 2.5%;
  width: min(90vw, 960px);
}

@media (max-width: 575.98px) {
  .tmt-department-page {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .tmt-department-page > .row > .col-12 > .card > .card-header,
  .tmt-department-page > .row > .col-12 > .card > .card-body,
  .tmt-department-page .row.mt-4 > .col-12 > .card > .card-header,
  .tmt-department-page .row.mt-4 > .col-12 > .card > .card-body {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .tmt-department-toolbar,
  .tmt-department-toolbar > .flex-grow-1 {
    min-width: 0;
    width: 100%;
  }
  .tmt-department-toolbar__actions {
    justify-content: flex-end;
    width: 100%;
  }
  .tmt-department-mobile-list {
    display: grid;
    gap: 0.75rem;
  }
  .tmt-department-mobile-card {
    background: var(--tmt-color-surface);
    border: 1px solid var(--tmt-color-border-light);
    border-radius: 0.75rem;
    padding: 0.875rem;
  }
  .tmt-department-mobile-card--selected {
    background: #f8f9fa;
    border-color: #adb5bd;
  }
  .tmt-department-mobile-card__header {
    align-items: flex-start;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .tmt-department-mobile-card__identity {
    min-width: 0;
  }
  .tmt-department-mobile-card__identity h6,
  .tmt-department-mobile-card__identity span {
    display: block;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .tmt-department-mobile-card__identity h6 {
    font-size: 0.875rem;
  }
  .tmt-department-mobile-card__identity span {
    color: var(--tmt-color-muted);
    font-size: 0.75rem;
    margin-top: 0.2rem;
  }
  .tmt-department-mobile-card__details {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    margin: 0.875rem 0 0;
  }
  .tmt-department-mobile-card__details > div {
    min-width: 0;
  }
  .tmt-department-mobile-card__details dt {
    color: var(--tmt-color-muted);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  .tmt-department-mobile-card__details dd,
  .tmt-department-mobile-card__details small {
    display: block;
    font-size: 0.78rem;
    margin: 0.2rem 0 0;
    overflow-wrap: anywhere;
  }
  .tmt-department-mobile-card__details small {
    color: var(--tmt-color-muted);
  }
  .tmt-department-mobile-card__actions {
    border-top: 1px solid var(--tmt-color-border-light);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0.875rem;
    padding-top: 0.5rem;
  }
  .tmt-department-mobile-card__actions .btn {
    align-items: center;
    display: inline-flex;
    font-size: 0.75rem;
    gap: 0.3rem;
    justify-content: center;
    min-height: 44px;
    padding: 0.35rem;
  }
  .tmt-department-mobile-card__actions .material-icons {
    font-size: 1.1rem;
  }
  .tmt-department-form {
    border: 0;
    border-radius: 0;
    height: 100dvh;
    right: 0;
    top: 0;
    width: 100vw;
  }
  .tmt-department-form .card-header,
  .tmt-department-form .card-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .tmt-department-form__actions .tmt-page-action {
    flex: 1 1 0;
  }
  .tmt-department-employee-row {
    align-items: flex-start !important;
  }
  .tmt-department-employee-row h6,
  .tmt-department-employee-row p {
    overflow-wrap: anywhere;
  }
}
.tmt-navbar-actions > .nav-item {
  align-items: center;
  display: flex;
}
.tmt-navbar-actions > .nav-item > .nav-link {
  align-items: center;
  display: flex;
  justify-content: center;
}
.tmt-navbar-actions > .nav-item > .nav-link > .material-icons {
  line-height: 1;
}

.tmt-breadcrumb-nav {
  min-width: 0;
}
.tmt-breadcrumb-nav .breadcrumb {
  flex-wrap: nowrap;
  white-space: nowrap;
}
.tmt-breadcrumb-nav .breadcrumb-item.active {
  max-width: min(32vw, 26rem);
  overflow: hidden;
  text-overflow: ellipsis;
}
.tmt-breadcrumb-nav .tmt-breadcrumb-home {
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 767.98px) {
  .tmt-breadcrumb-nav {
    display: none;
  }
}
.modal-open .sidenav {
  z-index: 1030;
}

#navbarBlur.tmt-navbar-hidden {
  display: none !important;
}

.tmt-mobile-sidenav-launcher {
  display: none;
}

.sidenav .collapse .nav .nav-link {
  align-items: center;
  display: flex;
  max-width: 100%;
  width: calc(100% - 1rem);
}

.sidenav .collapse .nav .nav-link .sidenav-mini-icon {
  flex: 0 0 1.5rem;
}

.sidenav .collapse .nav .nav-link .sidenav-normal {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tmt-sidebar-icon--strong path:first-of-type {
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 0.45;
}

.sidenav .navbar-nav > .tmt-section-submenu > .nav-link {
  padding-left: 2rem;
}

.tmt-sidebar-section-toggle {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.025em;
  padding: 0.5rem 1.5rem 0.5rem 2rem;
  text-transform: uppercase;
  width: 100%;
}

.tmt-sidebar-section-toggle:hover,
.tmt-sidebar-section-toggle:focus-visible {
  color: #ffffff;
}

.tmt-sidebar-section-toggle .tmt-collapse-indicator {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.sidenav .navbar-nav .tmt-sidebar-section-menu .nav > .tmt-section-submenu > .nav-link {
  padding-left: 2rem;
}

@media (max-width: 1199.98px) {
  .fixed-plugin .fixed-plugin-button {
    align-items: center;
    bottom: 1.5rem;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    padding: 0 !important;
    width: 48px;
  }
  .fixed-plugin .fixed-plugin-button .material-icons {
    line-height: 1;
    padding: 0 !important;
  }
  #navbarBlur.tmt-navbar-hidden + .tmt-mobile-sidenav-launcher {
    align-items: center;
    border-radius: 50%;
    bottom: 1.5rem;
    display: inline-flex !important;
    height: 48px;
    justify-content: center;
    left: 1.5rem;
    padding: 0;
    position: fixed;
    width: 48px;
    z-index: 10000;
  }
  #navbarBlur.tmt-navbar-hidden + .tmt-mobile-sidenav-launcher .material-icons-round {
    font-size: 24px;
    line-height: 1;
  }
}
@media (min-width: 1200px) {
  .g-sidenav-hidden .navbar-vertical .tmt-sidebar-dashboard-icon {
    flex: 0 0 2.5rem;
    height: 1.75rem !important;
    max-width: none;
    width: 2.5rem !important;
  }
  .g-sidenav-hidden .navbar-vertical .tmt-sidebar-section-toggle {
    display: none;
  }
  .g-sidenav-hidden .navbar-vertical .tmt-sidebar-section-menu.collapse {
    display: block;
  }
  .g-sidenav-hidden .navbar-vertical .tmt-sidebar-section-menu .nav > .tmt-section-submenu > .nav-link {
    padding-left: 1rem;
  }
  .g-sidenav-hidden .navbar-vertical:hover {
    max-width: 6rem !important;
  }
  .g-sidenav-hidden .navbar-vertical:hover.fixed-start + .main-content {
    margin-left: 7.5rem;
  }
  .g-sidenav-hidden .navbar-vertical:hover .navbar-brand span,
  .g-sidenav-hidden .navbar-vertical:hover .nav-item .nav-link .nav-link-text,
  .g-sidenav-hidden .navbar-vertical:hover .nav-item .nav-link .sidenav-normal {
    opacity: 0;
    width: 0;
  }
  .g-sidenav-hidden .navbar-vertical:hover .nav-item .nav-link[data-bs-toggle=collapse]::after {
    content: "";
    opacity: 0;
  }
}
.attendance-settings-tabs .nav.nav-pills {
  overflow: visible;
}

.attendance-settings-tabs .nav.nav-pills .nav-item {
  position: relative;
  z-index: 3;
}

.attendance-settings-tabs .nav.nav-pills .nav-link {
  align-items: center;
  background: transparent;
  display: inline-flex;
  justify-content: center;
  min-height: 40px;
  transition: color 0.18s ease, font-weight 0.18s ease;
}

.attendance-settings-tabs .nav.nav-pills > .nav-item > .nav-link.active {
  background: transparent;
  box-shadow: none;
  color: var(--tmt-color-heading);
  font-weight: 700;
}

.attendance-settings-tabs .nav.nav-pills .moving-tab {
  backface-visibility: hidden;
  pointer-events: none;
  transition: transform 0.5s ease, width 0.5s ease, height 0.5s ease !important;
  will-change: transform, width, height;
}

.attendance-settings-tabs .nav.nav-pills .moving-tab .nav-link.active {
  background: var(--tmt-color-surface);
  box-shadow: 0 1px 5px 1px rgba(52, 71, 103, 0.16);
  height: 100%;
  width: 100%;
}

.schedule-month-filters {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.schedule-month-control,
.schedule-month-department-filter {
  min-width: 190px;
}

.schedule-month-department-filter {
  min-width: 220px;
}

.schedule-month-today {
  min-width: 96px;
}

.schedule-month-nav {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.schedule-month-nav .form-control {
  min-width: 150px;
  text-align: center;
}

.schedule-month-nav .btn,
.schedule-month-today .btn {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 41px;
  min-width: 41px;
  padding: 0.5rem;
}

.schedule-month-view-mode {
  min-width: 170px;
}

.schedule-month-view-mode .nav-wrapper,
.schedule-view-mode-tabs {
  width: 100%;
}

.schedule-view-mode-tabs.nav.nav-pills {
  overflow: visible;
  position: relative;
}

.schedule-view-mode-tabs.nav.nav-pills .nav-item {
  position: relative;
  z-index: 3;
}

.schedule-view-mode-tabs.nav.nav-pills .nav-link {
  align-items: center;
  background: transparent;
  border: 0;
  display: inline-flex;
  justify-content: center;
  min-height: 36px;
  transition: color 0.18s ease, font-weight 0.18s ease;
  width: 100%;
}

.schedule-view-mode-tabs.nav.nav-pills > .nav-item > .nav-link.active {
  background: transparent;
  box-shadow: none;
  color: var(--tmt-color-heading);
  font-weight: 700;
}

.schedule-view-mode-tabs.nav.nav-pills .moving-tab {
  backface-visibility: hidden;
  pointer-events: none;
  transition: transform 0.5s ease, width 0.5s ease, height 0.5s ease !important;
  will-change: transform, width, height;
}

.schedule-view-mode-tabs.nav.nav-pills .moving-tab .nav-link.active {
  background: var(--tmt-color-surface);
  box-shadow: 0 1px 5px 1px rgba(52, 71, 103, 0.16);
  height: 100%;
  width: 100%;
}

.manual-entry-tabs {
  min-width: 280px;
}

.manual-entry-tabs .nav-wrapper,
.manual-entry-pills {
  width: 100%;
}

.manual-entry-pills.nav.nav-pills {
  overflow: visible;
  position: relative;
}

.manual-entry-pills.nav.nav-pills .nav-item {
  position: relative;
  z-index: 3;
}

.manual-entry-pills.nav.nav-pills .nav-link {
  align-items: center;
  background: transparent;
  border: 0;
  display: inline-flex;
  justify-content: center;
  min-height: 36px;
  transition: color 0.18s ease, font-weight 0.18s ease;
  width: 100%;
}

.manual-entry-pills.nav.nav-pills > .nav-item > .nav-link.active {
  background: transparent;
  box-shadow: none;
  color: var(--tmt-color-heading);
  font-weight: 700;
}

.manual-entry-pills.nav.nav-pills .moving-tab {
  backface-visibility: hidden;
  pointer-events: none;
  transition: transform 0.5s ease, width 0.5s ease, height 0.5s ease !important;
  will-change: transform, width, height;
}

.manual-entry-pills.nav.nav-pills .moving-tab .nav-link.active {
  background: var(--tmt-color-surface);
  box-shadow: 0 1px 5px 1px rgba(52, 71, 103, 0.16);
  height: 100%;
  width: 100%;
}

.tmt-page-action.btn {
  align-items: center;
  box-sizing: border-box;
  display: inline-flex;
  gap: 8px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  padding: 0 16px;
  transition: box-shadow 180ms ease, transform 180ms ease;
  vertical-align: middle;
}

.tmt-page-action.btn:not(:disabled):not(.disabled):hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.tmt-page-action.btn:not(:disabled):not(.disabled):active {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.14);
  transform: translateY(1px);
}

.tmt-page-action.btn .material-icons,
.tmt-page-action.btn .material-icons-round {
  align-items: center;
  display: inline-flex;
  font-size: 18px;
  height: 18px;
  justify-content: center;
  line-height: 1;
  transition: transform 180ms ease;
  width: 18px;
}

.tmt-page-action.btn:not(:disabled):not(.disabled):hover .material-icons,
.tmt-page-action.btn:not(:disabled):not(.disabled):hover .material-icons-round {
  transform: scale(1.06);
}

.tmt-page-action.btn > span {
  align-items: center;
  display: inline-flex;
  height: 18px;
  line-height: 18px;
}

.tmt-page-action.btn-outline-secondary > .material-icons,
.tmt-page-action.btn-outline-secondary > .material-icons-round,
.tmt-page-action.btn-outline-secondary > span {
  transform: translateY(1px);
}

.tmt-page-action.btn-outline-secondary:not(:disabled):not(.disabled):hover > .material-icons,
.tmt-page-action.btn-outline-secondary:not(:disabled):not(.disabled):hover > .material-icons-round {
  transform: translateY(1px) scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .tmt-page-action.btn,
  .tmt-page-action.btn .material-icons,
  .tmt-page-action.btn .material-icons-round {
    transition: none;
  }
  .tmt-page-action.btn:not(:disabled):not(.disabled):hover,
  .tmt-page-action.btn:not(:disabled):not(.disabled):active,
  .tmt-page-action.btn:not(:disabled):not(.disabled):hover .material-icons,
  .tmt-page-action.btn:not(:disabled):not(.disabled):hover .material-icons-round {
    transform: none;
  }
  .tmt-page-action.btn-outline-secondary:not(:disabled):not(.disabled):hover > .material-icons,
  .tmt-page-action.btn-outline-secondary:not(:disabled):not(.disabled):hover > .material-icons-round {
    transform: translateY(1px);
  }
}
.tmt-data-table--split.tmt-assignment-table th:nth-child(-n+2),
.tmt-data-table--split.tmt-assignment-table td:nth-child(-n+2) {
  background: var(--tmt-color-surface);
  position: sticky;
  z-index: 4;
}

.tmt-data-table--split.tmt-assignment-table th:nth-child(1),
.tmt-data-table--split.tmt-assignment-table td:nth-child(1) {
  left: 0;
  min-width: 56px;
}

.tmt-data-table--split.tmt-assignment-table th:nth-child(2),
.tmt-data-table--split.tmt-assignment-table td:nth-child(2) {
  box-shadow: inset -1px 0 0 var(--tmt-color-border-light);
  left: 56px;
  min-width: 150px;
}

.tmt-data-table--split.tmt-assignment-table thead th:nth-child(-n+2) {
  z-index: 8;
}

.tmt-assignment-table .tmt-table-group-row td {
  background: #f8f9fa;
  box-shadow: none;
  position: static;
}

.schedule-week-control {
  min-width: 220px;
}

.schedule-timeline-scroll {
  background: var(--tmt-color-surface);
  border: 1px solid var(--tmt-color-border-light);
  border-radius: 8px;
  --schedule-weekend-bg: rgba(244, 67, 53, 0.16);
  --schedule-weekend-color: #f44335;
  overflow: auto;
}

.schedule-timeline-board {
  min-width: calc(260px + var(--schedule-day-count) * 140px);
}

.schedule-timeline-date-row,
.schedule-timeline-time-row,
.schedule-timeline-row {
  display: grid;
  grid-template-columns: 260px 1fr;
}

.schedule-timeline-date-row,
.schedule-timeline-time-row,
.schedule-timeline-row {
  border-bottom: 1px solid var(--tmt-color-border-light);
}

.schedule-timeline-row:last-child {
  border-bottom: 0;
}

.schedule-timeline-employee-col {
  align-items: center;
  background: var(--tmt-color-surface);
  border-right: 1px solid var(--tmt-color-border-light);
  box-shadow: 4px 0 8px rgba(33, 37, 41, 0.04);
  display: flex;
  left: 0;
  min-height: 78px;
  padding: 0.6rem;
  position: sticky;
  width: 260px;
  z-index: 20;
}

.schedule-timeline-date-row .schedule-timeline-employee-col,
.schedule-timeline-time-row .schedule-timeline-employee-col {
  min-height: 42px;
}

.schedule-timeline-employee-header {
  color: var(--tmt-color-muted);
  font-size: 0.72rem;
  font-weight: 800;
  justify-content: center;
  text-transform: uppercase;
}

.schedule-timeline-search {
  align-items: center;
  display: flex;
  position: relative;
  width: 100%;
}

.schedule-timeline-search .material-icons-round {
  color: var(--tmt-color-muted);
  font-size: 1rem;
  left: 0.6rem;
  line-height: 1;
  position: absolute;
  z-index: 2;
}

.schedule-timeline-search .form-control {
  font-size: 0.75rem;
  height: 34px;
  padding-left: 2rem;
  width: 100%;
}

.schedule-timeline-days,
.schedule-timeline-lane {
  display: grid;
  grid-template-columns: repeat(var(--schedule-day-count), minmax(140px, 1fr));
}

.schedule-timeline-day-title {
  align-items: center;
  background: var(--tmt-color-surface);
  border-right: 1px solid var(--tmt-color-border-light);
  color: var(--tmt-color-muted);
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  text-align: center;
  text-transform: uppercase;
}

.schedule-timeline-day-title strong {
  color: var(--tmt-color-heading);
  font-size: 0.76rem;
  margin-top: 0.15rem;
}

.schedule-timeline-day-title.is-weekend,
.schedule-timeline-day-lane.is-weekend {
  background: var(--schedule-weekend-bg);
}

.schedule-timeline-day-title.is-weekend span,
.schedule-timeline-day-title.is-weekend strong {
  color: var(--schedule-weekend-color);
}

.schedule-timeline-time-grid,
.schedule-timeline-day-lane {
  background-image: linear-gradient(to right, transparent calc(25% - 1px), var(--tmt-color-border-light) calc(25% - 1px), var(--tmt-color-border-light) 25%, transparent 25%);
  background-size: 25% 100%;
  border-right: 1px solid var(--tmt-color-border-light);
  position: relative;
}

.schedule-timeline-time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 36px;
}

.schedule-timeline-time-grid span {
  align-items: center;
  color: var(--tmt-color-heading);
  display: flex;
  font-size: 0.68rem;
  font-weight: 800;
  justify-content: center;
}

.schedule-timeline-lane {
  background: #f8f9fa;
  min-height: 78px;
  overflow: hidden;
  position: relative;
}

.schedule-timeline-day-lane {
  min-height: 78px;
}

.schedule-timeline-day-lane::after {
  background: rgba(233, 30, 99, 0.35);
  bottom: 0;
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  width: 1px;
  z-index: 1;
}

.schedule-timeline-event {
  background: var(--event-color);
  border-left: 3px solid rgba(63, 81, 181, 0.95);
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  color: var(--tmt-color-surface);
  left: calc(var(--event-left) * 1%);
  min-width: 0;
  overflow: hidden;
  padding: 0.45rem 0.55rem;
  position: absolute;
  top: 14px;
  width: calc(var(--event-width) * 1%);
  z-index: 4;
}

.schedule-timeline-event.is-overnight {
  background: linear-gradient(90deg, var(--event-color) 0%, var(--event-color) var(--midnight-offset), rgba(233, 30, 99, 0.72) var(--midnight-offset), rgba(233, 30, 99, 0.72) 100%);
  border-right: 2px solid rgba(255, 255, 255, 0.75);
}

.schedule-timeline-event.is-overnight::after {
  background: rgba(255, 255, 255, 0.88);
  bottom: 4px;
  content: "";
  left: var(--midnight-offset);
  position: absolute;
  top: 4px;
  width: 1px;
}

.schedule-timeline-event-title,
.schedule-timeline-event-time {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-timeline-event-title {
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.15;
}

.schedule-timeline-event-time {
  font-size: 0.64rem;
  line-height: 1.2;
  margin-top: 0.18rem;
  opacity: 0.95;
}

.schedule-timeline-event-next-day {
  background: rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  bottom: 4px;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.16rem 0.22rem;
  position: absolute;
  right: 4px;
  z-index: 5;
}

.schedule-timeline-empty {
  color: var(--tmt-color-muted);
  padding: 1rem;
  text-align: center;
}

/* Reusable 24-hour time-range timeline */
.tmt-time-range-timeline {
  border-bottom: 1px solid var(--tmt-color-border, #dee2e6);
  padding-bottom: 1.5rem;
}

.tmt-time-range-timeline__header {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.tmt-time-range-timeline__legend {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tmt-time-range-timeline__legend span {
  align-items: center;
  color: var(--tmt-color-muted, #6c757d);
  display: inline-flex;
  font-size: 0.75rem;
  gap: 0.35rem;
}

.tmt-time-range-timeline__legend i {
  background: #344767;
  border-radius: 999px;
  display: inline-block;
  height: 0.5rem;
  width: 0.5rem;
}

.tmt-time-range-timeline__legend i.is-standard {
  background: #4caf50;
}

.tmt-time-range-timeline__legend i.is-night {
  background: #17c1e8;
}

.tmt-time-range-timeline__legend i.is-overtime {
  background: #fb8c00;
}

.tmt-time-range-timeline__scroll {
  border: 1px solid var(--tmt-color-border, #dee2e6);
  border-radius: 0.5rem;
  overflow: auto;
}

.tmt-time-range-timeline__board {
  background: var(--tmt-color-surface, #ffffff);
  min-width: 86rem;
  overflow: hidden;
}

.tmt-time-range-timeline__axis,
.tmt-time-range-timeline__row {
  display: grid;
  grid-template-columns: 16.25rem minmax(69.75rem, 1fr);
}

.tmt-time-range-timeline__axis {
  background: #f8f9fa;
  border-bottom: 1px solid var(--tmt-color-border, #dee2e6);
}

.tmt-time-range-timeline__row:not(:last-child) {
  border-bottom: 1px solid #edf0f2;
}

.tmt-time-range-timeline__row.is-shift {
  border-bottom: 2px solid var(--tmt-color-border, #dee2e6);
}

.tmt-time-range-timeline__row.is-shift .tmt-time-range-timeline__identity {
  background: #f8f9fa;
}

.tmt-time-range-timeline__row.is-selected .tmt-time-range-timeline__identity {
  box-shadow: inset 3px 0 0 #344767, 4px 0 8px rgba(33, 37, 41, 0.04);
}

.tmt-time-range-timeline__identity {
  background: var(--tmt-color-surface, #ffffff);
  border-right: 1px solid var(--tmt-color-border, #dee2e6);
  box-shadow: 4px 0 8px rgba(33, 37, 41, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  min-width: 0;
  padding: 0.65rem 0.75rem;
  position: sticky;
  z-index: 4;
}

.tmt-time-range-timeline__axis .tmt-time-range-timeline__identity {
  color: var(--tmt-color-muted, #6c757d);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tmt-time-range-timeline__identity strong {
  color: #344767;
  font-size: 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tmt-time-range-timeline__identity span {
  color: var(--tmt-color-muted, #6c757d);
  font-size: 0.68rem;
  margin-top: 0.15rem;
}

.tmt-time-range-timeline__select {
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}

.tmt-time-range-timeline__select:hover strong,
.tmt-time-range-timeline__select:focus-visible strong {
  color: #1a73e8;
}

.tmt-time-range-timeline__select:focus-visible {
  outline: 2px solid rgba(26, 115, 232, 0.3);
  outline-offset: 0.2rem;
}

.tmt-time-range-timeline__ticks {
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
}

.tmt-time-range-timeline__ticks span {
  align-items: center;
  border-right: 1px solid var(--tmt-color-border-light, #e9ecef);
  color: var(--tmt-color-muted, #6c757d);
  display: flex;
  font-size: 0.65rem;
  font-weight: 700;
  justify-content: flex-end;
  min-height: 2.5rem;
  padding-right: 0.2rem;
}

.tmt-time-range-timeline__lane {
  background-color: #f8f9fa;
  background-image: linear-gradient(to right, transparent calc(100% - 1px), var(--tmt-color-border-light, #e9ecef) calc(100% - 1px));
  background-size: 4.1666666667% 100%;
  min-height: 4.875rem;
  overflow: hidden;
  position: relative;
}

.tmt-time-range-timeline__event {
  background: #344767;
  border-left: 3px solid rgba(63, 81, 181, 0.95);
  border-radius: 0.125rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 3.125rem;
  justify-content: center;
  left: var(--timeline-left);
  min-width: 2px;
  overflow: visible;
  padding: 0.4rem 0.5rem;
  position: absolute;
  top: 0.875rem;
  width: var(--timeline-width);
  z-index: 3;
}

.tmt-time-range-timeline__event:hover,
.tmt-time-range-timeline__event:focus-within {
  z-index: 6;
}

.tmt-time-range-timeline__event.is-placeholder {
  background: rgba(52, 71, 103, 0.08);
  border: 1px dashed rgba(52, 71, 103, 0.45);
  box-shadow: none;
  color: #344767;
  pointer-events: none;
  z-index: 1;
}

.tmt-time-range-timeline__actions {
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(33, 37, 41, 0.22);
  display: flex;
  gap: 0.1rem;
  justify-content: center;
  opacity: 0;
  padding: 0.15rem;
  position: absolute;
  left: 50%;
  pointer-events: none;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
  z-index: 4;
}

.tmt-time-range-timeline__event:hover .tmt-time-range-timeline__actions,
.tmt-time-range-timeline__event:focus-within .tmt-time-range-timeline__actions {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.tmt-time-range-timeline__action {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: #344767;
  display: inline-flex;
  height: 1.7rem;
  justify-content: center;
  padding: 0;
  width: 1.7rem;
}

.tmt-time-range-timeline__action:hover,
.tmt-time-range-timeline__action:focus-visible {
  background: #f1f3f5;
  outline: 0;
}

.tmt-time-range-timeline__action.is-info {
  color: #1a73e8;
}

.tmt-time-range-timeline__action.is-edit {
  color: #344767;
}

.tmt-time-range-timeline__action.is-delete {
  color: #f44335;
}

.tmt-time-range-timeline__action .material-icons-round {
  font-size: 1rem;
}

.tmt-time-range-timeline__empty-slots {
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.tmt-time-range-timeline__empty-slot {
  align-items: center;
  display: flex;
  justify-content: center;
}

.tmt-time-range-timeline__add {
  align-items: center;
  background: #ffffff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(33, 37, 41, 0.18);
  color: #344767;
  display: flex;
  height: 1.75rem;
  justify-content: center;
  opacity: 0;
  padding: 0;
  transform: scale(0.85);
  transition: opacity 0.15s ease, transform 0.15s ease;
  width: 1.75rem;
}

.tmt-time-range-timeline__empty-slot:hover .tmt-time-range-timeline__add,
.tmt-time-range-timeline__add:focus-visible {
  opacity: 1;
  transform: scale(1);
}

.tmt-time-range-timeline__add .material-icons-round {
  font-size: 1.1rem;
  line-height: 1;
}

.tmt-time-range-timeline__event strong,
.tmt-time-range-timeline__event small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tmt-time-range-timeline__event strong {
  font-size: 0.72rem;
  line-height: 1.1;
}

.tmt-time-range-timeline__event small {
  font-size: 0.62rem;
  line-height: 1.2;
  margin-top: 0.15rem;
}

.tmt-time-range-timeline__event.is-standard {
  background: #4caf50;
}

.tmt-time-range-timeline__event.is-night {
  background: #17c1e8;
}

.tmt-time-range-timeline__event.is-overtime {
  background: #fb8c00;
}

.tmt-time-range-timeline__next-day {
  background: rgba(255, 255, 255, 0.24);
  border-radius: 0.2rem;
  bottom: 0.25rem;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.16rem 0.22rem;
  position: absolute;
  right: 0.25rem;
}

.tmt-time-range-timeline__empty {
  color: var(--tmt-color-muted, #6c757d);
  padding: 1rem;
  text-align: center;
}

@media (max-width: 767.98px) {
  .tmt-time-range-timeline__header {
    flex-direction: column;
  }
}
/* Reusable 24-hour timeline for shift milestones, punch windows, breaks and overtime limits. */
.tmt-time-point-timeline {
  --tmt-time-point-line: #344767;
  --tmt-time-point-neutral: #8392ab;
  --tmt-time-point-work: #4caf50;
  --tmt-time-point-break: #fb8c00;
  --tmt-time-point-clock-in: #1a73e8;
  --tmt-time-point-clock-out: #e91e63;
  --tmt-time-point-overtime: #00acc1;
}

.tmt-time-point-timeline__header {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.tmt-time-point-timeline__legend {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tmt-time-point-timeline__legend span {
  align-items: center;
  color: var(--tmt-color-muted, #6c757d);
  display: inline-flex;
  font-size: 0.75rem;
  gap: 0.35rem;
}

.tmt-time-point-timeline__legend i {
  background: var(--tmt-time-point-neutral);
  border-radius: 50%;
  display: inline-block;
  height: 0.55rem;
  width: 0.55rem;
}

.tmt-time-point-timeline__legend i.is-work {
  background: var(--tmt-time-point-work);
}

.tmt-time-point-timeline__legend i.is-break {
  background: var(--tmt-time-point-break);
}

.tmt-time-point-timeline__legend i.is-clock-in {
  background: var(--tmt-time-point-clock-in);
}

.tmt-time-point-timeline__legend i.is-clock-out {
  background: var(--tmt-time-point-clock-out);
}

.tmt-time-point-timeline__legend i.is-overtime {
  background: var(--tmt-time-point-overtime);
}

.tmt-time-point-timeline__scroll {
  border: 1px solid var(--tmt-color-border, #dee2e6);
  border-radius: 0.5rem;
  overflow: auto;
}

.tmt-time-point-timeline__board {
  background: var(--tmt-color-surface, #ffffff);
  min-width: 68rem;
}

.tmt-time-point-timeline__axis,
.tmt-time-point-timeline__row {
  display: grid;
  grid-template-columns: 14rem minmax(54rem, 1fr);
}

.tmt-time-point-timeline__axis {
  background: #f8f9fa;
  border-bottom: 1px solid var(--tmt-color-border, #dee2e6);
  color: var(--tmt-color-muted, #6c757d);
  font-size: 0.68rem;
  font-weight: 700;
  min-height: 2.5rem;
  text-transform: uppercase;
}

.tmt-time-point-timeline__axis-label,
.tmt-time-point-timeline__axis-hours {
  align-items: center;
  display: flex;
  padding: 0.65rem 0.75rem;
}

.tmt-time-point-timeline__axis-label {
  border-right: 1px solid var(--tmt-color-border, #dee2e6);
  left: 0;
  position: sticky;
  z-index: 10;
}

.tmt-time-point-timeline__axis-hours {
  justify-content: center;
}

.tmt-time-point-timeline__row:not(:last-child) {
  border-bottom: 1px solid #edf0f2;
}

.tmt-time-point-timeline__identity {
  align-items: center;
  background: var(--tmt-color-surface, #ffffff);
  border-right: 1px solid var(--tmt-color-border, #dee2e6);
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  left: 0;
  min-width: 0;
  padding: 0.75rem;
  position: sticky;
  z-index: 10;
}

.tmt-time-point-timeline__identity-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.tmt-time-point-timeline__identity-copy strong,
.tmt-time-point-timeline__identity-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tmt-time-point-timeline__identity-copy strong {
  color: #344767;
  font-size: 0.75rem;
}

.tmt-time-point-timeline__identity-copy span,
.tmt-time-point-timeline__identity-copy small {
  color: var(--tmt-color-muted, #6c757d);
  font-size: 0.68rem;
  margin-top: 0.15rem;
}

.tmt-time-point-timeline__identity-copy small.is-active {
  color: #2e7d32;
}

.tmt-time-point-timeline__identity-copy small.is-inactive {
  color: var(--tmt-color-muted, #6c757d);
}

.tmt-time-point-timeline__actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 0.15rem;
}

.tmt-time-point-timeline__action {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  color: #67748e;
  display: inline-flex;
  height: 1.75rem;
  justify-content: center;
  padding: 0;
  width: 1.75rem;
}

.tmt-time-point-timeline__action.is-delete {
  color: #f44335;
}

.tmt-time-point-timeline__action .material-icons-round {
  font-size: 1rem;
}

.tmt-time-point-timeline__lane {
  height: 8.875rem;
  min-width: 0;
  position: relative;
}

.tmt-time-point-timeline__line {
  background: var(--tmt-time-point-line);
  height: 3px;
  left: 2.083%;
  position: absolute;
  right: 2.083%;
  top: 4.844rem;
  z-index: 4;
}

.tmt-time-point-timeline__segment {
  background: var(--tmt-time-point-neutral);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  height: 0.4375rem;
  left: var(--time-point-left);
  opacity: 0.62;
  padding: 0;
  position: absolute;
  top: 4.72rem;
  width: var(--time-point-width);
  z-index: 5;
}

.tmt-time-point-timeline__segment.is-emphasis {
  height: 0.5625rem;
  opacity: 0.7;
  top: 4.655rem;
}

.tmt-time-point-timeline__segment.is-work {
  background: var(--tmt-time-point-work);
  opacity: 0.28;
}

.tmt-time-point-timeline__segment.is-break {
  background: var(--tmt-time-point-break);
}

.tmt-time-point-timeline__segment.is-clock-in {
  background: var(--tmt-time-point-clock-in);
}

.tmt-time-point-timeline__segment.is-clock-out {
  background: var(--tmt-time-point-clock-out);
}

.tmt-time-point-timeline__segment.is-overtime {
  background: var(--tmt-time-point-overtime);
}

.tmt-time-point-timeline__hours {
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.tmt-time-point-timeline__hour {
  position: relative;
}

.tmt-time-point-timeline__hour i {
  background: var(--tmt-time-point-neutral);
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  height: 0.8125rem;
  left: 50%;
  position: absolute;
  top: 4.5rem;
  transform: translateX(-50%);
  width: 0.8125rem;
  z-index: 6;
}

.tmt-time-point-timeline__hour small {
  color: var(--tmt-color-muted, #6c757d);
  font-size: 0.65rem;
  left: 50%;
  position: absolute;
  top: 5.7rem;
  transform: translateX(-50%);
}

.tmt-time-point-timeline__hour.is-work i {
  background: var(--tmt-time-point-work);
}

.tmt-time-point-timeline__hour.is-break i {
  background: var(--tmt-time-point-break);
}

.tmt-time-point-timeline__hour.is-clock-in i {
  background: var(--tmt-time-point-clock-in);
}

.tmt-time-point-timeline__hour.is-clock-out i {
  background: var(--tmt-time-point-clock-out);
}

.tmt-time-point-timeline__hour.is-overtime i {
  background: var(--tmt-time-point-overtime);
}

.tmt-time-point-timeline__dot {
  background: var(--tmt-time-point-neutral);
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  height: 0.5rem;
  left: var(--time-point-left);
  padding: 0;
  position: absolute;
  top: 4.66rem;
  transform: translateX(-50%);
  width: 0.5rem;
  z-index: 7;
}

.tmt-time-point-timeline__dot.is-clock-in {
  background: var(--tmt-time-point-clock-in);
}

.tmt-time-point-timeline__dot.is-clock-out {
  background: var(--tmt-time-point-clock-out);
}

.tmt-time-point-timeline__marker {
  align-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--tmt-time-point-neutral);
  display: flex;
  justify-content: center;
  left: var(--time-point-left);
  padding: 0;
  position: absolute;
  transform: translateX(-50%);
  z-index: 8;
}

.tmt-time-point-timeline__marker.is-large {
  height: 3.5rem;
  top: 1.125rem;
  width: 2.375rem;
}

.tmt-time-point-timeline__marker.is-small {
  height: 2.5rem;
  top: 2.125rem;
  width: 1.625rem;
}

.tmt-time-point-timeline__marker.is-work {
  color: var(--tmt-time-point-work);
}

.tmt-time-point-timeline__marker.is-break {
  color: var(--tmt-time-point-break);
}

.tmt-time-point-timeline__marker svg {
  display: block;
  fill: currentColor;
  height: 100%;
  width: 100%;
}

.tmt-time-point-timeline__marker b {
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  left: 50%;
  position: absolute;
  top: 38%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.tmt-time-point-timeline__marker.is-small b {
  font-size: 0.55rem;
}

.tmt-time-point-timeline__marker-next-day {
  color: #ffffff;
  font-size: 0.5rem;
  font-weight: 700;
  left: 50%;
  position: absolute;
  top: 56%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.tmt-time-point-timeline__empty {
  color: var(--tmt-color-muted, #6c757d);
  padding: 1rem;
  text-align: center;
}

@media (max-width: 767.98px) {
  .tmt-time-point-timeline__header {
    flex-direction: column;
  }
}
/* Searchable form select */
.tmt-searchable-select {
  margin-bottom: 1.5rem;
}

.tmt-searchable-select > .form-label {
  color: #7b809a;
  font-size: 0.875rem;
  margin-bottom: 0.45rem;
}

.tmt-searchable-select__trigger {
  align-items: center;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  min-height: 42px;
  padding: 0.625rem 0.75rem;
  text-align: left;
  width: 100%;
}

.tmt-searchable-select__trigger::after {
  display: none;
}

.tmt-searchable-select__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tmt-searchable-select__chevron {
  flex: 0 0 auto;
  font-size: 1.2rem;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.tmt-searchable-select__trigger[aria-expanded=true] .tmt-searchable-select__chevron {
  transform: rotate(180deg);
}

.tmt-searchable-select__menu {
  max-width: 100%;
  min-width: 100%;
  width: 100%;
}

.tmt-searchable-select__search {
  align-items: center;
  display: flex;
  position: relative;
}

.tmt-searchable-select__search > .material-icons-round {
  color: #7b809a;
  font-size: 1.1rem;
  left: 0.7rem;
  pointer-events: none;
  position: absolute;
}

.tmt-searchable-select__search > .form-control {
  padding-left: 2.25rem;
}

.tmt-searchable-select__options {
  max-height: 16rem;
  overflow-y: auto;
}

.tmt-searchable-select__option {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.8fr) minmax(10rem, 1.5fr) 1rem;
  padding: 0;
}

.tmt-searchable-select__option-code,
.tmt-searchable-select__option-name {
  min-width: 0;
  overflow: hidden;
  padding: 0.65rem 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tmt-searchable-select__option-code {
  color: #7b809a;
  font-size: 0.75rem;
}

.tmt-searchable-select__option-name {
  border-left: 1px solid rgba(123, 128, 154, 0.18);
  font-size: 0.82rem;
  font-weight: 600;
}

.tmt-searchable-select__option > .material-icons-round {
  flex: 0 0 auto;
  font-size: 1rem;
  justify-self: center;
}

.tmt-searchable-select__option.active,
.tmt-searchable-select__option:active {
  background-color: rgba(233, 30, 99, 0.08);
  color: #344767;
}

/* Searchable multi-select */
.tmt-searchable-multi-select__options {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.tmt-searchable-multi-select__option {
  align-items: stretch;
  border-radius: 0.375rem;
  color: #344767;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1.25rem 3.75rem minmax(0, 1fr);
  margin: 0;
  min-height: 3rem;
  padding: 0 0.5rem;
}

.tmt-searchable-multi-select__option:hover,
.tmt-searchable-multi-select__option.active {
  background-color: rgba(233, 30, 99, 0.08);
}

.tmt-searchable-multi-select__option.disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.tmt-searchable-multi-select__check {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  position: relative;
}

.tmt-searchable-multi-select__checkbox {
  cursor: pointer;
  height: 1.15rem;
  inset: 50% auto auto 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  transform: translateY(-50%);
  width: 1.15rem;
  z-index: 1;
}

.tmt-searchable-multi-select__check-indicator {
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #aeb5c5;
  border-radius: 0.25rem;
  color: #ffffff;
  display: flex;
  height: 1.15rem;
  justify-content: center;
  pointer-events: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  width: 1.15rem;
}

.tmt-searchable-multi-select__check-indicator > .material-icons-round {
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.tmt-searchable-multi-select__checkbox:checked + .tmt-searchable-multi-select__check-indicator {
  background-color: #e91e63;
  border-color: #e91e63;
}

.tmt-searchable-multi-select__checkbox:checked + .tmt-searchable-multi-select__check-indicator > .material-icons-round {
  opacity: 1;
  transform: scale(1);
}

.tmt-searchable-multi-select__checkbox:focus-visible + .tmt-searchable-multi-select__check-indicator {
  box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.2);
}

.tmt-searchable-multi-select__checkbox:disabled {
  cursor: not-allowed;
}

.tmt-searchable-multi-select__icon {
  align-items: center;
  border-right: 1px solid rgba(123, 128, 154, 0.22);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  margin-right: 0.75rem;
  padding-left: 1rem;
}

.tmt-searchable-multi-select__icon > .material-icons-round {
  color: #7b809a;
  font-size: 1.2rem;
}

.tmt-searchable-multi-select__text {
  align-self: center;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0.5rem 0;
}

.tmt-searchable-multi-select__title,
.tmt-searchable-multi-select__meta {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tmt-searchable-multi-select__title {
  font-size: 0.82rem;
  font-weight: 600;
}

.tmt-searchable-multi-select__meta {
  color: #7b809a;
  font-size: 0.72rem;
  margin-top: 0.1rem;
}

/* Global validation notifications */
.tmt-toast-region {
  bottom: 1.25rem;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.65rem;
  left: 1.25rem;
  max-width: min(25rem, 100vw - 2rem);
  pointer-events: none;
  position: fixed;
  z-index: 11000;
}

.tmt-validation-toast {
  align-items: flex-start;
  animation: tmt-toast-enter 0.24s ease-out both;
  background: #ffffff;
  border-left: 4px solid #f44335;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1.25rem rgba(33, 37, 41, 0.16);
  color: #212529;
  display: flex;
  gap: 0.65rem;
  min-width: 18rem;
  padding: 0.8rem 0.9rem;
  pointer-events: auto;
}

.tmt-validation-toast.is-leaving {
  animation: tmt-toast-leave 0.18s ease-in both;
}

.tmt-validation-toast-icon {
  color: #f44335;
  flex: 0 0 auto;
  font-size: 1.25rem;
  margin-top: 0.05rem;
}

.tmt-validation-toast--success {
  border-left-color: #4caf50;
}

.tmt-validation-toast--success .tmt-validation-toast-icon {
  color: #4caf50;
}

.tmt-validation-toast-message {
  flex: 1 1 auto;
  font-size: 0.82rem;
  line-height: 1.4;
  margin: 0;
}

.tmt-validation-toast-close {
  background: transparent;
  border: 0;
  color: #6c757d;
  cursor: pointer;
  flex: 0 0 auto;
  line-height: 1;
  padding: 0;
}

.tmt-validation-toast-close .material-icons {
  font-size: 1rem;
}

@keyframes tmt-toast-enter {
  from {
    opacity: 0;
    transform: translateX(-1.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes tmt-toast-leave {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-1rem);
  }
}
@media (max-width: 575.98px) {
  .tmt-toast-region {
    bottom: auto;
    left: 0.75rem;
    max-width: calc(100vw - 1.5rem);
    right: 0.75rem;
    top: max(0.75rem, env(safe-area-inset-top));
  }
  .tmt-validation-toast {
    min-width: 0;
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tmt-validation-toast,
  .tmt-validation-toast.is-leaving {
    animation: none;
  }
}
.tmt-shift-detail-tooltip .tooltip-inner {
  max-width: 320px;
  text-align: left;
  white-space: pre-line;
}

.tmt-sidebar-mini-tooltip {
  z-index: 12000 !important;
}

.tmt-guidance-popover .popover-body {
  white-space: pre-line;
}

.tmt-processing-overlay {
  position: fixed;
  z-index: 13000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(20, 25, 35, 0.48);
  backdrop-filter: blur(2px);
}

.tmt-processing-overlay__panel {
  width: min(100%, 440px);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 24px 70px rgba(20, 23, 31, 0.28);
}

.tmt-processing-overlay__progress {
  height: 4px;
}

.tmt-processing-overlay__progress .progress-bar {
  width: 100%;
}

.tmt-device-info-waiting-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(248, 249, 250, 0.92);
  backdrop-filter: blur(2px);
}

.tmt-device-info-waiting-overlay__panel {
  width: min(100%, 30rem);
  padding: 1rem;
}

.btn .tmt-device-info-modal-action-icon {
  font-size: 1.25rem !important;
  line-height: 1;
  vertical-align: middle;
}

@media (max-width: 575.98px) {
  .tmt-device-info-modal .modal-header {
    align-items: flex-start;
    padding-right: 3.5rem;
    position: relative;
  }
  .tmt-device-info-modal .tmt-device-info-header-close {
    align-items: center;
    display: inline-flex;
    height: 2rem;
    justify-content: center;
    margin: 0;
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 2rem;
  }
  .tmt-device-info-modal .tmt-device-info-footer-close {
    display: none;
  }
  .tmt-device-info-modal .tmt-device-info-footer-actions {
    flex-wrap: nowrap !important;
    width: 100%;
  }
  .tmt-device-info-modal .tmt-device-info-footer-actions > .btn {
    flex: 1 1 0;
    font-size: 0.65rem;
    min-width: 0;
    padding-inline: 0.5rem;
    white-space: nowrap;
  }
  .tmt-device-info-modal .tmt-device-info-footer-actions .tmt-device-info-modal-action-icon {
    font-size: 1rem !important;
  }
}
.tmt-device-command-stream {
  height: 420px;
  overflow: auto;
}

.tmt-device-http-table__info {
  min-width: 320px;
}

@media (max-width: 575.98px) {
  .tmt-device-command-stream {
    overflow-x: visible;
  }
  .tmt-device-http-table,
  .tmt-device-http-table tbody {
    display: block;
    min-width: 0;
    width: 100%;
  }
  .tmt-device-http-table thead {
    display: none;
  }
  .tmt-device-http-table tbody .tmt-device-http-event {
    background: var(--tmt-color-surface);
    border: 1px solid var(--tmt-color-border-light);
    border-left: 3px solid var(--tmt-color-brand);
    border-radius: 0.75rem;
    display: block;
    margin: 0.75rem;
    overflow: hidden;
  }
  .tmt-device-http-table tbody .tmt-device-http-event--request {
    border-left-color: #4caf50;
  }
  .tmt-device-http-table tbody .tmt-device-http-event--response {
    border-left-color: #1a73e8;
  }
  .tmt-device-http-table tbody .tmt-device-http-event > td {
    align-items: start;
    background: transparent;
    border-bottom: 1px solid var(--tmt-color-border-light);
    display: grid;
    grid-template-columns: minmax(72px, 0.34fr) minmax(0, 1fr);
    min-width: 0;
    padding: 0.625rem 0.75rem !important;
    white-space: normal;
    width: 100%;
  }
  .tmt-device-http-table tbody .tmt-device-http-event > td::before {
    color: var(--tmt-color-muted);
    content: attr(data-label);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    padding-top: 0.15rem;
    text-transform: uppercase;
  }
  .tmt-device-http-table tbody .tmt-device-http-event > td:last-child {
    border-bottom: 0;
  }
  .tmt-device-http-table .tmt-device-http-table__info {
    min-width: 0;
  }
  .tmt-device-http-table .tmt-device-http-table__info pre {
    max-height: 12rem;
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-word;
  }
  .tmt-device-http-table tbody .tmt-device-http-table__empty {
    background: var(--tmt-color-surface-muted);
    border: 1px dashed var(--tmt-color-border-light);
    border-radius: 0.75rem;
    display: block;
    margin: 0.75rem;
    padding: 1.25rem 1rem !important;
    width: calc(100% - 1.5rem);
  }
  .tmt-device-http-table tbody .tmt-device-http-empty-row {
    display: block;
    width: 100%;
  }
  .tmt-device-http-table__empty-icon {
    font-size: 1.5rem;
    line-height: 1;
  }
  .tmt-device-http-table__empty > .font-weight-bold {
    margin-bottom: 0 !important;
  }
}
.tmt-device-command-response {
  height: clamp(360px, 52vh, 640px);
  overflow: auto;
  overscroll-behavior: contain;
}

.tmt-device-command-response-disclosure > summary {
  cursor: pointer;
  list-style: none;
}

.tmt-device-command-response-disclosure > summary::-webkit-details-marker {
  display: none;
}

.tmt-device-command-response-disclosure__icon {
  transition: transform 180ms ease;
}

.tmt-device-command-response-disclosure[open] .tmt-device-command-response-disclosure__icon {
  transform: rotate(180deg);
}

.tmt-device-command-payload {
  min-height: 100%;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.tmt-file-input::file-selector-button {
  padding-inline: 0.75rem;
  margin-inline-end: 0.75rem;
}

.tmt-file-input::-webkit-file-upload-button {
  padding-inline: 0.75rem;
  margin-inline-end: 0.75rem;
}

.tmt-import-wizard {
  overflow: hidden;
}

.tmt-import-wizard__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tmt-import-wizard__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 0 0.75rem;
  text-align: center;
  color: #8392ab;
}

.tmt-import-wizard__step:not(:last-child)::after {
  position: absolute;
  top: 24px;
  left: calc(50% + 24px);
  width: calc(100% - 48px);
  height: 3px;
  content: "";
  background: #e9ecef;
}

.tmt-import-wizard__step.is-complete:not(:last-child)::after {
  background: #344767;
}

.tmt-import-wizard__marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.65rem;
  color: #8392ab;
  background: #f0f2f5;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #dee2e6;
}

.tmt-import-wizard__marker .material-icons-round {
  font-size: 21px;
}

.tmt-import-wizard__step.is-active,
.tmt-import-wizard__step.is-complete {
  color: #344767;
}

.tmt-import-wizard__step.is-active .tmt-import-wizard__marker,
.tmt-import-wizard__step.is-complete .tmt-import-wizard__marker {
  color: #fff;
  background: linear-gradient(195deg, #42424a, #191919);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.tmt-import-wizard__step strong {
  font-size: 0.875rem;
}

.tmt-import-wizard__step span {
  margin-top: 0.2rem;
  font-size: 0.75rem;
}

.tmt-import-wizard__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  background: linear-gradient(195deg, #42424a, #191919);
}

.tmt-import-wizard__footer {
  min-height: 72px;
  padding: 1rem;
}

.tmt-import-wizard__footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  margin-inline: auto;
}

.tmt-import-wizard__footer-slot {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.tmt-import-wizard__footer-slot.is-end {
  justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .tmt-import-wizard__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 0;
  }
  .tmt-import-wizard__step:nth-child(2)::after {
    display: none;
  }
  .tmt-import-wizard__footer-inner {
    gap: 0.75rem;
  }
  .tmt-import-wizard__footer .tmt-page-action {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .tmt-import-wizard__footer-inner {
    width: 58.333333%;
  }
  .tmt-import-wizard__footer-inner.is-wide {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .tmt-biodata-page {
    padding: 1rem 0.75rem !important;
  }
  .tmt-biodata-page > .row > .col-12 > .card > .card-body {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
  .tmt-biodata-tab-panel {
    margin-top: 1rem !important;
  }
  .tmt-biodata-section-card {
    border: 1px solid var(--tmt-color-border, #e3e6ef);
    box-shadow: none;
  }
  .tmt-biodata-section-card > .card-header,
  .tmt-biodata-section-card > .card-body {
    padding: 0.75rem !important;
  }
  .tmt-biodata-visual-controls {
    margin-bottom: 1rem !important;
  }
  .tmt-biodata-choice,
  .tmt-biodata-device-choice,
  .tmt-biodata-biometric-choice {
    min-height: 44px;
  }
  .tmt-biodata-choice {
    align-items: center !important;
    margin-bottom: 0.25rem !important;
    padding: 0.5rem 0.25rem;
  }
  .tmt-biodata-choice input,
  .tmt-biodata-device-choice input,
  .tmt-biodata-biometric-choice input {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 0 !important;
  }
  .tmt-biodata-device-choice {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .tmt-biodata-biometric-choice {
    align-items: center !important;
    padding: 0.75rem !important;
  }
  .tmt-biodata-primary-action {
    min-height: 44px;
  }
  .tmt-hand-board {
    gap: 0.75rem;
  }
  .tmt-hand-panel {
    padding: 0.5rem;
  }
  .tmt-finger-marker::before {
    position: absolute;
    inset: -11px;
    content: "";
  }
  .tmt-face-photo-grid {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }
  .tmt-face-photo-grid > [class*=col-] {
    flex: 0 0 auto;
    width: 50%;
  }
  .tmt-face-photo-frame,
  .tmt-face-photo-empty {
    min-height: 180px;
  }
  .tmt-face-photo-frame img {
    height: 180px;
  }
  .tmt-face-photo-label {
    top: 0.5rem;
    left: 0.5rem;
    max-width: calc(100% - 1rem);
    padding: 0.3rem 0.5rem;
    overflow: hidden;
    font-size: 0.62rem;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .tmt-face-photo-empty {
    gap: 0.35rem;
    padding: 0.75rem;
    font-size: 0.72rem;
    text-align: center;
  }
  .tmt-face-photo-empty .material-icons-round {
    font-size: 2rem;
  }
  .tmt-biodata-managed-card > .card-header {
    padding-bottom: 0.75rem !important;
  }
  .tmt-biodata-managed-card > .card-body {
    padding: 0 0.5rem 0.5rem !important;
  }
  .tmt-biodata-toolbar {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem !important;
  }
  .tmt-biodata-toolbar .tmt-table-search,
  .tmt-biodata-toolbar .tmt-managed-bulk-summary,
  .tmt-biodata-toolbar-actions {
    grid-column: 1/-1;
    width: 100%;
    margin-left: 0 !important;
  }
  .tmt-biodata-toolbar .tmt-table-search {
    flex: 0 0 auto;
    max-width: none;
    min-height: 44px;
  }
  .tmt-biodata-toolbar .tmt-table-search > .form-control {
    min-height: 44px;
  }
  .tmt-biodata-toolbar-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem !important;
  }
  .tmt-biodata-toolbar-actions > .btn,
  .tmt-biodata-toolbar-actions > .dropdown > .btn {
    width: 100%;
    min-width: 44px;
    height: 44px;
  }
  .tmt-biodata-filter-menu,
  .tmt-biodata-columns-menu {
    padding: 0.75rem !important;
  }
  .tmt-biodata-filter-menu .dropdown-header,
  .tmt-biodata-columns-menu .dropdown-header {
    margin-bottom: 0.35rem;
    padding: 0.65rem 0.75rem;
  }
  .tmt-biodata-filter-menu .form-control,
  .tmt-biodata-filter-menu .form-select {
    min-height: 44px;
  }
  .tmt-biodata-filter-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }
  .tmt-biodata-filter-actions .dropdown-item {
    justify-content: center;
    min-height: 44px;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .tmt-biodata-filter-actions .tmt-icon-dropdown__icon {
    margin-right: 0.35rem;
  }
  .tmt-biodata-columns-menu .dropdown-item {
    min-height: 44px;
  }
  .tmt-biodata-filter-menu .form-check-input,
  .tmt-biodata-columns-menu .form-check-input {
    width: 20px;
    height: 20px;
  }
  .tmt-biodata-mobile-list {
    display: grid;
    gap: 0.75rem;
  }
  .tmt-biodata-mobile-select-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 0.5rem 0.25rem;
    color: var(--tmt-color-muted, #667085);
    font-size: 0.75rem;
  }
  .tmt-biodata-mobile-select-all .form-check-input,
  .tmt-biodata-mobile-card .form-check-input {
    width: 20px;
    height: 20px;
    margin: 0;
  }
  .tmt-biodata-mobile-card {
    overflow: visible;
    border: 1px solid var(--tmt-color-border, #e3e6ef);
    border-radius: 0.875rem;
    background: var(--tmt-color-surface, #fff);
  }
  .tmt-biodata-mobile-card > summary {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 32px;
    gap: 0.625rem;
    align-items: center;
    min-height: 76px;
    padding: 0.875rem 0.75rem;
    cursor: pointer;
    list-style: none;
  }
  .tmt-biodata-mobile-card > summary::-webkit-details-marker {
    display: none;
  }
  .tmt-biodata-mobile-card__select {
    display: grid;
    place-items: center;
    width: 24px;
    height: 44px;
  }
  .tmt-biodata-mobile-card__identity {
    min-width: 0;
  }
  .tmt-biodata-mobile-card__identity strong,
  .tmt-biodata-mobile-card__identity > span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .tmt-biodata-mobile-card__identity strong {
    color: var(--tmt-color-text, #344054);
    font-size: 0.9rem;
  }
  .tmt-biodata-mobile-card__identity > span {
    margin-top: 0.125rem;
    color: var(--tmt-color-muted, #667085);
    font-size: 0.72rem;
  }
  .tmt-biodata-mobile-card__chevron {
    display: grid;
    place-items: center;
    width: 32px;
    height: 44px;
    color: var(--tmt-color-muted, #667085);
  }
  .tmt-biodata-mobile-card__chevron .material-icons-round {
    transition: transform 160ms ease;
  }
  .tmt-biodata-mobile-card[open] .tmt-biodata-mobile-card__chevron .material-icons-round {
    transform: rotate(180deg);
  }
  .tmt-biodata-mobile-card__metrics {
    display: flex;
    grid-column: 2/-1;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    color: var(--tmt-color-muted, #667085);
    font-size: 0.68rem;
  }
  .tmt-biodata-mobile-card__metrics > span {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
  }
  .tmt-biodata-mobile-card__metrics .material-icons-round {
    font-size: 0.9rem;
  }
  .tmt-biodata-mobile-card__body {
    display: grid;
    gap: 0.75rem;
    padding: 0 0.75rem 0.75rem;
    border-top: 1px solid var(--tmt-color-border, #e3e6ef);
    border-radius: 0 0 0.875rem 0.875rem;
    background: var(--tmt-color-surface-subtle, #f8f9fc);
  }
  .tmt-biodata-mobile-device {
    margin-top: 0.75rem;
    overflow: visible;
    border: 1px solid var(--tmt-color-border, #e3e6ef);
    border-radius: 0.75rem;
    background: var(--tmt-color-surface, #fff);
  }
  .tmt-biodata-mobile-device__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem;
    border-bottom: 1px solid var(--tmt-color-border, #e3e6ef);
  }
  .tmt-biodata-mobile-device__header strong,
  .tmt-biodata-mobile-device__header > div > span {
    display: block;
  }
  .tmt-biodata-mobile-device__header strong {
    color: var(--tmt-color-text, #344054);
    font-size: 0.78rem;
  }
  .tmt-biodata-mobile-device__header > div > span {
    margin-top: 0.125rem;
    color: var(--tmt-color-muted, #667085);
    font-size: 0.68rem;
  }
  .tmt-biodata-mobile-device__select {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.35rem;
    min-height: 44px;
    color: var(--tmt-color-muted, #667085);
    font-size: 0.68rem;
  }
  .tmt-biodata-mobile-records {
    display: grid;
  }
  .tmt-biodata-mobile-record {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 44px;
    gap: 0.625rem;
    align-items: center;
    min-height: 72px;
    padding: 0.625rem 0.5rem 0.625rem 0.75rem;
  }
  .tmt-biodata-mobile-record + .tmt-biodata-mobile-record {
    border-top: 1px solid var(--tmt-color-border, #e3e6ef);
  }
  .tmt-biodata-mobile-record__select {
    display: grid;
    place-items: center;
    width: 24px;
    height: 44px;
  }
  .tmt-biodata-mobile-record__content {
    min-width: 0;
  }
  .tmt-biodata-mobile-record__title,
  .tmt-biodata-mobile-record__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .tmt-biodata-mobile-record__title strong {
    overflow: hidden;
    color: var(--tmt-color-text, #344054);
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .tmt-biodata-mobile-record__title .badge {
    flex: 0 0 auto;
    font-size: 0.62rem;
    text-transform: none;
  }
  .tmt-biodata-mobile-record__meta {
    flex-wrap: wrap;
    margin-top: 0.25rem;
    color: var(--tmt-color-muted, #667085);
    font-size: 0.66rem;
  }
  .tmt-biodata-mobile-record__meta span + span::before {
    margin-right: 0.5rem;
    content: "·";
  }
  .tmt-biodata-mobile-record__actions,
  .tmt-biodata-mobile-record__actions > .btn {
    width: 44px;
    height: 44px;
  }
  .tmt-biodata-mobile-record__actions > .btn {
    display: grid;
    place-items: center;
    margin: 0 !important;
  }
  .dropdown .tmt-biodata-record-actions-menu.show {
    position: fixed !important;
    inset: auto 1rem max(1rem, env(safe-area-inset-bottom)) !important;
    z-index: 10001;
    width: auto;
    max-height: calc(100dvh - 2rem);
    margin: 0;
    overflow-y: auto;
    transform: none !important;
  }
  .dropdown .tmt-biodata-record-actions-menu.show::before {
    display: none !important;
    content: none !important;
  }
  .tmt-biodata-mobile-empty {
    display: grid;
    place-items: center;
    min-height: 180px;
    padding: 1.5rem;
    color: var(--tmt-color-muted, #667085);
    text-align: center;
  }
  .tmt-biodata-mobile-empty .material-icons-round {
    font-size: 2rem;
  }
  .tmt-biodata-mobile-empty p {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
  }
  .tmt-biodata-table-wrap {
    max-height: 62dvh;
    overscroll-behavior: contain;
    border: 1px solid var(--tmt-color-border, #e3e6ef);
    border-radius: 0.75rem;
  }
  .tmt-biodata-table .tmt-column-filter-trigger {
    display: none;
  }
  .tmt-biodata-scroll-hint {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 0.5rem;
    color: var(--tmt-color-muted, #667085);
    font-size: 0.72rem;
  }
  .tmt-biodata-scroll-hint .material-icons-round {
    font-size: 1rem;
  }
  .tmt-biodata-table--split thead th {
    position: sticky;
  }
  .tmt-biodata-table--split .tmt-sticky-col {
    position: sticky;
  }
  .tmt-biodata-table .tmt-sticky-col--select {
    left: 0 !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
  }
  .tmt-biodata-table .tmt-sticky-col--index {
    display: none;
  }
  .tmt-biodata-table .tmt-sticky-col--employee {
    left: 44px !important;
    width: clamp(128px, 38vw, 148px) !important;
    min-width: clamp(128px, 38vw, 148px) !important;
    max-width: clamp(128px, 38vw, 148px) !important;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .tmt-biodata-table td.tmt-sticky-col--employee p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .tmt-biodata-table tbody > tr > td {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }
  .tmt-biodata-table .tmt-managed-col-device {
    min-width: 190px;
  }
  .tmt-biodata-table .tmt-managed-col-received {
    min-width: 145px;
  }
  .tmt-biodata-actions-cell {
    min-width: 148px;
  }
  .tmt-biodata-row-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
  }
  .tmt-biodata-row-actions .btn {
    display: inline-grid;
    flex: 0 0 44px;
    place-items: center;
    width: 44px;
    height: 44px;
    margin: 0;
  }
  .tmt-biodata-employee-group,
  .tmt-biodata-device-group {
    min-width: 250px;
  }
  .tmt-biodata-device-group {
    flex-wrap: wrap;
  }
  .tmt-biodata-group-summary {
    width: 100%;
    padding-left: 2rem;
  }
  .tmt-managed-bulk-summary {
    text-align: left !important;
  }
  .tmt-managed-bulk-summary .tmt-bulk-selection-summary__actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .tmt-managed-bulk-summary .btn {
    min-height: 44px;
    text-align: left;
  }
  .tmt-biodata-page .modal-dialog {
    margin: 0.75rem;
  }
  .tmt-biodata-page .modal-content {
    max-height: calc(100dvh - 1.5rem);
  }
  .tmt-biodata-page .modal-body {
    overflow-y: auto;
  }
  .tmt-biodata-page .modal-footer {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }
  .tmt-biodata-page .modal-footer .btn {
    flex: 1 1 0;
    min-height: 44px;
    margin: 0;
  }
  .tmt-enrollment-modal-backdrop {
    align-items: end;
    padding: 0;
  }
  .tmt-enrollment-modal {
    width: 100%;
    max-height: calc(100dvh - env(safe-area-inset-top) - 1rem);
    padding: 1.25rem 1rem calc(1rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    border-radius: 1rem 1rem 0 0;
  }
  .tmt-enrollment-modal-close {
    width: 44px;
    height: 44px;
  }
  .tmt-enrollment-summary > div {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
  }
}
.tmt-biodata-preview-table > :not(caption) > * > * {
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (max-width: 575.98px) {
  .tmt-device-employee-download-toolbar .tmt-bulk-selection-summary {
    width: 100%;
    margin-left: 0 !important;
    text-align: left !important;
  }
  .tmt-device-employee-download-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-left: 0 !important;
  }
  .tmt-device-employee-download-actions > .btn,
  .tmt-device-employee-download-actions > .dropdown,
  .tmt-device-employee-download-actions > .dropdown > .btn {
    width: 100%;
    min-width: 0;
  }
  .tmt-device-employee-download-actions > .btn,
  .tmt-device-employee-download-actions > .dropdown > .btn {
    display: inline-grid;
    place-items: center;
    height: 44px;
  }
  .tmt-device-compare-mobile {
    display: grid;
    gap: 0.75rem;
  }
  .tmt-device-compare-mobile__select-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    color: var(--tmt-color-muted, #667085);
    font-size: 0.72rem;
  }
  .tmt-device-compare-mobile__select-all .form-check-input,
  .tmt-device-compare-card .form-check-input {
    width: 20px;
    height: 20px;
    margin: 0;
  }
  .tmt-device-compare-card {
    overflow: visible;
    border: 1px solid var(--tmt-color-border, #e3e6ef);
    border-radius: 0.875rem;
    background: var(--tmt-color-surface, #fff);
  }
  .tmt-device-compare-card__header {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 0.25rem 0.625rem;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid var(--tmt-color-border, #e3e6ef);
  }
  .tmt-device-compare-card__select {
    display: grid;
    grid-row: 1/3;
    place-items: center;
    width: 24px;
    min-height: 44px;
  }
  .tmt-device-compare-card__identity {
    min-width: 0;
  }
  .tmt-device-compare-card__identity strong,
  .tmt-device-compare-card__identity > span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .tmt-device-compare-card__identity strong {
    color: var(--tmt-color-text, #344054);
    font-size: 0.88rem;
  }
  .tmt-device-compare-card__identity > span {
    margin-top: 0.125rem;
    color: var(--tmt-color-muted, #667085);
    font-size: 0.68rem;
  }
  .tmt-device-compare-card__header > .text-xs {
    grid-column: 2;
    white-space: normal;
  }
  .tmt-device-compare-card__body {
    display: grid;
    gap: 0.625rem;
    padding: 0.75rem;
  }
  .tmt-device-compare-card__field {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
  }
  .tmt-device-compare-card__field > span {
    color: var(--tmt-color-muted, #667085);
    font-size: 0.68rem;
  }
  .tmt-device-compare-card__field strong,
  .tmt-device-compare-card__field small {
    display: block;
    overflow-wrap: anywhere;
  }
  .tmt-device-compare-card__field strong {
    color: var(--tmt-color-text, #344054);
    font-size: 0.75rem;
    font-weight: 600;
  }
  .tmt-device-compare-card__field small {
    margin-top: 0.125rem;
    color: var(--tmt-color-muted, #667085);
    font-size: 0.66rem;
  }
  .tmt-device-compare-card__biometrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem 0.75rem;
  }
  .tmt-device-compare-card__biometrics > span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--tmt-color-muted, #667085);
    font-size: 0.68rem;
  }
  .tmt-device-compare-card__biometrics .material-icons-round {
    color: var(--tmt-color-brand, #e91e63);
    font-size: 1rem;
  }
  .tmt-device-compare-card__message {
    padding: 0.5rem 0.625rem;
    border-radius: 0.5rem;
    background: var(--tmt-color-surface-subtle, #f8f9fc);
    color: var(--tmt-color-muted, #667085);
    font-size: 0.68rem;
  }
  .tmt-device-compare-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 60px;
    padding: 0.5rem 0.75rem;
    border-top: 1px solid var(--tmt-color-border, #e3e6ef);
    color: var(--tmt-color-muted, #667085);
    font-size: 0.66rem;
  }
  .tmt-device-compare-card__actions,
  .tmt-device-compare-card__actions > .btn {
    width: 44px;
    height: 44px;
  }
  .tmt-device-compare-card__actions > .btn {
    display: grid;
    place-items: center;
    margin: 0 !important;
    border-radius: 50%;
    background: var(--tmt-color-surface-subtle, #f8f9fc);
  }
  .tmt-device-compare-card__no-action {
    text-align: right;
  }
  .dropdown .tmt-device-compare-actions-menu.show {
    position: fixed !important;
    inset: auto 1rem max(1rem, env(safe-area-inset-bottom)) !important;
    z-index: 10001;
    width: auto;
    max-height: calc(100dvh - 2rem);
    margin: 0;
    overflow-y: auto;
    transform: none !important;
  }
  .dropdown .tmt-device-compare-actions-menu.show::before {
    display: none !important;
    content: none !important;
  }
  .tmt-device-compare-mobile__empty {
    display: grid;
    place-items: center;
    min-height: 180px;
    padding: 1.5rem;
    border: 1px dashed var(--tmt-color-border, #e3e6ef);
    border-radius: 0.875rem;
    color: var(--tmt-color-muted, #667085);
    text-align: center;
  }
  .tmt-device-compare-mobile__empty .material-icons-round {
    font-size: 2rem;
  }
  .tmt-device-compare-mobile__empty p {
    margin: 0.5rem 0 0;
    font-size: 0.78rem;
  }
}
.tmt-dashboard-card-action__icon {
  display: none;
}

@media (min-width: 576px) {
  .tmt-dashboard-metrics__more.collapse,
  .tmt-dashboard-metrics__more-row {
    display: contents !important;
  }
  .tmt-dashboard-mobile-collapse.card-body {
    display: block !important;
  }
}
@media (max-width: 575.98px) {
  .tmt-dashboard-metrics {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }
  .tmt-dashboard-metric {
    border: 1px solid #dee2e6;
    box-shadow: none;
  }
  .tmt-dashboard-metric__body {
    align-items: center;
    display: flex;
    gap: 0.625rem;
    min-height: 4.5rem;
    padding: 0.75rem !important;
  }
  .tmt-dashboard-metric__top {
    flex: 0 0 2rem;
  }
  .tmt-dashboard-metric__top .icon-shape {
    height: 2rem;
    width: 2rem;
  }
  .tmt-dashboard-metric__top .icon-shape i {
    font-size: 1rem;
    line-height: 1;
    position: static;
  }
  .tmt-dashboard-metric__live,
  .tmt-dashboard-metric__change {
    display: none;
  }
  .tmt-dashboard-metric__content {
    margin-top: 0 !important;
    min-width: 0;
  }
  .tmt-dashboard-metric__label {
    font-size: 0.6875rem !important;
    line-height: 1.2;
  }
  .tmt-dashboard-metric__value {
    font-size: 1.25rem;
    line-height: 1.1;
  }
  .tmt-dashboard-metrics__toggle-column {
    text-align: center;
  }
  .tmt-dashboard-metrics__toggle {
    align-items: center;
    color: #344767;
    display: inline-flex;
    font-size: 0.75rem;
    gap: 0.25rem;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0 0.75rem;
    text-transform: none;
  }
  .tmt-dashboard-metrics__toggle i {
    font-size: 1.125rem;
    transition: transform 180ms ease;
  }
  .tmt-dashboard-metrics__toggle:not(.collapsed) i {
    transform: rotate(180deg);
  }
  .tmt-dashboard-metrics__toggle-less,
  .tmt-dashboard-metrics__toggle:not(.collapsed) .tmt-dashboard-metrics__toggle-more {
    display: none;
  }
  .tmt-dashboard-metrics__toggle:not(.collapsed) .tmt-dashboard-metrics__toggle-less {
    display: inline;
  }
  .tmt-dashboard-metrics__more {
    margin-top: 0;
    padding: 0;
  }
  .tmt-dashboard-metrics__more-row {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
    margin: 0;
  }
  .tmt-dashboard-collapsible-card > .card-header {
    padding: 1rem !important;
  }
  .tmt-dashboard-mobile-collapse__toggle {
    align-items: center;
    color: #344767;
    display: inline-flex;
    flex: 0 0 2.75rem;
    height: 2.75rem;
    justify-content: center;
    padding: 0;
    width: 2.75rem;
  }
  .tmt-dashboard-mobile-collapse__toggle i {
    font-size: 1.25rem;
    transition: transform 180ms ease;
  }
  .tmt-dashboard-mobile-collapse__toggle:not(.collapsed) i {
    transform: rotate(180deg);
  }
  .tmt-dashboard-card-header {
    align-items: flex-start !important;
    gap: 0.75rem;
  }
  .tmt-dashboard-card-header > div {
    min-width: 0;
  }
  .tmt-dashboard-card-action.btn {
    align-items: center;
    display: inline-flex;
    flex: 0 0 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
    width: 44px;
  }
  .tmt-dashboard-card-action__icon {
    display: block;
    flex: 0 0 22px;
    height: 22px;
    width: 22px;
  }
  .tmt-dashboard-card-action__label {
    display: none;
  }
}
@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  .tmt-dashboard-metrics__toggle i,
  .tmt-dashboard-mobile-collapse__toggle i {
    transition: none;
  }
}
.employee-create-page {
  min-width: 0;
}
.employee-create-page .option-card {
  border-radius: 0.75rem !important;
  color: var(--tmt-dropdown-text, #344767);
  min-height: 100%;
  text-transform: none;
  white-space: normal;
}
.employee-create-page .option-card.is-active {
  border-color: #344767 !important;
}
.employee-create-page .form-control,
.employee-create-page .form-select {
  min-height: 42px;
}
.employee-create-page__header-actions, .employee-create-page__footer-actions {
  display: flex;
  gap: 0.75rem;
}
.employee-create-page__step-icon {
  display: none;
}
.employee-create-page__accordion-trigger {
  display: none;
}

@media (max-width: 575.98px) {
  .employee-create-page {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .employee-create-page .card-header,
  .employee-create-page .card-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .employee-create-page__header-actions .tmt-page-action, .employee-create-page__footer-actions .tmt-page-action, .employee-create-page__page-header .tmt-page-action {
    flex: 0 0 44px;
    height: 44px;
    padding: 0;
    width: 44px;
  }
  .employee-create-page__header-actions .tmt-page-action > span, .employee-create-page__footer-actions .tmt-page-action > span, .employee-create-page__page-header .tmt-page-action > span {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
  .employee-create-page__navigation-action, .employee-create-page__navigation-only {
    display: none !important;
  }
  .employee-create-page__footer-actions .employee-create-page__save-action {
    -moz-column-gap: 8px;
         column-gap: 8px;
    display: grid !important;
    flex: 1 1 100%;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    grid-template-columns: 18px max-content;
    height: 44px;
    justify-content: center;
    justify-items: center;
    white-space: nowrap;
    width: 100%;
  }
  .employee-create-page__footer-actions .employee-create-page__save-action > span {
    clip: auto;
    clip-path: none;
    height: auto;
    overflow: visible;
    position: static;
    white-space: nowrap;
    width: auto;
  }
  .employee-create-page__footer-actions .employee-create-page__save-label {
    align-items: center;
    display: inline-flex !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    justify-content: center;
    line-height: 1;
    min-width: -moz-max-content;
    min-width: max-content;
    text-align: center;
    white-space: nowrap;
  }
  .employee-create-page__footer-actions .employee-create-page__save-label > span {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }
  .employee-create-page .option-card {
    border-radius: 0.75rem !important;
    min-height: 56px;
    padding: 0.625rem 0.75rem !important;
  }
  .employee-create-page .option-card > .d-flex {
    align-items: center !important;
    gap: 0.5rem;
  }
  .employee-create-page .option-card .avatar {
    height: 2rem;
    margin-right: 0.5rem !important;
    min-width: 2rem;
    width: 2rem;
  }
  .employee-create-page .option-card .avatar .material-icons-round {
    font-size: 1rem;
  }
  .employee-create-page .option-card h6 {
    font-size: 0.75rem;
    line-height: 1.2;
    margin-bottom: 0 !important;
  }
  .employee-create-page .option-card p,
  .employee-create-page .option-card .badge {
    display: none;
  }
  .employee-create-page__mode-options {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: 0;
    margin-right: 0;
  }
  .employee-create-page__mode-options > [class*=col-] {
    padding: 0;
    width: auto;
  }
  .employee-create-page .multisteps-form {
    margin-bottom: 2rem !important;
    margin-top: 2rem !important;
  }
  .employee-create-page .multisteps-form .card-header {
    display: none;
  }
  .employee-create-page .multisteps-form .card-body {
    padding: 0.75rem;
  }
  .employee-create-page .multisteps-form__form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .employee-create-page .multisteps-form__panel {
    border: 1px solid #dee2e6;
    height: auto !important;
    opacity: 1;
    overflow: hidden;
    padding: 0;
    position: relative;
    visibility: visible;
  }
  .employee-create-page .multisteps-form__panel[data-wizard-step="0"] {
    order: 0;
  }
  .employee-create-page .multisteps-form__panel[data-wizard-step="1"] {
    order: 1;
  }
  .employee-create-page .multisteps-form__panel[data-wizard-step="2"] {
    order: 2;
  }
  .employee-create-page .multisteps-form__panel[data-wizard-step="3"] {
    order: 3;
  }
  .employee-create-page .multisteps-form__panel:not(.js-active) > :not(.employee-create-page__accordion-trigger) {
    display: none;
  }
  .employee-create-page .multisteps-form__panel.js-active {
    padding: 0 1rem 1rem;
  }
  .employee-create-page .multisteps-form__panel > h5,
  .employee-create-page .multisteps-form__panel > h5 + p {
    display: none;
  }
  .employee-create-page .employee-create-page__accordion-trigger {
    align-items: center;
    background: #fff;
    border: 0;
    color: #344767;
    display: flex;
    font-size: 0.875rem;
    justify-content: space-between;
    min-height: 52px;
    padding: 0.75rem 1rem;
    text-align: left;
    width: 100%;
  }
  .employee-create-page .multisteps-form__panel.js-active .employee-create-page__accordion-trigger {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
    margin: 0 -1rem 1rem;
    width: calc(100% + 2rem);
  }
  .employee-create-page .employee-create-page__accordion-trigger i {
    font-size: 1.25rem;
    transition: transform 180ms ease;
  }
  .employee-create-page .employee-create-page__accordion-trigger.is-current i {
    transform: rotate(180deg);
  }
  .employee-create-page .multisteps-form__panel h5 {
    font-size: 1rem;
  }
  .employee-create-page .form-control,
  .employee-create-page .form-select {
    font-size: 1rem;
    min-height: 44px;
  }
  .employee-create-page__footer-actions {
    align-items: stretch;
  }
}
@media (max-width: 575.98px) {
  .tmt-employee-list-actions {
    justify-content: center;
    width: 100%;
  }
  .tmt-employee-mobile-list {
    display: grid;
    gap: 0.75rem;
  }
  .tmt-employee-mobile-list__select-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    color: var(--tmt-color-muted, #667085);
    font-size: 0.72rem;
  }
  .tmt-employee-mobile-list .form-check-input {
    width: 20px;
    height: 20px;
    margin: 0;
  }
  .tmt-employee-mobile-list .form-check-input:checked {
    background-color: var(--tmt-color-brand, #e91e63);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m3.5 8.5 3 3 6-7'/%3e%3c/svg%3e");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 0.85rem 0.85rem;
    border-color: var(--tmt-color-brand, #e91e63);
  }
  .tmt-employee-mobile-card {
    overflow: hidden;
    border: 1px solid var(--tmt-color-border, #e3e6ef);
    border-radius: 0.875rem;
    background: var(--tmt-color-surface, #fff);
  }
  .tmt-employee-mobile-card--editing {
    border-color: var(--tmt-color-brand, #e91e63);
  }
  .tmt-employee-mobile-card--archived {
    opacity: 0.72;
  }
  .tmt-employee-mobile-card__header {
    display: grid;
    grid-template-columns: 24px 40px minmax(0, 1fr);
    gap: 0.625rem;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid var(--tmt-color-border, #e3e6ef);
  }
  .tmt-employee-mobile-card__header--without-select {
    grid-template-columns: 40px minmax(0, 1fr);
  }
  .tmt-employee-mobile-card__select {
    display: grid;
    place-items: center;
    min-height: 44px;
  }
  .tmt-employee-mobile-card__identity {
    min-width: 0;
  }
  .tmt-employee-mobile-card__identity h6,
  .tmt-employee-mobile-card__identity span {
    overflow: hidden;
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .tmt-employee-mobile-card__identity h6 {
    font-size: 0.88rem;
  }
  .tmt-employee-mobile-card__identity span {
    display: block;
    margin-top: 0.125rem;
    color: var(--tmt-color-muted, #667085);
    font-size: 0.68rem;
  }
  .tmt-employee-mobile-card__status {
    grid-column: 2/-1;
  }
  .tmt-employee-mobile-card__details {
    display: grid;
    gap: 0.625rem;
    margin: 0;
    padding: 0.75rem;
  }
  .tmt-employee-mobile-card__details > div {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.75rem;
  }
  .tmt-employee-mobile-card__details dt {
    color: var(--tmt-color-muted, #667085);
    font-size: 0.68rem;
    font-weight: 400;
  }
  .tmt-employee-mobile-card__details dd {
    min-width: 0;
    margin: 0;
    color: var(--tmt-color-text, #344054);
    font-size: 0.75rem;
    font-weight: 600;
    overflow-wrap: anywhere;
  }
  .tmt-employee-mobile-card__details small {
    display: none;
  }
  .tmt-employee-mobile-card__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-height: 60px;
    padding: 0.5rem 0.75rem;
    border-top: 1px solid var(--tmt-color-border, #e3e6ef);
  }
  .tmt-employee-mobile-card__actions .btn {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    background: var(--tmt-color-surface-subtle, #f8f9fc);
  }
  .tmt-employee-mobile-card__released-pin {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
  }
  .tmt-employee-mobile-list__empty {
    display: grid;
    place-items: center;
    min-height: 180px;
    padding: 1.5rem;
    border: 1px dashed var(--tmt-color-border, #e3e6ef);
    border-radius: 0.875rem;
    color: var(--tmt-color-muted, #667085);
    text-align: center;
  }
  .tmt-employee-mobile-list__empty .material-icons-round {
    font-size: 2rem;
  }
  .tmt-employee-mobile-list__empty p {
    margin: 0.5rem 0 0;
    font-size: 0.78rem;
  }
}
@media (max-width: 575.98px) {
  .tmt-raw-log-mobile-list {
    display: grid;
    gap: 0.625rem;
  }
  .tmt-raw-log-mobile-card {
    overflow: hidden;
    border: 1px solid var(--tmt-color-border, #e3e6ef);
    border-radius: 0.75rem;
    background: var(--tmt-color-surface, #fff);
  }
  .tmt-raw-log-mobile-card__header {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 0.625rem;
    align-items: center;
    padding: 0.625rem 0.75rem;
    border-bottom: 1px solid var(--tmt-color-border, #e3e6ef);
  }
  .tmt-raw-log-mobile-card__header--without-select {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .tmt-raw-log-mobile-card__select {
    display: grid;
    place-items: center;
    width: 24px;
    min-height: 44px;
  }
  .tmt-raw-log-mobile-card__select .form-check-input {
    width: 20px;
    height: 20px;
    margin: 0;
  }
  .tmt-raw-log-mobile-card__identity {
    min-width: 0;
  }
  .tmt-raw-log-mobile-card__identity strong,
  .tmt-raw-log-mobile-card__identity > span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .tmt-raw-log-mobile-card__identity strong {
    color: var(--tmt-color-text, #344054);
    font-size: 0.82rem;
    font-weight: 600;
  }
  .tmt-raw-log-mobile-card__identity > span {
    margin-top: 0.125rem;
    color: var(--tmt-color-muted, #667085);
    font-size: 0.66rem;
  }
  .tmt-raw-log-mobile-card__details {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
    margin: 0;
    padding: 0.75rem;
  }
  .tmt-raw-log-mobile-card__details > div {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: baseline;
    min-width: 0;
  }
  .tmt-raw-log-mobile-card__details dt {
    margin: 0;
    color: var(--tmt-color-muted, #667085);
    font-size: 0.64rem;
    font-weight: 500;
  }
  .tmt-raw-log-mobile-card__details dd {
    margin: 0;
    color: var(--tmt-color-text, #344054);
    font-size: 0.72rem;
    font-weight: 600;
    overflow-wrap: anywhere;
  }
  .tmt-raw-log-mobile-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0.125rem 0.5rem 0.125rem 0.75rem;
    border-top: 1px solid var(--tmt-color-border, #e3e6ef);
  }
  .tmt-raw-log-mobile-card__actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  .tmt-raw-log-mobile-card__actions .btn {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
  }
  .tmt-raw-log-mobile-card__actions .material-icons {
    font-size: 1.25rem;
  }
  .tmt-raw-log-pair-mobile-card__meta {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 0.75rem 0;
    color: var(--tmt-color-muted, #667085);
    font-size: 0.68rem;
  }
  .tmt-raw-log-pair-mobile-card__meta .material-icons-round {
    font-size: 1rem;
  }
  .tmt-raw-log-pair-mobile-card__pairs {
    display: grid;
    gap: 0.375rem;
    padding: 0.625rem 0.75rem 0.75rem;
  }
  .tmt-raw-log-pair-mobile-card__pair {
    display: grid;
    grid-template-columns: minmax(42px, auto) auto 16px minmax(0, 1fr);
    gap: 0.375rem;
    align-items: center;
    min-height: 30px;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    background: var(--tmt-color-surface-subtle, #f8f9fc);
    font-size: 0.7rem;
  }
  .tmt-raw-log-pair-mobile-card__pair > span {
    color: var(--tmt-color-muted, #667085);
  }
  .tmt-raw-log-pair-mobile-card__pair > strong {
    color: var(--tmt-color-text, #344054);
    font-size: 0.72rem;
    white-space: nowrap;
  }
  .tmt-raw-log-pair-mobile-card__pair .material-icons-round {
    color: var(--tmt-color-muted, #667085);
    font-size: 0.875rem;
  }
  .tmt-raw-log-mobile-list__empty {
    display: grid;
    place-items: center;
    min-height: 160px;
    padding: 1.25rem;
    border: 1px dashed var(--tmt-color-border, #e3e6ef);
    border-radius: 0.75rem;
    color: var(--tmt-color-muted, #667085);
    text-align: center;
  }
  .tmt-raw-log-mobile-list__empty .material-icons-round {
    font-size: 2rem;
  }
  .tmt-raw-log-mobile-list__empty p {
    margin: 0.375rem 0 0;
    font-size: 0.75rem;
  }
}
