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

/* Set default root variables */
:root {
  --font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --bg-color: #f8f8f8;
  --text-color: #181818;
  --text-color-secondary: rgba(24, 24, 24, 0.7);
  --accent-color: #3653a9;
  --white-color: #ffffff;
  --black-color: #000000;
  --border-radius: 6px;
  --badge-blue-color: #2273e7;
  --border-color: #e1e1e1;
  --success-bg: #008000;
  --error-bg: #e41919;
  --primary-bg-color: #ebeef6;
}

/* Base html & body styles */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

/* Links */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color var(--transition-speed);
}

  a:hover {
    color: darken(var(--accent-color), 10%);
  }

/* Images & media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Form elements */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Button reset */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Utility classes */
.hidden {
  display: none !important;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* BOOTSTRAP OVERRIDE */

.btn {
  font-weight: 500;
  min-width: 80px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.4;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

  .btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
  }

  /* btn-primary */
  .btn.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white-color);
  }

    .btn.btn-primary:hover {
      background-color: #314c9a;
    }

    .btn.btn-primary:is(:focus, :focus-visible) {
      border-color: #c1cae4;
      box-shadow: none;
    }

  /* btn-secondary */
  .btn.btn-secondary {
    background-color: var(--bg-color);
    border-color: var(--bg-color);
    color: #333333;
  }

    .btn.btn-secondary:hover,
    .btn.btn-secondary:active {
      background-color: #f9f9f9;
      border-color: #f9f9f9;
      color: #333333;
    }

    .btn.btn-secondary:is(:focus, :focus-visible) {
      background-color: var(--bg-color);
      box-shadow: none;
    }

    .btn.btn-secondary:disabled {
      background-color: #788cc5;
      border-color: #788cc5;
    }

  /* btn-cancel */
  .btn.btn-cancel,
  .btn.btn-tertiary {
    background-color: var(--white-color);
    border-color: #e1e1e1;
    color: var(--text-color);
  }

    .btn.btn-cancel:hover,
    .btn.btn-tertiary:hover {
      background-color: var(--bg-color);
    }

  /* btn-link */
  .btn.btn-link {
    background-color: transparent;
    border-color: transparent;
    text-decoration: none;
  }

    .btn.btn-link:is(:hover, :focus, :focus-visible) {
      background-color: var(--bg-color);
      border-color: var(--bg-color);
      box-shadow: none;
    }

  /* btn-danger */
  .btn.btn-danger {
    background-color: #ff3b3b;
    border-color: #ff3b3b;
    color: var(--white-color);
  }

    .btn.btn-danger:hover,
    .btn.btn-danger:active {
      background-color: #ef4444;
      border-color: #ef4444;
    }

    .btn.btn-danger:is(:focus, :focus-visible) {
      background-color: #ff3b3b;
      border-color: #ff3b3b;
      box-shadow: none;
    }

/* .btn.btn-danger:disabled {
  background-color: #788cc5;
  border-color: #788cc5;
} */

.form-label {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

  .form-label:empty {
    margin-bottom: 0;
  }

.form-select,
.form-control {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-color);
  border-color: #e1e1e1;
}

  .form-control::placeholder,
  .form-select {
    color: var(--text-color-secondary);
  }

    .form-select:is(:focus, :focus-visible, :autofill, ::-ms-fill),
    .form-control:is(:focus, :focus-visible, :autofill, ::-ms-fill),
    .form-select.is-invalid:not([multiple]):not([size]),
    .form-select.is-invalid:not([multiple])[size="1"],
    .was-validated .form-select:invalid:not([multiple]):not([size]),
    .was-validated .form-select:invalid:not([multiple])[size="1"],
    .form-control.is-valid,
    .was-validated .form-control:valid,
    .form-control.is-invalid,
    .was-validated .form-control:invalid {
      outline-offset: 2px;
      border-color: #e1e1e1;
      box-shadow: none;
    }

    .form-select:is(:focus, :focus-visible, :autofill, ::-ms-fill),
    .form-control:is(:focus, :focus-visible, :autofill, ::-ms-fill) {
      outline: 2px solid var(--accent-color);
    }

    .form-select.is-invalid:not([multiple]):not([size]),
    .form-select.is-invalid:not([multiple])[size="1"],
    .was-validated .form-select:invalid:not([multiple]):not([size]),
    .was-validated .form-select:invalid:not([multiple])[size="1"],
    .form-control.is-invalid,
    .was-validated .form-control:invalid {
      outline: 2px solid #dc2626;
    }

  .form-control.is-valid,
  .was-validated .form-control:valid {
    outline: 2px solid #198754;
  }

/*  */

.container {
  width: 100%;
  max-width: 1392px;
  padding: 0 16px;
  margin: 0 auto;
}

/* header */
.header-wrap {
  background-color: var(--white-color);
  border-bottom: 1px solid #e1e1e1;
}

header .navbar {
  padding: 22px 0;
}

  header .navbar .navbar-brand {
    padding: 0;
    margin-right: 64px;
  }

  header .navbar .nav-link {
    padding: 0;
    font-weight: 500;
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  header .navbar .dropdown-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
  }

    header .navbar .dropdown-item svg {
      flex-shrink: 0;
    }

  header .navbar .nav-link svg {
    color: inherit;
  }

  header .navbar .nav-link:hover,
  header .dropdown-menu .dropdown-item:hover {
    text-decoration: none;
    color: var(--accent-color);
  }

header .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}

header .navbar .nav-link .nav-span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #289e65;
  color: var(--white-color);
  display: grid;
  place-items: center;
  font-size: 14px;
}

header .navbar-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

header .dropdown-toggle::after {
  content: none;
}

header .dropdown-menu.show {
  margin-top: 10px;
}

/* footer */
footer {
  padding-bottom: 24px;
  padding-top: 8px;
}

  footer .footer-text img {
    margin-left: auto;
  }

/* dashboard */

.dashboard-container {
  padding: 16px 0;
  min-height: calc(100vh - 131px);
}

/* Ensure tab panes are visible when active */
.tab-pane.fade.show.active {
  display: block !important;
  opacity: 1 !important;
}

.tab-pane.fade:not(.show) {
  display: none !important;
}

/* OUTER TAB */
.dashboard-tab-wrap > .nav,
.dashboard-tab-wrap .dashboard-tab-header > .nav {
  padding: 8px 4px;
  border-radius: var(--border-radius);
  background-color: var(--white-color);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 24px;
}

  .dashboard-tab-wrap > .nav .nav-link,
  .dashboard-tab-wrap .dashboard-tab-header > .nav .nav-link {
    color: var(--text-color-secondary);
    padding: 6px 12px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease-in-out;
  }

    .dashboard-tab-wrap > .nav .nav-link:hover,
    .dashboard-tab-wrap > .nav .nav-link.active,
    .dashboard-tab-wrap .dashboard-tab-header > .nav .nav-link:hover,
    .dashboard-tab-wrap .dashboard-tab-header > .nav .nav-link.active {
      background-color: var(--accent-color);
      color: var(--white-color);
    }

    .dashboard-tab-wrap > .nav .nav-link.active,
    .dashboard-tab-wrap .dashboard-tab-header > .nav .nav-link.active {
      font-weight: 600;
    }

/* PRICING OUTER TABS WRAPPER - Specific styles for pricing outer tabs with back button */
.pricing-outer-tabs-wrapper > .nav {
  padding: 8px 4px;
  border-radius: var(--border-radius);
  background-color: var(--white-color);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 0; /* Override margin since wrapper handles spacing */
}

  .pricing-outer-tabs-wrapper > .nav .nav-link {
    color: var(--text-color-secondary);
    padding: 6px 12px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease-in-out;
  }

    .pricing-outer-tabs-wrapper > .nav .nav-link:hover,
    .pricing-outer-tabs-wrapper > .nav .nav-link.active {
      background-color: var(--accent-color);
      color: var(--white-color);
    }

    .pricing-outer-tabs-wrapper > .nav .nav-link.active {
      font-weight: 600;
    }

/* FUEL MODIFIER SPECIFIC STYLES */
#fuelModifierDisabledAlert {
  display: none;
  margin: 16px 0;
}

#vehicleFuelModifierTable.opacity-50 {
  opacity: 0.5;
  pointer-events: none;
}

.fuelTypes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 8px 0;
}

.fuelTypes .form-check-inline {
  margin: 0;
}

.fuelTypes .form-check-input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.fuelTypes .form-check-label {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-color);
  cursor: pointer;
}

.fuelTypes .form-check-input:disabled + .form-check-label {
  opacity: 0.5;
  cursor: not-allowed;
}

/* INNER TAB */

.dashboard-inner-tab:is(:focus, :focus-visible) {
  outline: none;
}

.dashboard-inner-tab > .nav,
.dashboard-inner-tab .nav {
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e1e1e1;
}

  .dashboard-inner-tab > .nav .nav-link,
  .dashboard-inner-tab .nav .nav-link,
  .dashboard-inner-tab .nav-tabs .nav-link,
  .dashboard-inner-tab .nav .nav-item .nav-link {
    color: var(--text-color-secondary) !important;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
    border: 0;
    padding: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #e1e1e1;
    text-decoration: none !important;
  }

    .dashboard-inner-tab > .nav .nav-link:hover,
    .dashboard-inner-tab > .nav .nav-link.active,
    .dashboard-inner-tab .nav .nav-link:hover,
    .dashboard-inner-tab .nav .nav-link.active,
    .dashboard-inner-tab .nav-tabs .nav-link:hover,
    .dashboard-inner-tab .nav-tabs .nav-link.active,
    .dashboard-inner-tab .nav .nav-item .nav-link:hover,
    .dashboard-inner-tab .nav .nav-item .nav-link.active {
      color: var(--text-color) !important;
      border-color: var(--accent-color);
      text-decoration: none !important;
    }

    .dashboard-inner-tab > .nav .nav-link.active,
    .dashboard-inner-tab .nav .nav-link.active {
      font-weight: 600;
    }

    .dashboard-inner-tab > .nav .nav-link .form-check-input {
      cursor: pointer;
      margin-top: 0;
    }

/* SETUP PROGRESS BOX  */

.setup-progress-box {
  border-radius: var(--border-radius);
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

  .setup-progress-box .setup-progress-top {
    padding: 24px 16px;
    background-image: linear-gradient( 180deg, #d4dfff 0%, rgba(245, 245, 245, 0) 100% );
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

    .setup-progress-box .setup-progress-top .setup-progress-title {
      font-weight: 600;
    }

    .setup-progress-box .setup-progress-top .setup-progress-subtitle {
      font-size: 12px;
      color: var(--text-color-secondary);
    }

  .setup-progress-box .setup-progress-bottom {
    padding: 16px;
    height: 100%;
  }

    .setup-progress-box .setup-progress-bottom .setup-progress-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin: 0;
      padding: 0;
    }

    .setup-progress-box .setup-progress-bottom .setup-progress-item {
      display: flex;
      gap: 8px;
      padding: 16px 8px;
      background-color: var(--bg-color);
      border-radius: var(--border-radius);
      align-items: center;
      font-weight: 500;
      font-size: 12px;
    }

  .setup-progress-box .setup-progress-item svg {
    flex-shrink: 0;
  }

/* PRICING SETUP WRAP */

.pricing-setup-wrap .pricing-setup-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

  .pricing-setup-wrap .pricing-setup-list .pricing-setup-item {
    padding: 32px 24px;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
  }

  .pricing-setup-wrap .pricing-setup-list .pricing-setup-nav {
    border-radius: 24px;
    padding: 4px 16px;
    border: 1px solid #c1cae4;
    display: inline-flex;
    color: var(--accent-color);
    margin-left: auto;
    transition: all 0.3s ease-in-out;
  }

    .pricing-setup-wrap .pricing-setup-list .pricing-setup-nav:hover {
      background-color: var(--accent-color);
      color: var(--white-color);
      border-color: var(--accent-color);
    }

.pricing-setup-wrap .pricing-setup-title {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: capitalize;
}

.pricing-setup-wrap .pricing-setup-subtitle {
  font-size: 14px;
  color: var(--text-color-secondary);
}

.pricing-setup-wrap.pricing-plan .pricing-setup-list {
  flex-direction: row;
  gap: 46px;
}

  .pricing-setup-wrap.pricing-plan .pricing-setup-list .pricing-setup-item {
    width: 33.33%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: start;
  }

  .pricing-setup-wrap.pricing-plan .pricing-setup-list .pricing-setup-nav {
    margin-left: 0;
  }

.pricing-setup-wrap.pricing-plan .pricing-setup-title {
  font-weight: 600;
  font-size: 32px;
}

  .pricing-setup-wrap.pricing-plan .pricing-setup-title span {
    font-weight: 400;
    color: var(--text-color-secondary);
  }

.pricing-setup-wrap.pricing-plan .pricing-setup-subtitle {
  font-weight: 400;
  font-size: 20px;
  color: var(--text-color-secondary);
}

/* BOOTSTRAP TOOLTIP */

.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 287px;
  --bs-tooltip-padding-x: 12px;
  --bs-tooltip-padding-y: 12px;
  --bs-tooltip-font-size: 12px;
  --bs-tooltip-color: var(--text-color-secondary);
  --bs-tooltip-bg: var(--white-color);
  --bs-tooltip-border-radius: var(--border-radius);
  --bs-tooltip-opacity: 1;
  font-family: var(--font-family);
  line-height: 1.4;
  max-width: 287px;
  width: 100%;
}

  .tooltip.show {
    box-shadow: 0px 4px 6px -2px #10182808;
    box-shadow: 0px 12px 16px -4px #10182814;
    border-radius: var(--border-radius);
  }

.tooltip-inner {
  color: var(--text-color-secondary);
  text-align: left;
}

  .tooltip-inner p {
    margin: 0;
  }

  .tooltip-inner strong {
    color: var(--text-color);
    font-weight: 600;
  }

.tooltip .tooltip-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

  .tooltip .tooltip-box.warning-tooltip .tooltip-title strong {
    color: #e41919;
  }

/* DASHBOARD INNER  */

.dashboard-inner-box,
.dashboard-form-wrap {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

  .dashboard-form-wrap.inner {
    width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
  }

  .dashboard-inner-box .go-back-nav {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .dashboard-inner-box .go-back-nav {
    font-weight: 500;
    color: var(--text-color);
  }

    .dashboard-inner-box .go-back-nav a {
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--text-color);
      transition: all 0.3s ease-in-out;
      text-decoration: none;
    }

      .dashboard-inner-box .go-back-nav a svg {
        transform: rotate(180deg);
      }

      .dashboard-inner-box .go-back-nav a:hover {
        color: var(--accent-color);
      }

  .dashboard-inner-box .dashboard-inner-subtitle {
    font-size: 12px;
    color: var(--text-color-secondary);
  }

.dashboard-form-wrap {
  border: 1px solid #e1e1e1;
}

  .dashboard-form-wrap .dashboard-form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
  }

    .dashboard-form-wrap .dashboard-form-header .dashboard-form-title {
      display: flex;
      gap: 4px;
      align-items: center;
      font-weight: 500;
      color: var(--text-color);
    }

    .dashboard-form-wrap .dashboard-form-header .dashboard-form-subtitle {
      font-size: 14px;
      color: var(--text-color-secondary);
    }

  .dashboard-form-wrap .dashboard-form-nav a span {
    font-weight: 400;
    font-size: 12px;
  }

  .dashboard-form-wrap .dashboard-form-nav .active-tag {
    border-radius: 8px;
    padding: 4px 8px;
    background: #0080001a;
    font-weight: 400;
    font-size: 14px;
    color: #008000;
  }

.table thead th {
  padding: 12px;
}

.table tbody > * > * {
  padding: 24px 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  vertical-align: middle;
  color: var(--text-color);
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: #e1e1e1;
}

.table-light {
  --bs-table-color: var(--text-color);
  --bs-table-bg: var(--bg-color);
  --bs-table-border-color: var(--bg-color);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
}

  .table-light th {
    border-color: var(--bg-color);
  }

.table-action {
  display: flex;
  gap: 8px;
}

  .table-action button,
  .table-action a {
    height: 32px;
    width: 32px;
    border-radius: var(--border-radius);
    padding: 8px;
    background-color: var(--bg-color);
    color: var(--text-color);
  }

table .collapse-row .collapse td {
  background-color: var(--bg-color) !important;
}

table .collapse-row td {
  border-bottom-width: 0;
}

table .collapse-row .collapse.show tr td {
  border-bottom-width: 1px;
}

.table-collapse-icon {
  display: inline-block;
  vertical-align: middle;
}

  .table-collapse-icon svg {
    transition: all 0.3s ease-in-out;
  }

  .table-collapse-icon.rotate svg {
    transform: rotate(180deg);
  }

table .highlighted-cell {
  background-color: #ebeef6;
  color: #3653a9;
  font-weight: 600;
}

/* MODAL */

.add-vehicle-modal .modal-dialog {
  max-width: 670px;
}

.add-vehicle-modal .modal-header {
  padding: 16px 24px 8px;
  border: 0;
}

.add-vehicle-modal .modal-title {
  display: flex;
  gap: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-color);
  align-items: center;
}

.add-vehicle-modal .btn-close {
  width: 22px;
  height: 22px;
  padding: 0;
}

.add-vehicle-modal .modal-body {
  padding: 16px 24px 16px;
}

.modal .modal-content {
  border: 0;
}

.add-vehicle-modal.vehicle-class .modal-dialog {
  max-width: 1024px;
}

.add-vehicle-modal.vehicle-class .modal-header {
  padding: 16px 24px;
  border-bottom: 1px solid #e1e1e1;
}

.add-vehicle-modal.vehicle-class .modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #e1e1e1;
}

.add-vehicle-modal.vehicle-class .modal-body {
  padding: 24px;
}

.delete-modal .modal-dialog {
  max-width: 416px;
}

.delete-modal .modal-header {
  padding: 16px 16px 8px;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

  .delete-modal .modal-header button {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--bg-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--text-color);
  }

.delete-modal .modal-title {
  display: flex;
  gap: 4px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--text-color);
  align-items: center;
}

.delete-modal .modal-body {
  padding: 0px 16px 16px;
}

  .delete-modal .modal-body .alert.alert-danger {
    padding: 8px;
    background-color: rgba(228, 25, 25, 0.05);
    color: #e41919;
    font-size: 14px;
    border: 0;
    text-align: center;
  }

.delete-modal form label {
  color: var(--text-color-secondary);
  font-size: 12px;
}

.delete-modal form.was-validated label {
  color: #e41919;
}

.delete-modal.area-setting-delete-modal .modal-body .alert.alert-danger {
  text-align: left;
}
/* TIME BUCKET WRAP */
.time-bucket-wrap {
  position: relative;
}

.time-bucket-switch-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background-color: var(--white-color);
  padding: 16px 32px 16px 24px;
  border: 1px solid #e1e1e1;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 15px -3px #0000001a;
  transition: all 0.3s ease-in-out;
}

.time-bucket-wrap:has(#timeBucketSwitch:checked) .time-bucket-switch-wrap {
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

.time-bucket-switch-wrap .form-switch {
  display: flex;
  gap: 8px;
  padding: 0;
}

  .time-bucket-switch-wrap .form-switch label {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    cursor: pointer;
  }

  .time-bucket-switch-wrap .form-switch input {
    margin: 0;
    cursor: pointer;
  }

/* Bootstrap Custom Switch */
.form-switch .form-check-input {
  width: 40px;
  height: 24px;
  background-size: 26px;
  background-position: -2px center;
  cursor: pointer;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='white'/%3e%3c/svg%3e");
  transition: background-color 0.3s, border-color 0.3s, background-position 0.3s;
}

  .form-switch .form-check-input:checked {
    background-position: 14px center;
    background-color: #34c759;
    border-color: #34c759;
  }

  .form-switch .form-check-input:is(:focus, :focus-visible) {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='white'/%3e%3c/svg%3e");
    box-shadow: none;
  }

  .form-switch .form-check-input:not(:checked) {
    background-color: rgba(120, 120, 128, 0.16);
    border-color: rgba(120, 120, 128, 0.16);
  }

.dashboard-inner-box #timeBucketSwitch2 {
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.dashboard-inner-box:has(#timeBucketSwitch2:checked) #timeBucketSwitch2 {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
}

.time-bucket-wrap:has(#timeBucketSwitch) .time-bucket-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  pointer-events: none;
  opacity: 0.08;
  transition: all 0.3s ease-in-out;
}

.time-bucket-wrap .time-bucket-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  pointer-events: auto;
  transition: all 0.3s ease-in-out;
}

.time-bucket-wrap:has(#timeBucketSwitch:checked) .time-bucket-list {
  pointer-events: auto;
  opacity: 1;
}

.time-bucket-list .time-bucket-box {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
}

  .time-bucket-list .time-bucket-box .time-bucket-box-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .time-bucket-list .time-bucket-box .time-bucket-box-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .time-bucket-list .time-bucket-box .time-bucket-box-title {
    font-weight: 600;
    color: var(--text-color);
  }

  .time-bucket-list .time-bucket-box .time-bucket-box-subtitle {
    font-size: 12px;
    color: var(--text-color-secondary);
  }

.time-bucket-box .time-bucket-box-bottom .time-bucket-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.time-bucket-box .time-bucket-box-bottom .card {
  width: 240px;
  border-color: #e1e1e1;
  border-radius: 8px;
}

  .time-bucket-box .time-bucket-box-bottom .card .card-header {
    padding: 12px 16px;
    border: 0;
    font-weight: 500;
    color: var(--text-color);
  }

  .time-bucket-box .time-bucket-box-bottom .card .card-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .time-bucket-box .time-bucket-box-bottom .card .card-text {
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 12px;
    color: var(--text-color-secondary);
    margin-bottom: 12px;
  }

    .time-bucket-box .time-bucket-box-bottom .card .card-text:last-child {
      margin-bottom: 0;
    }

  .time-bucket-box .time-bucket-box-bottom .card .card-btn-wrap {
    display: flex;
    gap: 8px;
  }

  .time-bucket-box .time-bucket-box-bottom .card .btn {
    min-width: 32px;
    height: 32px;
    padding: 8px;
    margin: 0;
  }

.dashboard-inner-tab .accordion-item {
  border: 0;
}

.accordion .accordion-toggle-button svg {
  transition: all 0.3s ease-in-out;
}

.accordion-item:has(.accordion-collapse.show) .accordion-toggle-button svg {
  transform: rotate(180deg);
}

.add-vehicle-modal.time-modal .modal-dialog {
  max-width: 768px;
}

.add-vehicle-modal.time-modal .modal-title {
  font-weight: 500;
  font-size: 24px;
}

.add-vehicle-modal.time-modal .modal-subtitle {
  font-size: 12px;
  color: var(--text-color-secondary);
  margin: 0;
}

.add-vehicle-modal.time-modal .modal-header {
  padding: 24px;
}

.add-vehicle-modal.time-modal .modal-body {
  padding-bottom: 40px;
}

.add-vehicle-modal.time-modal .modal-footer {
  padding: 16px 24px;
}

.form-check-input:checked {
  background-color: var(--text-color);
  border-color: var(--text-color-secondary);
}

.form-check-wrapper {
  padding: 8px 0;
}

  .form-check-wrapper.days-check-wrapper {
    padding: 16px;
    background-color: var(--bg-color);
    display: flex;
    flex-wrap: wrap;
    border-radius: var(--border-radius);
    row-gap: 16px;
    column-gap: 48px;
  }

    .form-check-wrapper.days-check-wrapper .form-check {
      margin: 0;
    }

      .form-check-wrapper.days-check-wrapper .form-check .form-check-input {
        background-color: transparent;
        border-color: var(--text-color-secondary);
      }

        .form-check-wrapper.days-check-wrapper .form-check .form-check-input:checked {
          background-color: var(--black-color);
        }

.dashboard-form-footer {
  margin-bottom: -8px;
  padding-top: 16px;
  margin-top: 40px;
  position: relative;
}

  .dashboard-form-footer::before {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    background-color: #e1e1e1;
    top: 0;
    left: -12px;
    width: calc(100% + 24px);
  }

  .dashboard-form-footer.dashboard-inner-footer {
    margin-top: 16px;
  }

    .dashboard-form-footer.dashboard-inner-footer::before {
      left: -24px;
      width: calc(100% + 48px);
    }

.input-group.time-input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 0;
}

  .input-group.time-input-group input {
    width: 100%;
    border-radius: 6px !important;
  }

  .input-group.time-input-group select {
    border-radius: 0 !important;
    border-right: none;
    padding: 0.375rem 0.5rem;
  }

  .input-group.time-input-group select:first-child {
    border-top-left-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
    flex: 0 0 90px;
    min-width: 90px;
    max-width: 90px;
  }

  .input-group.time-input-group select:nth-child(2) {
    flex: 0 0 90px;
    min-width: 90px;
    max-width: 90px;
  }

  .input-group.time-input-group select:last-of-type {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
    border-right: 1px solid #ced4da !important;
    flex: 0 0 75px;
    min-width: 75px;
    max-width: 75px;
  }

  .input-group.time-input-group .input-group-text {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-color: #ced4da;
    border-left: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    padding: 0.375rem 0.75rem;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
    width: auto;
    min-width: 30px;
  }

  .input-group.time-input-group .time-input-text {
    position: absolute;
    left: 60px;
    width: 50px;
    height: 28px;
    padding: 0;
    border-radius: 4px !important;
    top: 50%;
    transform: translateY(-50%);
    background-position: right 0.25rem center;
    padding: 4px;
    background-color: var(--bg-color);
    border: 0;
    color: var(--text-color);
    z-index: 999;
  }

  .input-group.time-input-group.small {
    width: 102px;
  }

  .input-group.time-input-group .time-input-text {
    width: 30px;
    height: 25px;
    font-size: 12px;
    text-align: center;
  }

.alert-primary {
  margin: 0;
  background-color: #ebeef6;
  border-color: #ebeef6;
  color: #3653a9;
}

/* bootstrap nav */

.dashboard-nav-tab .nav.nav-tabs {
  gap: 12px;
  border-color: var(--bg-color);
}

.dashboard-nav-tab .nav-tabs .nav-link {
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text-color-secondary);
}

  .dashboard-nav-tab .nav-tabs .nav-item.show .nav-link,
  .dashboard-nav-tab .nav-tabs .nav-link.active,
  .dashboard-nav-tab .nav-tabs .nav-link:focus,
  .dashboard-nav-tab .nav-tabs .nav-link:hover {
    font-weight: 600;
    color: var(--text-color);
    background-color: var(--bg-color);
    border-color: var(--bg-color);
  }

.dashboard-nav-tab .tab-content-header {
  padding: 12px 16px;
  background-color: var(--bg-color);
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

.price-result-box {
  padding: 24px;
  background-color: #ebeef6;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

  .price-result-box .price-result-text {
    font-weight: 700;
    font-size: 40px;
    color: #3653a9;
  }

/* 
///////////////////////
NEW SCREENS 
///////////////////////
*/

.filter-dropdown button:after {
  content: none;
}

.filter-dropdown .dropdown-item {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color-secondary);
}

.filter-dropdown .dropdown-menu {
  padding: 4px 0;
  width: 200px;
}

.filter-dropdown .dropdown-divider {
  margin: 4px 0;
}

.filter-dropdown .dropdown-item.clear-filters {
  text-align: center;
  justify-content: center;
  font-weight: 500;
  color: var(--text-color);
}

.dashboard-datatable .table-footer .entries-selector {
  font-size: 14px;
  color: var(--text-color);
}

  .dashboard-datatable .table-footer .entries-selector select {
    width: 45px;
    height: 30px;
    border-radius: 4px;
    background-color: var(--white-color);
    border: 1px solid #e1e1e1;
  }

/* .dashboard-datatable .table-footer .dataTables_paginate {
  display: flex;
  align-items: center;
  gap: 5px;
}

  .dashboard-datatable .table-footer .dataTables_paginate span {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
  }

  .dashboard-datatable .table-footer .dataTables_paginate .paginate_button {
    display: grid;
    place-items: center;
    color: var(--text-color);
    font-size: 14px;
    cursor: pointer;
  }

    .dashboard-datatable
    .table-footer
    .dataTables_paginate
    .paginate_button.current {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background-color: var(--accent-color);
      font-weight: 500;
      color: var(--white-color);
    }

    .dashboard-datatable
    .table-footer
    .dataTables_paginate
    .paginate_button.previous,
    .dashboard-datatable .table-footer .dataTables_paginate .paginate_button.next {
      width: 24px;
      height: 24px;
    } */


    .dashboard-datatable .table-footer .dataTables_paginate {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
      .dashboard-datatable .table-footer .dataTables_paginate span {
        display: flex;
        align-items: center;
        gap: 15px;
        cursor: pointer;
      }
    
      .dashboard-datatable .table-footer .dataTables_paginate .paginate_button {
        display: grid;
        place-items: center;
        color: var(--text-color);
        font-size: 14px;
        cursor: pointer;
      }
    
        .dashboard-datatable
        .table-footer
        .dataTables_paginate
        .paginate_button.current {
          width: 24px;
          height: 24px;
          border-radius: 50%;
          background-color: var(--accent-color);
          font-weight: 500;
          color: var(--white-color);
        }
    
        .dashboard-datatable
        .table-footer
        .dataTables_paginate
        .paginate_button.previous,
        .dashboard-datatable .table-footer .dataTables_paginate .paginate_button.next {
          width: 24px;
          height: 24px;
        }
    .dashboard-datatable .table-footer .dataTables_paginate {
      display: flex !important;
      align-items: center !important;
      gap: 6px !important;
      margin: 0 !important;
      padding: 0 !important;
      list-style: none !important;
    }
    
    .dashboard-datatable .table-footer .dataTables_paginate .paginate_button {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      min-width: 32px !important;
      height: 32px !important;
      padding: 0 !important;
      margin: 0 !important;
      /* border: 1px solid #d1d5db !important; */
      border-radius: 6px !important;
      /* background-color: #ffffff !important; */
      cursor: pointer !important;
      font-size: 14px !important;
      color: var(--text-color) !important;
      text-decoration: none !important;
      list-style: none !important;
      transition: all 0.2s ease !important;
    }
    
    .dashboard-datatable .table-footer .dataTables_paginate .paginate_button .page-link {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: 100% !important;
      height: 100% !important;
      padding: 0 !important;
      border: none !important;
      background: transparent !important;
      color: inherit !important;
      text-decoration: none !important;
      border-radius: inherit !important;
    }
    
    /* Circular active page button - blue background with white text */
    .dashboard-datatable .table-footer .dataTables_paginate .paginate_button.current {
      width: 32px !important;
      height: 32px !important;
      border-radius: 50% !important;
      background-color: var(--accent-color) !important;
      border-color: var(--accent-color) !important;
      color: var(--white-color) !important;
      font-weight: 500 !important;
    }
    
    .dashboard-datatable .table-footer .dataTables_paginate .paginate_button.current .page-link {
      color: var(--white-color) !important;
    }
    
    /* Non-active page numbers - rounded rectangular buttons with blue text */
    .dashboard-datatable .table-footer .dataTables_paginate .paginate_button:not(.current):not(.previous):not(.next):not(.disabled) {
      border-radius: 6px !important;
      border-color: #d1d5db !important;
      /* background-color: #ffffff !important; */
    }
    
    .dashboard-datatable .table-footer .dataTables_paginate .paginate_button:not(.current):not(.previous):not(.next):not(.disabled) .page-link {
      color: var(--accent-color) !important;
    }
    
    /* Previous/Next buttons - chevron icons, rounded rectangular */
    .dashboard-datatable .table-footer .dataTables_paginate .paginate_button.previous,
    .dashboard-datatable .table-footer .dataTables_paginate .paginate_button.next {
      width: 32px !important;
      height: 32px !important;
      border-radius: 6px !important;
      border-color: #d1d5db !important;
      background-color: #ffffff !important;
    }
    
    .dashboard-datatable .table-footer .dataTables_paginate .paginate_button.previous .page-link,
    .dashboard-datatable .table-footer .dataTables_paginate .paginate_button.next .page-link {
      color: var(--text-color) !important;
    }
    
    /* Disabled state */
    .dashboard-datatable .table-footer .dataTables_paginate .paginate_button.disabled {
      opacity: 0.5 !important;
      cursor: not-allowed !important;
      background-color: #f9fafb !important;
    }
    
    .dashboard-datatable .table-footer .dataTables_paginate .paginate_button.disabled .page-link {
      cursor: not-allowed !important;
      color: #9ca3af !important;
    }
    
    /* Hover state for non-disabled, non-current buttons */
    .dashboard-datatable .table-footer .dataTables_paginate .paginate_button:not(.disabled):not(.current):hover {
      background-color: #f3f4f6 !important;
      border-color: #9ca3af !important;
    }

.dashboard-datatable .table thead th {
  padding: 12px;
  background-color: #f0f0f0;
  border: 0;
  white-space: nowrap;
}

.dashboard-datatable .table tbody > * > * {
  padding: 24px 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  vertical-align: middle;
}

table.dataTable.row-border tbody th,
table.dataTable.row-border tbody td,
table.dataTable.display tbody th,
table.dataTable.display tbody td {
  border: 1px solid #e1e1e1;
  border-top: 0;
  border-right: 0;
}

table.dataTable tbody td:last-child,
table.dataTable tbody th:last-child {
  border-right: 1px solid #e1e1e1;
}

table.dataTable.no-footer {
  border: 0;
}

.dashboard-datatable .table td {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-color);
}

.dashboard-datatable .table .device-info {
  display: flex;
  flex-direction: column;
}

.dashboard-datatable .table .device-type {
  font-size: 12px;
  color: var(--text-color-secondary);
}

.add-vehicle-modal.accesslog-modal .access-log-info .status-badge,
.dashboard-datatable .table .status-badge {
  display: inline-block;
  border-radius: 8px;
  padding: 4px 8px;
}

  .add-vehicle-modal.accesslog-modal
  .access-log-info
  .status-badge.status-approved,
  .dashboard-datatable .table .status-badge.status-approved {
    background: #0080001a;
    color: #008000;
  }

  .add-vehicle-modal.accesslog-modal
  .access-log-info
  .status-badge.status-rejected,
  .dashboard-datatable .table .status-badge.status-rejected {
    background: #e419191a;
    color: #e41919;
  }

  .dashboard-datatable .table .status-badge.status-pending {
    background: #8e63001a;
    color: #8e6300;
  }

.dashboard-datatable .table .reason,
.dashboard-datatable .table .match-type {
  color: var(--text-color-secondary);
}

.add-vehicle-modal.accesslog-modal .modal-dialog {
  max-width: 908px;
}

.add-credentials-modal h1,
.add-vehicle-modal.accesslog-modal h1 {
  font-weight: 600;
  font-size: 24px;
  color: var(--accent-color);
}

.add-vehicle-modal.accesslog-modal ul.top-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

  .add-vehicle-modal.accesslog-modal ul.top-row li {
    display: flex;
    gap: 4px;
    padding: 6px 12px;
    border-radius: var(--border-radius);
    background-color: var(--bg-color);
    color: var(--text-color);
  }

.add-vehicle-modal.accesslog-modal.area ul.top-row li {
  min-width: 166px;
  justify-content: space-between;
  font-weight: 500;
  font-size: 14px;
}

.add-vehicle-modal.accesslog-modal.area .top-row-title {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  color: var(--text-color);
  padding-bottom: 8px;
}

.add-credentials-modal .modal-dialog .modal-header,
.add-vehicle-modal.accesslog-modal .modal-header {
  padding: 32px 32px 12px;
}

.add-credentials-modal .modal-dialog .modal-body,
.add-vehicle-modal.accesslog-modal .modal-body {
  padding: 12px 32px 32px;
}

.modal-divider {
  margin: 24px 0;
  height: 1px;
  width: 100%;
  background-color: #e1e1e1;
}

.add-vehicle-modal.accesslog-modal .access-log-info {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e1e1e1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

  .add-vehicle-modal.accesslog-modal .access-log-info .title {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-color);
  }

  .add-vehicle-modal.accesslog-modal .access-log-info ul {
    margin: 0 -24px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
  }

    .add-vehicle-modal.accesslog-modal .access-log-info ul li {
      padding: 0 24px;
      width: 33.33%;
      display: flex;
      flex-direction: column;
      align-items: start;
      font-size: 14px;
      color: var(--text-color-secondary);
      gap: 12px;
    }

      .add-vehicle-modal.accesslog-modal .access-log-info ul li span {
        font-weight: 500;
        font-size: 16px;
        color: var(--text-color);
      }

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
  background-image: none;
}

table.dataTable.display tbody tr.even > .sorting_1,
table.dataTable.order-column.stripe tbody tr.even > .sorting_1,
table.dataTable.display tbody tr.odd > .sorting_1,
table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
  background-color: white;
}

.dashboard-datatable .table .number-tag {
  padding: 4px 8px;
  border-radius: 8px;
  background: #f8f8f8;
  color: var(--text-color);
  white-space: nowrap;
}

  .dashboard-datatable .table .number-tag.gray {
    background: #f0f0f0;
  }

  .dashboard-datatable .table .number-tag.more-device {
    background-color: #2273e71a;
    color: var(--badge-blue-color);
    border-radius: 50%;
    font-size: 12px;
    height: 24px;
    width: 24px;
  }

  .dashboard-datatable .table .number-tag.occupancy {
    background: #ebeef6;
    color: #3653a9;
  }

  .dashboard-datatable .table .number-tag.capacity {
    background: #e7d7ff;
    color: #35126a;
  }

  .dashboard-datatable .table .number-tag.device {
    background: #ebeef6;
    color: #3653a9;
  }

.dashboard-datatable .table .area-info .area-name {
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

  .dashboard-datatable .table .area-info .area-name .new-tag {
    border-radius: 4px;
    gap: 10px;
    padding: 4px;
    background-color: #2273e7;
    font-weight: 400;
    font-size: 8px;
    color: #ffffff;
  }

.dashboard-datatable .table .area-info .has-subarea {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-color-secondary);
  display: flex;
  gap: 1px;
  align-items: center;
  line-height: 1;
}

.dashboard-form-header.outer-header {
  margin-top: -24px;
  border-bottom: 1px solid #e1e1e1;
  width: calc(100% + 48px);
  margin-left: -24px;
  padding: 16px 24px;
}

.dashboard-form-footer.outer-footer {
  width: calc(100% + 24px);
  margin-left: -12px;
  padding: 16px 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.device-form-wrapper {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  transition: all 0.2s ease;
}

.device-form-wrapper:hover {
  border-color: #cbd5e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.device-form-wrapper:last-child {
  margin-bottom: 0;
}

  .device-form-wrapper .btn-delete {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 6px 10px;
    width: auto;
    min-width: auto;
    height: auto;
    background-color: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
    border-radius: 6px;
    transition: all 0.2s ease;
  }

  .device-form-wrapper .btn-delete:hover {
    background-color: #fecaca;
    border-color: #fca5a5;
    color: #991b1b;
  }

.device-form-tag {
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  padding: 4px 12px;
  border-radius: 12px;
  background-color: #4a5568;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.device-form-wrapper .device-form-field {
  width: 100%;
  padding-bottom: 0;
}

.device-form-wrapper .device-form-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.subarea-form-wrapper {
  margin-top: 40px;
  padding: 32px 24px;
  border-radius: 8px;
  background-color: #f0f0f0;
}

  .subarea-form-wrapper .subarea-form-inner-wrapper {
    max-width: 904px;
  }

  .subarea-form-wrapper .subarea-device-wrapper {
    border-radius: 12px;
    background-color: var(--white-color);
    padding: 12px 15px 15px 15px;
    margin-top: 24px;
  }

.subarea-device-wrapper .btn-delete {
  padding: 8px 12px;
  width: 40px;
  min-width: 40px;
  height: 32px;
  background-color: #e419191a;
  color: #e41919;
}

.area-detail-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

  .area-detail-wrap .area-detail-list {
    display: flex;
    flex-wrap: wrap;
  }

    .area-detail-wrap .area-detail-list.border-bottom {
      padding-bottom: 16px;
      border-bottom: 1px solid #e1e1e1;
    }

    .area-detail-wrap .area-detail-list li {
      width: 20%;
      padding: 24px 16px;
      border-right: 1px solid #e1e1e1;
    }

    .area-detail-wrap .area-detail-list .area-details-label {
      font-weight: 500;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 4px;
      line-height: 1;
    }

    .area-detail-wrap .area-detail-list .area-details-number {
      margin-top: 10px;
      font-size: 32px;
    }

.toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  width: max-content;
  font-weight: 600;
  font-size: 14px;
}

  .toast.success-toast {
    background-color: var(--text-color);
    color: var(--white-color);
  }

    .toast.success-toast .toast-body {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 24px;
    }

.area-detail-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

  .area-detail-section .area-detail-section-title {
    display: flex;
    gap: 6px;
    align-items: center;
  }

    .area-detail-section .area-detail-section-title .area-detail-section-tag {
      padding: 8px;
      border-radius: 8px;
      background-color: #f0f0f0;
      color: var(--text-color);
      font-weight: 500;
      font-size: 14px;
      flex-shrink: 0;
    }

    .area-detail-section .area-detail-section-title .area-detail-section-line {
      height: 1px;
      width: 100%;
      background-color: #e1e1e1;
    }

  .area-detail-section .area-info-wrap {
    padding: 24px 16px;
    border-radius: 12px;
    border: 1px solid #e1e1e1;
  }

.area-info-wrap.credential-info-wrap,
.area-info-wrap.validity-info-wrap {
  padding: 0;
  border: 0;
}

.area-detail-section .area-info-wrap ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  row-gap: 20px;
}

  .area-detail-section .area-info-wrap ul li {
    width: 14.28%;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: start;
  }

.area-info-wrap.credential-info-wrap ul li {
  min-width: 260px;
  width: 26%;
}

.area-info-wrap.validity-info-wrap ul li {
  min-width: 260px;
  width: 21%;
}

.area-detail-section .area-info-wrap .area-info-title {
  font-size: 14px;
  color: var(--text-color-secondary);
}

.area-detail-section .area-info-wrap .area-info-desc {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-color);
}

.area-detail-section .area-info-wrap .area-info-tag {
  padding: 4px 8px;
  border-radius: 8px;
  display: inline-flex;
}

  .area-detail-section .area-info-wrap .area-info-tag.available {
    background-color: #0080001a;
    color: #008000;
  }

  .area-detail-section .area-info-wrap .area-info-tag.unavailable {
    background: #e419191a;
    color: #e41919;
  }

.area-detail-section .area-device-wrap {
  display: flex;
  row-gap: 40px;
  margin: 0 -20px;
}

  .area-detail-section .area-device-wrap .area-device-box-wrap {
    width: 50%;
    padding: 0 20px;
  }

  .area-detail-section .area-device-wrap .area-device-box {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ebeef6;
  }

  .area-detail-section .area-device-wrap .area-device-box-header {
    padding: 12px 16px;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }

  .area-detail-section .area-device-wrap .area-device-box-body {
    padding: 12px 16px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .area-detail-section .area-device-wrap .area-device-box-title {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    gap: 4px;
    align-items: center;
  }

  .area-detail-section .area-device-wrap .area-device-box-row {
    display: flex;
    row-gap: 16px;
    margin: 0 -8px;
  }

  .area-detail-section .area-device-wrap .area-device-box-col {
    width: 50%;
    padding: 0 8px;
  }

  .area-detail-section .area-device-wrap .area-device-box-inner {
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .area-detail-section .area-device-wrap .area-device-log {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .area-detail-section .area-device-wrap .area-device-log-type {
    font-weight: 500;
    font-size: 14px;
  }

  .area-detail-section .area-device-wrap .area-device-log-device {
    padding: 4px 8px;
    line-height: 1;
    background-color: #6f7a8b;
    border-radius: 8px;
    font-size: 14px;
    color: var(--white-color);
  }

  .area-detail-section .area-device-wrap .area-device-log-desc {
    display: flex;
    flex-direction: column;
    font-size: 12px;
  }

    .area-detail-section .area-device-wrap .area-device-log-desc .area-device-id {
      font-weight: 500;
      color: var(--text-color);
    }

    .area-detail-section .area-device-wrap .area-device-log-desc .area-device-desc {
      color: var(--text-color-secondary);
    }

.area-detail-section .audit-info-wrap ul {
  display: flex;
  flex-wrap: wrap;
}

  .area-detail-section .audit-info-wrap ul li {
    padding: 0 16px;
    border-right: 1px solid #e1e1e1;
  }

    .area-detail-section .audit-info-wrap ul li:last-of-type {
      border: 0;
    }

.area-detail-section .audit-info-wrap .audit-info-title {
  font-size: 14px;
  color: var(--text-color-secondary);
}

.area-detail-section .audit-info-wrap .audit-info-desc {
  font-weight: 500;
  color: var(--text-color);
}

#areaSettingTable tbody input[type="checkbox"] {
  display: none;
}

.dashboard-datatable .table .device-tag {
  display: inline-block;
  border-radius: 8px;
  padding: 4px 8px;
  background-color: #828696;
  color: white;
}

.dashboard-datatable .table .device-status {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dashboard-datatable .table .device-status-oval {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
}

  .dashboard-datatable .table .device-status-oval.online {
    background-color: #008000;
  }

  .dashboard-datatable .table .device-status-oval.offline {
    background-color: #e41919;
  }

.device-setting-section {
  padding: 34px 16px 24px;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  position: relative;
}

  .device-setting-section .device-setting-title-tag {
    padding: 8px;
    border-radius: 8px;
    background-color: #f0f0f0;
    display: inline-block;
    position: absolute;
    top: -18px;
    left: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color);
  }

.device-setting-wrap .device-setting-section {
  margin-top: 42px;
}

.device-setting-section ul.device-info {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
  row-gap: 40px;
}

  .device-setting-section ul.device-info li {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

    .device-setting-section ul.device-info li .device-info-title {
      font-size: 14px;
      color: var(--text-color-secondary);
    }

    .device-setting-section ul.device-info li .device-info-subtitle {
      font-weight: 500;
      color: var(--text-color);
    }

    .device-setting-section ul.device-info li .device-info-tag {
      padding: 4px 8px;
      border-radius: 12px;
      line-height: 1;
      font-size: 12px;
      font-weight: 500;
    }

      .device-setting-section ul.device-info li .device-info-tag.offline {
        background: #e419191a;
        color: #e41919;
      }

      .device-setting-section ul.device-info li .device-info-tag.online {
        background: #0080001a;
        color: #008000;
      }

.device-setting-section .basic-setting input {
  max-width: 80px;
}

.device-setting-section .basic-setting select {
  max-width: 132px;
}

.device-setting-section .basic-setting {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
  row-gap: 40px;
}

  .device-setting-section .basic-setting .basic-setting-field {
    padding: 0 20px;
  }

.custom-popover {
  position: relative;
}

  .custom-popover .custom-popover-btn {
    position: absolute;
    top: 50%;
    right: 30px;
    white-space: nowrap;
    transform: translateY(-50%);
  }

.custom-popover {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

  .custom-popover .custom-popover-btn {
    position: absolute;
    top: 50%;
    right: 24px;
    white-space: nowrap;
    transform: translateY(-50%);
    display: none; /* hidden by default */
    z-index: 10;
  }

  .custom-popover.active .custom-popover-btn {
    display: inline-block; /* show when active */
  }

.access-child-row {
  padding: 24px;
  background-color: var(--bg-color);
}

.time-check:hover,
.time-check:checked + .btn,
.time-check:checked + .btn:hover {
  border-color: #3653a9 !important;
  background-color: #ebeef6 !important;
}

.table-count {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #ebeef6;
  color: #3653a9;
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
}

  .table-count svg {
    color: #3653a9;
  }

.table.access-right-table tr td,
.table.access-right-table tr th {
  border-top: 1px solid #e1e1e1;
}

.table.access-right-table tr th {
  background-color: #f0f0f0;
}

.active-pill {
  padding: 2px 8px;
  border-radius: 12px;
  background-color: #0080001a;
  font-weight: 500;
  font-size: 16px;
  color: #008000;
}

.upload-card {
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.upload-area {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

  .upload-area:hover {
    background-color: #f3f3f3;
    border-color: #bbb;
  }

  .upload-area p {
    margin: 0;
  }

.upload-hint {
  color: #888;
  font-size: 14px;
}

.file-name {
  font-size: 14px;
  color: var(--text-color-secondary);
  margin-top: 10px;
  text-align: left;
}

/* intlTelInput */

.iti {
  width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}

.accordion.company-info-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

  .accordion.company-info-accordion .accordion-button {
    background: var(--bg-color);
    border-bottom: 1px solid #e1e1e1;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
  }

  .accordion.company-info-accordion .accordion-body {
    padding: 16px;
  }

.import-modal .modal-dialog {
  max-width: 900px;
}

.import-modal .modal-header {
  padding: 32px 32px 16px;
  border: 0;
  position: relative;
}

.import-modal .modal-header-border {
  content: "";
  position: absolute;
  width: calc(100% - 64px);
  height: 1px;
  background-color: #e1e1e1;
  bottom: 0;
  left: 32px;
}

.import-modal .modal-header .modal-title {
  font-weight: 600;
  font-size: 24px;
  color: var(--text-color);
}

.import-modal .modal-header .modal-subtitle {
  color: var(--text-color-secondary);
  margin: 0;
}

.import-modal .modal-body {
  padding: 24px 32px 40px;
}

.add-credentials-modal .modal-footer,
.import-modal .modal-footer {
  padding: 16px 32px;
}

.import-modal .upload-area {
  border-radius: 12px;
  background-color: transparent;
  padding: 60px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='12' ry='12' stroke='%23E1E1E1FF' stroke-width='2' stroke-dasharray='8%2c 8' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

  .import-modal .upload-area .title {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color);
  }

  .import-modal .upload-area .subtitle {
    font-weight: 400;
    font-size: 11px;
    color: #18181880;
  }

.import-modal .modal-body .upload-separator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 0;
}

  .import-modal .modal-body .upload-separator hr {
    width: 100%;
    height: 1px;
    background-color: #e1e1e1;
  }

  .import-modal .modal-body .upload-separator p {
    flex-shrink: 0;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
  }

.no-data-found {
  padding: 60px;
  border-radius: 8px;
  background: linear-gradient( 180.02deg, #d4dfff -192.48%, rgba(255, 255, 255, 0) 101.87% );
  border: 1px solid #e1e1e1;
  height: 100%;
  min-height: calc(100vh - 163px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

  .no-data-found .no-data-wrapper {
    max-width: 534px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

    .no-data-found .no-data-wrapper p {
      margin: 0;
      font-weight: 500;
      font-size: 18px;
      color: var(--text-color-secondary);
    }

      .no-data-found .no-data-wrapper p strong {
        color: var(--text-color);
      }

/* area setting addons css */
.area-setting-page-wrapper .dashboard-table-header .sub-text {
  font-size: 12px;
  color: var(--text-color-secondary);
}

.area-setting-page-wrapper .tab-wrap > .nav .nav-link:hover,
.area-setting-page-wrapper .tab-wrap > .nav .nav-link.active {
  background-color: var(--primary-bg-color);
  color: var(--accent-color);
  font-weight: 600;
}

.area-setting-page-wrapper .tab-wrap > .nav .nav-link {
  padding: 15px 16px 14px 16px;
  border-bottom: none;
  position: relative;
  line-height: 1.2;
  font-size: 14px;
  color: var(--text-color-secondary);
  border: none;
  border-radius: 8px 8px 0 0;
}

.area-setting-page-wrapper .nav {
  border-bottom: none;
  gap: 8px;
  margin-bottom: 0;
}

.area-setting-page-wrapper #datatableSearchContainer {
  position: relative;
}

  .area-setting-page-wrapper #datatableSearchContainer::after {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    right: 10px;
    top: 7px;
    background-image: url("../img/search-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
    pointer-events: none;
  }

  .area-setting-page-wrapper
  #datatableSearchContainer
  .form-control:not(:placeholder-shown) ~ *::after,
  .area-setting-page-wrapper
  #datatableSearchContainer:has(.form-control:not(:placeholder-shown))::after {
    opacity: 0;
  }

  .area-setting-page-wrapper #datatableSearchContainer .form-control {
    padding-top: 5px;
    padding-bottom: 5px;
    height: 30px;
    font-size: 12px;
  }

.white-card {
  background-color: var(--white-color);
  border-radius: 0 8px 8px;
  padding: 24px;
  padding: 27px 24px;
}

#zoneTable .number-tag:not(.device, .capacity),
#areaSettingTable .number-tag:not(.device, .capacity) {
  background-color: var(--white-color);
}

.add-area-setting-wrapper .checkbox-wrapper input,
#areaSettingTable .form-check-input {
  height: 16px;
  width: 16px;
  margin: 0;
  border: 1px solid rgba(51, 51, 51, 0.5);
  box-shadow: none;
  outline: none;
  cursor: pointer;
  background-color: #fff;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

  .add-area-setting-wrapper .checkbox-wrapper input:checked,
  #areaSettingTable .form-check-input:checked {
    background-color: #0f172a;
    border-color: #0f172a;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
  }

.add-area-tabbing-wrapper .vehical-limit-wrapper .form-check {
  max-width: 322px;
  flex: 0 0 322px;
}

.add-area-tabbing-wrapper .vehical-limit-wrapper label {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.add-area-tabbing-wrapper .vehical-limit-wrapper .time-input-group {
  margin-left: auto;
}

.add-area-setting-wrapper .checkbox-wrapper {
  padding-left: 0;
  padding-right: 24px;
}

  .add-area-setting-wrapper .checkbox-wrapper input {
    float: right;
    margin: 4px -24px 0 0;
  }

  .add-area-setting-wrapper .checkbox-wrapper label {
    font-size: 14px;
    font-weight: 500;
  }

.add-area-setting-wrapper .dashboard-form-wrap {
  padding: 24px 32px;
}

.add-area-setting-wrapper .dashboard-form-header.outer-header {
  padding: 21px 15px;
}

.area-setting-tab-wrapper {
  background-color: var(--bg-color);
  border-radius: 8px;
  padding: 16px;
}

  .area-setting-tab-wrapper .tab-wrap > .nav {
    border: none;
  }

#area-limit-pane .time-limit-wrapper {
  max-width: 566px;
  min-height: auto;
  padding: 0;
}

#area-limit-pane .time-limit-wrapper .time-inner-wrapper {
  padding: 0;
}

.time-limit-wrapper {
  min-height: 262px;
}

  .time-limit-wrapper .time-inner-wrapper {
    padding: 0 10px;
  }

  .add-credentials-modal .credential-list .form-check-input:checked,
  .time-limit-wrapper .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
  }

.area-detail-section .area-info-wrap ul li.area-badges-wrap {
  width: 50%;
}

.area-detail-section .area-info-wrap .area-info-desc ul {
  margin: 0;
}

  .area-detail-section .area-info-wrap .area-info-desc ul li {
    width: initial;
    display: block;
    background-color: #3653a91a;
    font-weight: 400;
    border-radius: 8px;
    padding: 2px 8px;
    line-height: 1.3;
    font-size: 14px;
  }

    .area-detail-section .area-info-wrap .area-info-desc ul li span {
      color: var(--accent-color);
      font-size: 11px;
    }

    .area-detail-section .area-info-wrap .area-info-desc ul li a {
      color: var(--text-color);
    }

.system-dispatch-page-wrapper .dashboard-datatable .table thead th,
.system-list-page-wrapper .dashboard-datatable .table thead th,
.system-alert-page-wrapper .dashboard-datatable .table thead th,
.area-setting-page-wrapper .dashboard-datatable .table thead th {
  font-weight: 500;
  padding: 12px 12px;
  border-bottom: 1px solid var(--border-color);
  line-height: 1.44;
  white-space: nowrap;
}

.area-setting-page-wrapper .dashboard-table-header p {
  font-size: 18px;
  line-height: 1.5;
}

.area-setting-page-wrapper .dashboard-table-header .export-btn {
  font-size: 12px;
  padding: 5px 7px;
  font-weight: 500;
  gap: 5px;
  height: 30px;
}

.area-type-wrapper .form-check-wrapper label {
  font-size: 14px;
}

.area-type-wrapper .form-check-wrapper .form-check-input {
  height: 20px;
  width: 20px;
  margin-top: 2px;
}

.area-type-wrapper + .device-form-wrapper {
  margin-top: 11px;
}
/* system setting page css */
.system-settings-wrapper {
  padding: 6px 0 0;
}

  .system-dispatch-page-wrapper .title-wrapper .fw-semibold,
  .system-settings-wrapper .title-block-wrapper .fw-semibold {
    font-size: 18px;
    letter-spacing: 0.2px;
    line-height: 1.4;
  }

  .system-dispatch-page-wrapper .sub-text,
  .system-settings-wrapper .sub-text {
    color: var(--text-color-secondary);
    font-size: 12px;
  }

.system-setting-wrapper {
  border-bottom: 1px solid var(--border-color);
}

  .system-setting-wrapper h2 {
    font-size: 14px;
    gap: 5px;
  }

  .system-setting-wrapper .form-check-wrapper {
    margin-bottom: 19px;
  }

  .system-setting-wrapper .form-check-label {
    color: var(--text-color-secondary);
    font-weight: 500;
    font-size: 14px;
  }

  .system-setting-wrapper .time-line-wrapper .form-label {
    margin-bottom: 0;
    margin-right: 11px;
    white-space: nowrap;
    letter-spacing: -0.15px;
  }

  .system-setting-wrapper .time-line-wrapper .form-control {
    width: 80px;
    height: 40px;
  }

  .system-setting-wrapper .time-line-wrapper .form-select {
    min-width: 106px;
  }

  .system-setting-wrapper .time-line-wrapper:has(.form-select) {
    gap: 40px !important;
  }

  .system-setting-wrapper .btn-wrapper p {
    font-size: 14px;
    gap: 7px;
  }

  .system-setting-wrapper .btn-wrapper {
    padding-top: 24px;
  }

.system-settings-wrapper .dashboard-form-footer {
  margin-top: 46px;
}

.notification-icon .red-dot {
  height: 10px;
  width: 10px;
  background-color: var(--error-bg);
  border-radius: 50%;
  right: -2px;
  top: 1px;
  border: 1px solid var(--white-color);
}
/* profile setting wrapper */
.profile-setting-wrapper .dashboard-tab-wrap > .nav {
  padding: 4px 16px;
  width: 100%;
  gap: 4px;
}

  .profile-setting-wrapper .dashboard-tab-wrap > .nav li {
    width: 33%;
  }

    .profile-setting-wrapper .dashboard-tab-wrap > .nav li .nav-link {
      width: 100%;
      font-size: 14px;
      font-weight: 500;
      padding: 9px 12px;
      line-height: 1;
    }

      .profile-setting-wrapper .dashboard-tab-wrap > .nav li .nav-link:hover,
      .profile-setting-wrapper .dashboard-tab-wrap > .nav li .nav-link.active {
        background-color: var(--primary-bg-color);
        color: var(--accent-color);
      }

.profile-setting-wrapper .tab-content {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.profile-setting-wrapper .profile-title-block {
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  padding: 22px 26px;
}

  .profile-setting-wrapper .profile-title-block h2 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
  }

.profile-setting-wrapper .white-card {
  border-radius: 0;
  padding-bottom: 40px;
}

.profile-setting-wrapper .img-info-block .img-block {
  border-radius: 50%;
  border: 1px solid var(--border-color);
  height: 120px;
  width: 120px;
}

  .profile-setting-wrapper .img-info-block .img-block > img {
    height: 60px;
    width: 60px;
  }

.profile-setting-wrapper .img-info {
  padding: 16px 0;
}

  .profile-setting-wrapper .img-info h3 {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.2px;
  }

  .profile-setting-wrapper .img-info span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-color-secondary);
  }

.profile-setting-wrapper .upload-file-wrapper {
  margin-top: 14px;
}

.profile-setting-wrapper .img-info .btn {
  display: block;
  padding: 7px 8px;
  min-width: 72px;
  line-height: 1.3;
}

.profile-setting-wrapper .form-field-wrapper {
  margin-top: 34px;
  max-width: 1263px;
  gap: 24px 39px;
}

  .profile-setting-wrapper .form-field-wrapper .form-group {
    width: 30.5%;
  }

.profile-setting-wrapper .edit-icon {
  height: 32px;
  width: 32px;
  right: 5px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--white-color);
}

.profile-setting-wrapper .outer-footer {
  background-color: var(--white-color);
  padding: 16px 40px;
  border-top: 1px solid var(--border-color);
}

.notification-listing {
  border-bottom: 1px solid var(--border-color);
}

  .notification-listing:not(:last-child) {
    margin-bottom: 33px;
  }

  .notification-listing .left-block h3 {
    font-size: 14px;
  }

  .notification-listing .left-block .gray-text {
    color: var(--text-color-secondary);
    font-size: 14px;
    letter-spacing: -0.2px;
  }

  .notification-listing .form-switch .form-check-input {
    width: 51px;
    height: 31px;
  }

  .notification-listing .form-switch .form-check-input {
    background-size: 32px;
  }

    .notification-listing .form-switch .form-check-input:checked {
      background-position: 19px center;
    }

.change-password-wrapper .gray-box {
  background-color: var(--bg-color);
  border-radius: 6px;
  padding: 24px 16px;
  margin-top: 32px;
}

.password-toggle {
  position: absolute;
  top: 28px;
  right: 0;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  height: 40px;
  width: 40px;
}

  .password-toggle img {
    width: 18px;
    height: 18px;
    opacity: 0.6;
  }

.form-group.has-search-icon {
  position: relative;
}

  .form-group.has-search-icon button {
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 36px;
  }

  .form-group.has-search-icon .form-control {
    padding-right: 25px;
  }

.update-login-bg .img-wrapper {
  height: 120px;
}

  .update-login-bg .img-wrapper::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 1;
  }

  .update-login-bg .img-wrapper img {
    object-position: center 70%;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

.update-login-bg .update-login-btn {
  position: relative;
  z-index: 1;
  text-align: center;
}

  .update-login-bg .update-login-btn button {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.5);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    padding: 8px;
  }

    .update-login-bg .update-login-btn button img {
      height: 16px;
      width: 16px;
    }
/* datepicker css */

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: none;
}

input[type="date"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

/* media css */
@media (max-width: 1199px) {
  .area-setting-page-wrapper .white-card {
    padding: 20px;
  }

  .time-limit-wrapper {
    min-height: 200px;
  }

  .area-detail-section .area-info-wrap ul {
    flex-wrap: wrap;
  }

    .area-detail-section .area-info-wrap ul li {
      width: 20%;
    }
}

/* date: 27nov */
.analytics-stats-cards {
  display: flex;
}

  .analytics-stats-cards .analytics-stats-card {
    flex: 1;
    padding: 24px 16px;
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #e1e1e1;
    border-right: 0;
    font-weight: 500;
    color: var(--text-color);
  }

    .analytics-stats-cards .analytics-stats-card:last-child {
      border-right: 1px solid #e1e1e1;
    }

.analytics-stats-card .analytics-stats-card-number {
  font-size: 24px;
}

.analytics-stats-card .analytics-stats-card-label {
  font-size: 14px;
}

.analytics-chart-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  row-gap: 24px;
  padding-top: 24px;
}

  .analytics-chart-wrap .analytics-chart {
    padding: 0 12px;
    width: 50%;
  }

    .analytics-chart-wrap .analytics-chart .analytics-chart-box {
      border: 1px solid #e1e1e1;
      background-color: var(--white-color);
    }

  .analytics-chart-wrap .analytics-chart-header {
    padding: 16px;
    border-bottom: 1px solid #e1e1e1;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
  }

  .analytics-chart-wrap .analytics-chart-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .analytics-chart-wrap .analytics-chart-header .btn-download {
    min-width: 32px;
    padding: 0;
    height: 36px;
  }

  .analytics-chart-wrap .analytics-chart-footer {
    padding: 16px;
    border-top: 1px solid #e1e1e1;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color-secondary);
  }

    .analytics-chart-wrap .analytics-chart-footer strong {
      color: var(--text-color);
    }

  .analytics-chart-wrap .analytics-chart-canvas {
    padding: 24px 16px;
  }

.no-data-found .system-setup-list {
  width: 100%;
}

.no-data-found .setup-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.no-data-found .setup-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid #e1e1e1;
  font-weight: 500;
  font-size: 14px;
}

  .no-data-found .setup-item.done {
    font-weight: 700;
  }

.no-data-found .status {
  padding: 8px 12px;
  font-weight: 500;
  min-width: 110px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

  .no-data-found .status.done {
    color: #008000;
    background: rgba(0, 128, 0, 0.1);
  }

  .no-data-found .status.pending {
    color: #333333;
    text-decoration: none;
  }

.area-detail-wrap .vehicle-class-info .vehicle-class-info-title {
  font-weight: 500;
  font-size: 12px;
  padding-bottom: 24px;
  list-style: inside;
  display: list-item;
}

.area-detail-wrap .vehicle-class-info .vehicle-class-info-box {
  border-radius: 12px;
  padding: 24px;
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

  .area-detail-wrap .vehicle-class-info .vehicle-class-info-box > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

.area-detail-wrap .vehicle-class-info .vehicle-class-info-label {
  font-weight: 500;
  font-size: 14px;
}

.area-detail-wrap .vehicle-class-info .vehicle-class-info-content {
  padding: 10px 12px;
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 14px;
}

.log-data-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

  .log-data-list li {
    width: calc(50% - 12px);
    display: flex;
    flex-direction: column;
  }

  .log-data-list .log-data-title {
    font-weight: 500;
    font-size: 12px;
    color: var(--text-color);
  }

  .log-data-list .log-data-subtitle {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-color-secondary);
  }

.dashboard-body {
  padding: 24px;
  border-radius: 8px;
  background-color: var(--white-color);
  min-height: calc(100vh - 237px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

  .dashboard-body.h-auto {
    min-height: auto;
  }

  .dashboard-body .header .title {
    font-weight: 600;
    font-size: 24px;
  }

  .dashboard-body .header .subtitle {
    font-weight: 400;
    font-size: 12px;
    color: var(--text-color-secondary);
  }

  .dashboard-body .payment-provider-box {
    border-radius: 8px;
    padding: 40px;
    background-color: var(--bg-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

    .dashboard-body .payment-provider-box .title {
      font-weight: 600;
      font-size: 32px;
    }

    .dashboard-body .payment-provider-box .subtitle {
      font-size: 20px;
      color: var(--text-color-secondary);
    }

    .dashboard-body .payment-provider-box .cta button {
      border-radius: 24px;
      padding: 4px 16px;
      border: 1px solid #c1cae4;
      display: inline-flex;
      color: var(--accent-color);
      margin-left: auto;
      transition: all 0.3s ease-in-out;
    }

      .dashboard-body .payment-provider-box .cta button:hover {
        background-color: var(--accent-color);
        color: var(--white-color);
        border-color: var(--accent-color);
      }

.dashboard-inner-tab .go-back {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 0.61px solid #e1e1e1;
  background-color: var(--white-color);
  color: #666666;
  display: grid;
  place-items: center;
}

.invoice-detail-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

  .invoice-detail-wrap .invoice-section {
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

    .invoice-detail-wrap .invoice-section .title {
      font-weight: 700;
      font-size: 18px;
    }

      .invoice-detail-wrap .invoice-section .title span {
        font-weight: 500;
        color: var(--text-color-secondary);
      }

    .invoice-detail-wrap .invoice-section ul {
      display: flex;
      column-gap: 48px;
      row-gap: 24px;
      flex-wrap: wrap;
    }

    .invoice-detail-wrap .invoice-section .card {
      display: flex;
      flex-direction: column;
      gap: 4px;
      border: 0;
    }

      .invoice-detail-wrap .invoice-section .card .card-title {
        font-size: 14px;
        margin: 0;
        color: var(--text-color-secondary);
      }

      .invoice-detail-wrap .invoice-section .card .card-info {
        font-weight: 500;
        font-size: 16px;
      }

      .invoice-detail-wrap .invoice-section .card .status-tag {
        padding: 4px 8px;
        border-radius: 8px;
        font-size: 14px;
        display: inline-flex;
      }

        .invoice-detail-wrap .invoice-section .card .status-tag.success {
          background: #0080001a;
          color: #008000;
        }

        .invoice-detail-wrap .invoice-section .card .status-tag.error {
          background: #e419191a;
          color: #e41919;
        }

    .invoice-detail-wrap .invoice-section ul.contract-list {
      padding: 24px;
      border: 1px solid #e1e1e1;
      border-radius: 6px;
    }

      .invoice-detail-wrap .invoice-section ul.contract-list li {
        padding-right: 48px;
        border-right: 1px solid #e1e1e1;
      }

    .invoice-detail-wrap .invoice-section ul.tags {
      gap: 16px;
    }

      .invoice-detail-wrap .invoice-section ul.tags li {
        padding: 8px;
        border-radius: 4px;
        background: #f8f8f8;
        font-size: 14px;
        font-weight: 600;
      }

        .invoice-detail-wrap .invoice-section ul.tags li span {
          font-weight: 400;
        }

/*  */

.dashboard-form-wrap.contract-form-wrap .dashboard-form-header.outer-header {
  background-color: var(--bg-color);
  border-radius: 8px 8px 0 0;
}

.dashboard-form-wrap.contract-form-wrap .dashboard-form-header h1 {
  font-size: 18px;
}

.dashboard-form-wrap.contract-form-wrap .dashboard-form-nav .title-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

  .dashboard-form-wrap.contract-form-wrap
  .dashboard-form-nav
  .title-wrapper
  .title-tag {
    border-radius: 12px;
    padding: 10px;
    border: 1px solid #e1e1e1;
    background-color: var(--white-color);
    font-weight: 500;
    font-size: 10px;
  }

.contract-preview-box {
  border-radius: 8px;
  background: #ebeef6;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

  .contract-preview-box .title {
    font-weight: 600;
    font-size: 14px;
  }

  .contract-preview-box ul {
    list-style: inside;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

    .contract-preview-box ul li {
      font-weight: 500;
      font-size: 14px;
    }

/* Contract Form Checkbox Styling */
/* .contract-form-wrap .form-check-input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    border: 2px solid var(--border-color, #d1d5db);
    background-color: transparent;
    appearance: auto;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    transition: all 0.2s ease;
}

.contract-form-wrap .form-check-input:checked {
    background-color: var(--text-color, #0f172a);
    border-color: var(--text-color, #0f172a);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.contract-form-wrap .form-check-input:focus {
    border-color: var(--text-color, #0f172a);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
} */

.contract-form-wrap .form-check-label {
    cursor: pointer;
    user-select: none;
    margin-left: 8px;
    font-weight: 500;
    color: var(--text-color, #374151);
}

      .contract-preview-box ul li span {
        font-weight: 400;
        color: var(--text-color-secondary);
      }
