*,
*::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;
}

/* Multi-level dropdown styles */
header .dropdown-submenu {
  position: relative;
}

  header .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    margin-left: 0.125rem;
    display: none;
    min-width: 200px;
    z-index: 1001;
  }

    header .dropdown-submenu .dropdown-menu.show {
      display: block;
    }

header .dropdown-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

  header .dropdown-submenu-toggle svg {
    margin-left: auto;
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }

  header .dropdown-submenu .dropdown-menu.show ~ .dropdown-submenu-toggle svg,
  header .dropdown-submenu-toggle:hover svg {
    transform: translateX(2px);
  }

  header .dropdown-submenu-toggle:hover {
    color: var(--accent-color);
    background-color: var(--bs-dropdown-link-hover-bg);
  }

/* 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);
}

/* 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;
    }

/* CREDENTIALS TABS WRAPPER - Specific styles for credentials tabs with back button */
.credentials-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 */
}

.credentials-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;
}

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

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

/* INNER TAB */

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

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

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

    .dashboard-inner-tab > .nav .nav-link:hover,
    .dashboard-inner-tab > .nav .nav-link.active {
      color: var(--text-color);
      border-color: var(--accent-color);
    }

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

/* 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 {
  position: relative;
  width: 100%;
}

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

  .input-group.time-input-group select,
  .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;
  z-index: 1001;
}

.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: 55px;
    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 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;
  }

  .add-vehicle-modal.accesslog-modal
  .access-log-info
  .status-badge.status-not-applicable,
  .dashboard-datatable .table .status-badge.status-not-applicable {
    background: #ff98001a;
    color: #ff9800;
  }

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


/* Fix: remove browser red/dotted invalid outline for "Add Vehicle Class" modal
   Targets both native :invalid and .is-invalid states inside the vehicle-class modal.
   Placed at end to ensure specificity and override browser/UAs and existing rules. */
.add-vehicle-modal.vehicle-class .form-control:invalid,
.add-vehicle-modal.vehicle-class .form-select:invalid,
.add-vehicle-modal.vehicle-class .form-control.is-invalid,
.add-vehicle-modal.vehicle-class .form-select.is-invalid {
  outline: none !important;
  box-shadow: none !important;
  border-color: #e1e1e1 !important; /* neutral border so control doesn't appear red */
}



.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;
}





.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: #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 {
    padding: 8px 12px;
    width: 40px;
    min-width: 40px;
    height: 32px;
    background-color: #e419191a;
    color: #e41919;
  }

.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;
}

/* Dashboard device status: square device cards layout (fixed square tiles) */
.device-status-wrapper {
  background: var(--white-color);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.device-status-wrapper .device-title {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.device-grid {
  display: grid;
  /* flexible number of columns depending on available width; min tile width 180px */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 5px;
  align-items: start;
  /* Responsive: adjust max-height based on actual card height */
  /* For dashboard, max-height is set in dashboard.css */
}

/* make column wrappers (col-*) occupy full grid cell */
.device-grid > * {
  display: block;
  width: 100%;
}

.device-card {
  background: #fff;
  border: 1.5px solid #f1f1f1;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: none;
  /* allow flexible height while keeping a sensible minimum so cards align visually */
  min-height: 110px;
}

.device-card.active {
  border-color: #d1e7ff; /* subtle blue for active */
  background: #f8fbff;
}

.device-card.inactive {
  border-color: #f5d5d5; /* subtle red for inactive */
}

.device-thumb {
  position: relative;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}

.device-thumb img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

.status-dot {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.status-dot.online { background: #008000; }
.status-dot.offline { background: #e41919; }

.device-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* keep content at top like original */
  overflow: hidden;
}

.device-info h5 {
  margin: 0 0 6px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.device-info p {
  margin: 0;
  font-size: 12px;
  color: var(--text-color-secondary);
}

@media (max-width: 991px) {
  .device-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .device-grid {
    grid-template-columns: 1fr;
  }
}

  .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%);
  }

/* Modal font and sizing adjustments for Dwell Time Details */
#viewDwellTimeModal .modal-content {
  font-size: 0.97rem;
  border-radius: 10px;
}

#viewDwellTimeModal .modal-header,
#viewDwellTimeModal .modal-footer {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

#viewDwellTimeModal .modal-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
  margin-top: 0.5rem;
}

#viewDwellTimeModal .modal-subtitle {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0;
}

#viewDwellTimeModal .modal-body {
  padding: 1.5rem 1.8rem;
  font-size: 0.97rem;
}

#viewDwellTimeModal .table,
#viewDwellTimeModal .table th,
#viewDwellTimeModal .table td {
  font-size: 0.95rem;
  padding: 0.35rem 0.5rem;
}

#viewDwellTimeModal .card-header {
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

#viewDwellTimeModal .card-body {
  padding: 0.7rem 1rem;
}

#viewDwellTimeModal .badge {
  font-size: 0.85rem;
  padding: 0.3em 0.7em;
}

@media (max-width: 700px) {
  #viewDwellTimeModal .modal-dialog {
    max-width: 98vw !important;
  }
}

.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;
  }

.header .title {
  font-weight: 500;
  font-size: 36px;
  color: var(--text-color);
}

.header .subtitle {
  font-weight: 400;
  font-size: 20px;
    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;
  background-color: transparent;
  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-tab-pane .time-limit-wrapper {
  max-width: 566px;
}

.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;
}

/* Back Button with text - rounded style */
.btn-back-rounded {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  background-color: #e5e5e5;
  color: #181818;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.btn-back-rounded:hover {
  background-color: #d5d5d5;
  color: #181818;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.btn-back-rounded svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.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-preview-box ul li span {
        font-weight: 400;
        color: var(--text-color-secondary);
      }

.dashboard-inner-box .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

  .dashboard-inner-box .heading .title {
    font-weight: 600;
    font-size: 24px;
  }

.dashboard-inner-box .analytics-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

  .dashboard-inner-box .analytics-list li {
    padding: 0 10px;
    width: 25%;
  }

  .dashboard-inner-box .analytics-list .analytics-card {
    padding: 16px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    display: flex;
    gap: 6px;
  }

    .dashboard-inner-box .analytics-list .analytics-card .card-text {
      font-weight: 400;
      font-size: 12px;
      color: var(--text-color-secondary);
    }

    .dashboard-inner-box .analytics-list .analytics-card .card-stats {
      font-weight: 600;
      font-size: 20px;
      color: var(--text-color);
    }

.payment-usage-wrap {
  padding: 24px 16px;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
}

  .payment-usage-wrap .title {
    font-weight: 600;
    font-size: 24px;
  }

  .payment-usage-wrap .sub-text {
    font-weight: 400;
    font-size: 12px;
    color: var(--text-color-secondary);
    margin: 0;
  }

  .payment-usage-wrap ul {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .payment-usage-wrap .payment-row .bar-container {
    height: 7px;
    background: #f0f0f0;
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
  }

    .payment-usage-wrap .payment-row .bar-container .bar {
      position: absolute;
      z-index: 1;
      left: 0;
      top: 0;
      background: #3653a9;
      height: 100%;
      border-radius: 10px;
    }

  .payment-usage-wrap .payment-row .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 8px;
  }

    .payment-usage-wrap .payment-row .top .label {
      font-weight: 600;
      font-size: 16px;
    }

    .payment-usage-wrap .payment-row .top .percent {
      font-weight: 600;
      font-size: 14px;
    }

  .payment-usage-wrap ul .amount {
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-color-secondary);
  }

.notification-drawer .dashboard-inner-tab > .nav {
  gap: 0;
}

  .notification-drawer .dashboard-inner-tab > .nav .nav-link {
    padding: 6px 12px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-weight: 400;
    font-size: 14px;
    color: #18181880;
  }

    .notification-drawer .dashboard-inner-tab > .nav .nav-link.active {
      background-color: #3653a9;
      color: #ffffff;
    }

.notification-drawer .offcanvas-body {
  overflow: hidden;
}

  .notification-drawer .offcanvas-body .tab-pane {
    height: 100%;
  }

.notification-drawer .notifications-wrap {
  height: 100%;
  overflow: auto;
}

.notification-drawer .review-content-wrapper,
.notification-drawer .dashboard-inner-tab,
.notification-drawer .tab-content {
  height: 100%;
}

.notifications-wrap ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notifications-wrap .notification-card {
  padding: 12px;
  border-radius: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}

  .notifications-wrap .notification-card.active {
    background-color: var(--bg-color);
  }

  .notifications-wrap .notification-card .oval {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }

    .notifications-wrap .notification-card .oval.color-blue {
      background-color: #004fc7;
    }

    .notifications-wrap .notification-card .oval.color-orange {
      background-color: #e18000;
    }

    .notifications-wrap .notification-card .oval.color-red {
      background-color: #e41919;
    }

    .notifications-wrap .notification-card .oval.color-purple {
      background-color: #aa26ff;
    }

    .notifications-wrap .notification-card .oval.color-green {
      background-color: #008000;
    }

    .notifications-wrap .notification-card .oval.color-yellow {
      background-color: #ffcc00;
    }

  .notifications-wrap .notification-card .title {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .notifications-wrap .notification-card .time {
    font-weight: 400;
    font-size: 12px;
    color: var(--text-color-secondary);
  }

/* USER MANAGEMENT SCREEN */

.dashboard-container .dashboard-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

  .dashboard-container .dashboard-heading .title {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.5;
  }

  .dashboard-container .dashboard-heading .subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color-secondary);
  }

.user-management-topbar {
  padding: 20px 24px;
  border-radius: 4px;
  background-color: var(--white-color);
}

  .user-management-topbar form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .user-management-topbar .top,
  .user-management-topbar .bottom,
  .user-management-topbar .cta-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .user-management-topbar .divider {
    height: 1px;
    width: 100%;
    background-color: #e5e7eb;
  }

  .user-management-topbar .search-bar .input-group {
    min-width: 400px;
  }

    .user-management-topbar .search-bar .input-group .input-group-text {
      background-color: transparent;
      border: 1px solid #d1d5db;
      border-right: 0;
    }

    .user-management-topbar .search-bar .input-group input {
      border-left: 0;
      padding-left: 0;
    }

      .user-management-topbar .search-bar .input-group input:focus {
        outline: none;
      }

  .user-management-topbar .filter-wrap label {
    color: var(--text-color-secondary);
  }

  .user-management-topbar .table-result {
    font-size: 14px;
    color: #6b7280;
  }

.user-table-wrap .table {
  border-radius: 4px;
  overflow: hidden;
}

  .user-table-wrap .table thead th {
    padding: 16px;
    background-color: #f0f0f0;
    border-bottom: 1px solid #e1e1e1;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #314158;
  }

  .user-table-wrap .table tbody > * > * {
    padding: 16px;
    font-weight: 400;
    border: 0;
    color: #6b7280;
  }

  .user-table-wrap .table .username {
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
  }

    .user-table-wrap .table .username span {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: var(--accent-color);
      display: grid;
      place-items: center;
      color: var(--white-color);
      text-transform: uppercase;
    }

/* Add to your CSS file */
#addUserModal form:not(.was-validated) .form-control:invalid,
#addUserModal form:not(.was-validated) .form-select:invalid {
  border-color: #ced4da !important;
  background-image: none !important;
}


#addUserModal form:not(.was-validated) .invalid-feedback {
  /*display: none !important;*/
    }

  .user-table-wrap .table .user-role,
  .user-table-wrap .table .user-status {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    background-color: #f3f4f6;
    color: #374151;
  }

    .user-table-wrap .table .user-status.deactivated {
      color: #b45309;
      border-color: #ffd89b;
      background-color: #fff4e5;
    }

    .user-table-wrap .table .user-status.active {
      color: #0f7b3f;
      border-color: #b5e8ca;
      background-color: #e7f7ef;
    }

    .user-table-wrap .table .user-role.admin {
      color: #1e40af;
      border-color: #bfdbfe;
      background-color: #eff6ff;
    }

    .user-table-wrap .table .user-role.super-admin {
      color: #5521b5;
      border-color: #d8b4fe;
      background-color: #f3e8ff;
    }

  .user-table-wrap .table .user-login {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

    .user-table-wrap .table .user-login .time {
      color: var(--text-color);
    }

    .user-table-wrap .table .user-login .device {
      font-size: 12px;
      color: #9ca3af;
    }

.review-drawer.user-details-drawer {
  width: 600px;
}

.user-details-drawer .offcanvas-header {
  background: transparent;
  border-bottom: 1px solid #e5e7eb;
}

.user-details-drawer .offcanvas-body {
  padding-top: 24px;
}

.user-details-drawer .user-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #e5e7eb;
}

  .user-details-drawer .user-wrapper .user-initials {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #5521b5;
    font-weight: 600;
    font-size: 24px;
    color: #ffffff;
    display: grid;
    place-items: center;
  }

  .user-details-drawer .user-wrapper .user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .user-details-drawer .user-wrapper .user-name {
    font-weight: 600;
    font-size: 20px;
  }

.user-details-drawer .user-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  background-color: #f3f4f6;
  color: #374151;
}

  .user-details-drawer .user-tag.deactivated {
    color: #b45309;
    border-color: #ffd89b;
    background-color: #fff4e5;
  }

  .user-details-drawer .user-tag.active {
    color: #0f7b3f;
    border-color: #b5e8ca;
    background-color: #e7f7ef;
  }

  .user-details-drawer .user-tag.admin {
    color: #1e40af;
    border-color: #bfdbfe;
    background-color: #eff6ff;
  }

.user-table-wrap .user-tag.super-admin {
  color: #5521b5;
  border-color: #d8b4fe;
  background-color: #f3e8ff;
}

/* Analytics and Reports Screen */

.selected-columns-wrapper ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

  .selected-columns-wrapper ul li.list-group-item {
    border-left: 2px solid #3653a9;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px 12px 16px;
  }

/* SRNP Dashboard Link Styles - Updated to match payment details page */
.srnp-dashboard-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  color: #9CA3AF; /* Light gray matching eye icon */
  text-decoration: none;
  padding: 4px;
  background-color: transparent;
  border: none;
    }

  /* Remove all hover effects */
  .srnp-dashboard-link:hover {
    color: #9CA3AF;
    background-color: transparent;
    border: none;
    transform: none;
  }

    .srnp-dashboard-link:active {
    color: #9CA3AF;
    transform: none;
    }

    /* Icon styling */
  .srnp-dashboard-link .external-link-icon,
  .srnp-dashboard-link svg {
    width: 18px;
    height: 18px;
    fill: #9CA3AF;
    }

/* Ensure no style changes on hover for icons */
  .srnp-dashboard-link:hover .external-link-icon,
  .srnp-dashboard-link:hover svg {
    fill: #9CA3AF;
  }

/* For table action links */
.table-action .srnp-dashboard-link {
  width: auto;
  height: auto;
  padding: 2px;
}

/* Remove previous hover effects */
.srnp-dashboard-link.success {
  background-color: transparent;
  color: #9CA3AF;
  border-color: transparent;
}

  .srnp-dashboard-link.success:hover {
    background-color: transparent;
  color: #9CA3AF;
  }

.table-action {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

  .table-action button,
  .table-action a {
    height: 32px;
    width: 32px;
    border-radius: var(--border-radius);
    padding: 8px;
    background-color: #fbfbfb;
    border: 1px solid #f1f1f1;
  }

    .table-action button:hover,
    .table-action a:hover {
      background-color: #e1e1e1;
    }

  .table-action svg {
    width: 16px;
    height: 16px;
    display: block;
  }
/* For header/title areas - keep simple styling */
.request-title-block .srnp-dashboard-link,
.modal-header .srnp-dashboard-link {
  width: 32px;
    height: 32px;
  border-radius: 8px;
  background-color: transparent;
  }

.request-title-block .srnp-dashboard-link:hover,
  .modal-header .srnp-dashboard-link:hover {
  background-color: transparent;
  }

/* Payment drawer specific styling */
.review-drawer .srnp-dashboard-link {
  color: #9CA3AF;
    }

.review-drawer .srnp-dashboard-link:hover {
    color: #9CA3AF;
  }
/* SRNP Dashboard Link Styles */
/*.srnp-dashboard-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #f8f9fa;
  color: #9CA3AF;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid #e9ecef;
}

.srnp-dashboard-link:hover {
    background-color: #e9ecef;
    color: #495057;
    border-color: #dee2e6;
    transform: translateY(-1px);
}

  .srnp-dashboard-link:active {
    transform: translateY(0);
  }

  .srnp-dashboard-link .icon {
    width: 18px;
    height: 18px;
  }*/

  /* Green variant for active/success state */
  /*.srnp-dashboard-link.success {
    background-color: #d1f4e0;
    color: #28a745;
    border-color: #28a745;
    }

    .srnp-dashboard-link.success:hover {
      background-color: #b8edd2;
      color: #218838;
    }*/

/* Icon styling */
/*.external-link-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}*/

/* DWELL TIME TABLE — per-vehicle collapsible styling
   Added to make each vehicle-class row show a collapsible Zone cell
   with area / subarea rows styled to match the provided design. */

.dashboard-form-wrap .table tbody tr {
    border-bottom: 1px solid #eaeaea;
}

/* Collapse trigger cell styling */
.table-collapse-row {
    cursor: pointer;
    position: relative;
    user-select: none;
    vertical-align: middle;
    padding: 18px 12px;
}

/* Icon container */
.table-collapse-row .table-collapse-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: var(--text-color-secondary);
    transition: transform 0.25s ease;
    vertical-align: middle;
}

/* Rotation state — JS may add .rotate or Bootstrap aria-expanded will be present */
.table-collapse-row .table-collapse-icon.rotate,
.table-collapse-row[aria-expanded="true"] .table-collapse-icon {
    transform: rotate(180deg);
}

/* Parent (vehicle-class) row spacing */
.dashboard-form-wrap .table > tbody > tr > td {
    padding: 18px 12px;
    vertical-align: middle;
}

/* Collapse row that contains inner area table */
.collapse-row {
    background-color: transparent;
}

.collapse-row > td {
    padding: 0 !important;
    border: 0;
}

/* Inner area table styling */
.collapse-row .table {
    margin: 0;
    background-color: #f7f7f7; /* subtle gray for area rows to match design */
    border-radius: 0;
}

.collapse-row .table tbody tr {
    border-top: 1px solid #eaeaea;
    background: #f7f7f7;
}

.collapse-row .table tbody tr td {
    padding: 18px 12px !important;
    vertical-align: middle;
    color: var(--text-color);
}

/* Area name indentation (second column of inner rows) */
.collapse-row .table tbody tr td:nth-child(2) {
    padding-left: 24px !important;
}

/* Sub-area additional indentation */
.collapse-row .table tbody tr td[style*="padding-left:40px"],
.collapse-row .table tbody tr td.subarea {
    padding-left: 48px !important;
}

/* Ensure the inner table fills the same width as parent columns */
.collapse-row .table.mb-0 {
    width: 100%;
    border-collapse: collapse;
}

/* Keep action column buttons visually consistent */
.dashboard-form-wrap .table .table-action button,
.dashboard-form-wrap .table .table-action a {
    height: 32px;
    width: 32px;
    padding: 6px;
    display: grid;
    place-items: center;
    border-radius: var(--border-radius);
    background-color: #fbfbfb;
    border: 1px solid #f1f1f1;
}

/* Remove heavy box shadows on inner table, keep subtle look */
.collapse-row .table,
.dashboard-form-wrap .table {
    box-shadow: none;
}

/* Hover effect for collapse trigger cell */
.table-collapse-row:hover {
    background-color: rgba(54, 83, 169, 0.03);
    transition: background-color 0.15s ease;
}

/* Small responsive adjustment for very narrow screens */
@media (max-width: 576px) {
    .collapse-row .table tbody tr td,
    .dashboard-form-wrap .table > tbody > tr > td {
        padding: 12px 8px !important;
    }
}

/* DWELL TIME TABLE — per-vehicle collapsible styling
   Added to make each vehicle-class row show a collapsible Zone cell
   with area / subarea rows styled to match the provided design. */

.dashboard-form-wrap .table tbody tr {
    border-bottom: 1px solid #eaeaea;
}

/* Collapse trigger cell styling */
.table-collapse-row {
    cursor: pointer;
    position: relative;
    user-select: none;
    vertical-align: middle;
    padding: 18px 12px;
}

/* Icon container */
.table-collapse-row .table-collapse-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: var(--text-color-secondary);
    transition: transform 0.25s ease;
    vertical-align: middle;
}

/* Rotation state — JS may add .rotate or Bootstrap aria-expanded will be present */
.table-collapse-row .table-collapse-icon.rotate,
.table-collapse-row[aria-expanded="true"] .table-collapse-icon {
    transform: rotate(180deg);
}

/* Parent (vehicle-class) row spacing */
.dashboard-form-wrap .table > tbody > tr > td {
    padding: 18px 12px;
    vertical-align: middle;
}

/* Collapse row that contains inner area table */
.collapse-row {
    background-color: transparent;
}

.collapse-row > td {
    padding: 0 !important;
    border: 0;
}

/* Inner area table styling */
.collapse-row .table {
    margin: 0;
    background-color: #f7f7f7; /* subtle gray for area rows to match design */
    border-radius: 0;
}

.collapse-row .table tbody tr {
    border-top: 1px solid #eaeaea;
    background: #f7f7f7;
}

.collapse-row .table tbody tr td {
    padding: 18px 12px !important;
    vertical-align: middle;
    color: var(--text-color);
}

/* Area name indentation (second column of inner rows) */
.collapse-row .table tbody tr td:nth-child(2) {
    padding-left: 24px !important;
}

/* Sub-area additional indentation */
.collapse-row .table tbody tr td[style*="padding-left:40px"],
.collapse-row .table tbody tr td.subarea {
    padding-left: 48px !important;
}

/* Ensure the inner table fills the same width as parent columns */
.collapse-row .table.mb-0 {
    width: 100%;
    border-collapse: collapse;
}

/* Keep action column buttons visually consistent */
.dashboard-form-wrap .table .table-action button,
.dashboard-form-wrap .table .table-action a {
    height: 32px;
    width: 32px;
    padding: 6px;
    display: grid;
    place-items: center;
    border-radius: var(--border-radius);
    background-color: #fbfbfb;
    border: 1px solid #f1f1f1;
}

/* Remove heavy box shadows on inner table, keep subtle look */
.collapse-row .table,
.dashboard-form-wrap .table {
    box-shadow: none;
}

/* Hover effect for collapse trigger cell */
.table-collapse-row:hover {
    background-color: rgba(54, 83, 169, 0.03);
    transition: background-color 0.15s ease;
}

/* Small responsive adjustment for very narrow screens */
@media (max-width: 576px) {
    .collapse-row .table tbody tr td,
    .dashboard-form-wrap .table > tbody > tr > td {
        padding: 12px 8px !important;
    }
}

/* DWELL TIME TABLE — per-vehicle collapsible styling
   Added to make each vehicle-class row show a collapsible Zone cell
   with area / subarea rows styled to match the provided design. */

.dashboard-form-wrap .table tbody tr {
    border-bottom: 1px solid #eaeaea;
}

/* Collapse trigger cell styling */
.table-collapse-row {
    cursor: pointer;
    position: relative;
    user-select: none;
    vertical-align: middle;
    padding: 18px 12px;
}

/* Icon container */
.table-collapse-row .table-collapse-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: var(--text-color-secondary);
    transition: transform 0.25s ease;
    vertical-align: middle;
}

/* Rotation state — JS may add .rotate or Bootstrap aria-expanded will be present */
.table-collapse-row .table-collapse-icon.rotate,
.table-collapse-row[aria-expanded="true"] .table-collapse-icon {
    transform: rotate(180deg);
}

/* Parent (vehicle-class) row spacing */
.dashboard-form-wrap .table > tbody > tr > td {
    padding: 18px 12px;
    vertical-align: middle;
}

/* Collapse row that contains inner area table */
.collapse-row {
    background-color: transparent;
}

.collapse-row > td {
    padding: 0 !important;
    border: 0;
}

/* Inner area table styling */
.collapse-row .table {
    margin: 0;
    background-color: #f7f7f7; /* subtle gray for area rows to match design */
    border-radius: 0;
}

.collapse-row .table tbody tr {
    border-top: 1px solid #eaeaea;
    background: #f7f7f7;
}

.collapse-row .table tbody tr td {
    padding: 18px 12px !important;
    vertical-align: middle;
    color: var(--text-color);
}

/* Area name indentation (second column of inner rows) */
.collapse-row .table tbody tr td:nth-child(2) {
    padding-left: 24px !important;
}

/* Sub-area additional indentation */
.collapse-row .table tbody tr td[style*="padding-left:40px"],
.collapse-row .table tbody tr td.subarea {
    padding-left: 48px !important;
}

/* Ensure the inner table fills the same width as parent columns */
.collapse-row .table.mb-0 {
    width: 100%;
    border-collapse: collapse;
}

/* Keep action column buttons visually consistent */
.dashboard-form-wrap .table .table-action button,
.dashboard-form-wrap .table .table-action a {
    height: 32px;
    width: 32px;
    padding: 6px;
    display: grid;
    place-items: center;
    border-radius: var(--border-radius);
    background-color: #fbfbfb;
    border: 1px solid #f1f1f1;
}

/* Remove heavy box shadows on inner table, keep subtle look */
.collapse-row .table,
.dashboard-form-wrap .table {
    box-shadow: none;
}

/* Hover effect for collapse trigger cell */
.table-collapse-row:hover {
    background-color: rgba(54, 83, 169, 0.03);
    transition: background-color 0.15s ease;
}

/* Small responsive adjustment for very narrow screens */
@media (max-width: 576px) {
    .collapse-row .table tbody tr td,
    .dashboard-form-wrap .table > tbody > tr > td {
        padding: 12px 8px !important;
    }
}

/* DWELL TIME TABLE — per-vehicle collapsible styling
   Added to make each vehicle-class row show a collapsible Zone cell
   with area / subarea rows styled to match the provided design. */

.dashboard-form-wrap .table tbody tr {
    border-bottom: 1px solid #eaeaea;
}

/* Collapse trigger cell styling */
.table-collapse-row {
    cursor: pointer;
    position: relative;
    user-select: none;
    vertical-align: middle;
    padding: 18px 12px;
}

/* Icon container */
.table-collapse-row .table-collapse-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: var(--text-color-secondary);
    transition: transform 0.25s ease;
    vertical-align: middle;
}

/* Rotation state — JS may add .rotate or Bootstrap aria-expanded will be present */
.table-collapse-row .table-collapse-icon.rotate,
.table-collapse-row[aria-expanded="true"] .table-collapse-icon {
    transform: rotate(180deg);
}

/* Parent (vehicle-class) row spacing */
.dashboard-form-wrap .table > tbody > tr > td {
    padding: 18px 12px;
    vertical-align: middle;
}

/* Collapse row that contains inner area table */
.collapse-row {
    background-color: transparent;
}

.collapse-row > td {
    padding: 0 !important;
    border: 0;
}

/* Inner area table styling */
.collapse-row .table {
    margin: 0;
    background-color: #f7f7f7; /* subtle gray for area rows to match design */
    border-radius: 0;
}

.collapse-row .table tbody tr {
    border-top: 1px solid #eaeaea;
    background: #f7f7f7;
}

.collapse-row .table tbody tr td {
    padding: 18px 12px !important;
    vertical-align: middle;
    color: var(--text-color);
}

/* Area name indentation (second column of inner rows) */
.collapse-row .table tbody tr td:nth-child(2) {
    padding-left: 24px !important;
}

/* Sub-area additional indentation */
.collapse-row .table tbody tr td[style*="padding-left:40px"],
.collapse-row .table tbody tr td.subarea {
    padding-left: 48px !important;
}

/* Ensure the inner table fills the same width as parent columns */
.collapse-row .table.mb-0 {
    width: 100%;
    border-collapse: collapse;
}

/* Keep action column buttons visually consistent */
.dashboard-form-wrap .table .table-action button,
.dashboard-form-wrap .table .table-action a {
    height: 32px;
    width: 32px;
    padding: 6px;
    display: grid;
    place-items: center;
    border-radius: var(--border-radius);
    background-color: #fbfbfb;
    border: 1px solid #f1f1f1;
}

/* Remove heavy box shadows on inner table, keep subtle look */
.collapse-row .table,
.dashboard-form-wrap .table {
    box-shadow: none;
}

/* Hover effect for collapse trigger cell */
.table-collapse-row:hover {
    background-color: rgba(54, 83, 169, 0.03);
    transition: background-color 0.15s ease;
}

/* Small responsive adjustment for very narrow screens */
@media (max-width: 576px) {
    .collapse-row .table tbody tr td,
    .dashboard-form-wrap .table > tbody > tr > td {
        padding: 12px 8px !important;
    }
}

/* DWELL TIME TABLE — per-vehicle collapsible styling
   Added to make each vehicle-class row show a collapsible Zone cell
   with area / subarea rows styled to match the provided design. */

.dashboard-form-wrap .table tbody tr {
    border-bottom: 1px solid #eaeaea;
}

/* Collapse trigger cell styling */
.table-collapse-row {
    cursor: pointer;
    position: relative;
    user-select: none;
    vertical-align: middle;
    padding: 18px 12px;
}

/* Icon container */
.table-collapse-row .table-collapse-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: var(--text-color-secondary);
    transition: transform 0.25s ease;
    vertical-align: middle;
}

/* Rotation state — JS may add .rotate or Bootstrap aria-expanded will be present */
.table-collapse-row .table-collapse-icon.rotate,
.table-collapse-row[aria-expanded="true"] .table-collapse-icon {
    transform: rotate(180deg);
}

/* Parent (vehicle-class) row spacing */
.dashboard-form-wrap .table > tbody > tr > td {
    padding: 18px 12px;
    vertical-align: middle;
}

/* Collapse row that contains inner area table */
.collapse-row {
    background-color: transparent;
}

.collapse-row > td {
    padding: 0 !important;
    border: 0;
}

/* Inner area table styling */
.collapse-row .table {
    margin: 0;
    background-color: #f7f7f7; /* subtle gray for area rows to match design */
    border-radius: 0;
}

.collapse-row .table tbody tr {
    border-top: 1px solid #eaeaea;
    background: #f7f7f7;
}

.collapse-row .table tbody tr td {
    padding: 18px 12px !important;
    vertical-align: middle;
    color: var(--text-color);
}

/* Area name indentation (second column of inner rows) */
.collapse-row .table tbody tr td:nth-child(2) {
    padding-left: 24px !important;
}

/* Sub-area additional indentation */
.collapse-row .table tbody tr td[style*="padding-left:40px"],
.collapse-row .table tbody tr td.subarea {
    padding-left: 48px !important;
}

/* Ensure the inner table fills the same width as parent columns */
.collapse-row .table.mb-0 {
    width: 100%;
    border-collapse: collapse;
}

/* Keep action column buttons visually consistent */
.dashboard-form-wrap .table .table-action button,
.dashboard-form-wrap .table .table-action a {
    height: 32px;
    width: 32px;
    padding: 6px;
    display: grid;
    place-items: center;
    border-radius: var(--border-radius);
    background-color: #fbfbfb;
    border: 1px solid #f1f1f1;
}

/* Remove heavy box shadows on inner table, keep subtle look */
.collapse-row .table,
.dashboard-form-wrap .table {
    box-shadow: none;
}

/* Hover effect for collapse trigger cell */
.table-collapse-row:hover {
    background-color: rgba(54, 83, 169, 0.03);
    transition: background-color 0.15s ease;
}

/* Small responsive adjustment for very narrow screens */
@media (max-width: 576px) {
    .collapse-row .table tbody tr td,
    .dashboard-form-wrap .table > tbody > tr > td {
        padding: 12px 8px !important;
    }
}

/* DWELL TIME TABLE — per-vehicle collapsible styling
   Added to make each vehicle-class row show a collapsible Zone cell
   with area / subarea rows styled to match the provided design. */

.dashboard-form-wrap .table tbody tr {
    border-bottom: 1px solid #eaeaea;
}

/* Collapse trigger cell styling */
.table-collapse-row {
    cursor: pointer;
    position: relative;
    user-select: none;
    vertical-align: middle;
    padding: 18px 12px;
}

/* Icon container */
.table-collapse-row .table-collapse-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: var(--text-color-secondary);
    transition: transform 0.25s ease;
    vertical-align: middle;
}

/* Rotation state — JS may add .rotate or Bootstrap aria-expanded will be present */
.table-collapse-row .table-collapse-icon.rotate,
.table-collapse-row[aria-expanded="true"] .table-collapse-icon {
    transform: rotate(180deg);
}

/* Parent (vehicle-class) row spacing */
.dashboard-form-wrap .table > tbody > tr > td {
    padding: 18px 12px;
    vertical-align: middle;
}

/* Collapse row that contains inner area table */
.collapse-row {
    background-color: transparent;
}

.collapse-row > td {
    padding: 0 !important;
    border: 0;
}

/* Inner area table styling */
.collapse-row .table {
    margin: 0;
    background-color: #f7f7f7; /* subtle gray for area rows to match design */
    border-radius: 0;
}

.collapse-row .table tbody tr {
    border-top: 1px solid #eaeaea;
    background: #f7f7f7;
}

.collapse-row .table tbody tr td {
    padding: 18px 12px !important;
    vertical-align: middle;
    color: var(--text-color);
}

/* Area name indentation (second column of inner rows) */
.collapse-row .table tbody tr td:nth-child(2) {
    padding-left: 24px !important;
}

/* Sub-area additional indentation */
.collapse-row .table tbody tr td[style*="padding-left:40px"],
.collapse-row .table tbody tr td.subarea {
    padding-left: 48px !important;
}

/* Ensure the inner table fills the same width as parent columns */
.collapse-row .table.mb-0 {
    width: 100%;
    border-collapse: collapse;
}

/* Keep action column buttons visually consistent */
.dashboard-form-wrap .table .table-action button,
.dashboard-form-wrap .table .table-action a {
    height: 32px;
    width: 32px;
    padding: 6px;
    display: grid;
    place-items: center;
    border-radius: var(--border-radius);
    background-color: #fbfbfb;
    border: 1px solid #f1f1f1;
}

/* Remove heavy box shadows on inner table, keep subtle look */
.collapse-row .table,
.dashboard-form-wrap .table {
    box-shadow: none;
}

/* Hover effect for collapse trigger cell */
.table-collapse-row:hover {
    background-color: rgba(54, 83, 169, 0.03);
    transition: background-color 0.15s ease;
}

/* Small responsive adjustment for very narrow screens */
@media (max-width: 576px) {
    .collapse-row .table tbody tr td,
    .dashboard-form-wrap .table > tbody > tr > td {
        padding: 12px 8px !important;
    }
}

.dashboard-tab-wrap.analytics-and-reports-tab > .nav,
.dashboard-tab-wrap.analytics-and-reports-tab .dashboard-tab-header > .nav {
  padding: 0;
  gap: 8px;
  background-color: transparent;
  display: flex;
  justify-content: center;
}

  .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link,
  .dashboard-tab-wrap.analytics-and-reports-tab
  .dashboard-tab-header > .nav
  .nav-link {
    padding: 8px 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #45556c;
  }

    .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link span,
    .dashboard-tab-wrap.analytics-and-reports-tab
    .dashboard-tab-header > .nav
    .nav-link
    span {
      font-weight: 400;
      font-size: 14px;
      line-height: 21px;
      color: #45556c80;
    }

    .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link:hover,
    .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link.active,
    .dashboard-tab-wrap.analytics-and-reports-tab
    .dashboard-tab-header > .nav
    .nav-link:hover,
    .dashboard-tab-wrap.analytics-and-reports-tab
    .dashboard-tab-header > .nav
    .nav-link.active {
      background: #3653a9;
      box-shadow: 0px 3px 12px -1px #3653a94d;
      color: #ffffff;
      border-color: #3653a9;
    }

      .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link:hover span,
      .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link.active span,
      .dashboard-tab-wrap.analytics-and-reports-tab
      .dashboard-tab-header > .nav
      .nav-link:hover
      span,
      .dashboard-tab-wrap.analytics-and-reports-tab
      .dashboard-tab-header > .nav
      .nav-link.active
      span {
        color: #ffffff80;
      }

.analytics-and-reports-wrap .accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

  .analytics-and-reports-wrap .accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
  }

  .analytics-and-reports-wrap .accordion .accordion-button::after {
    content: none;
  }

  .analytics-and-reports-wrap .accordion .accordion-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--border-color);
  }

  .analytics-and-reports-wrap .accordion .accordion-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
  }

  .analytics-and-reports-wrap .accordion .accordion-cta {
    display: flex;
    gap: 4px;
    align-items: center;
  }

    .analytics-and-reports-wrap .accordion .accordion-cta button {
      min-width: 36px;
    }

  .analytics-and-reports-wrap .accordion .accordion-button {
    padding: 8px;
    width: auto;
    color: #181818;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }

    .analytics-and-reports-wrap
    .accordion
    .accordion-button[data-bs-toggle="collapse"]
    svg {
      transform: rotate(180deg);
    }

    .analytics-and-reports-wrap
    .accordion
    .accordion-button[data-bs-toggle="collapse"].collapsed
    svg {
      transform: rotate(0deg);
    }

.analytics-and-reports-wrap
.accordion-item:has(.collapse:not(.show))
.accordion-header {
  border: 0;
}

.analytics-and-reports-wrap .accordion .accordion-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dashboard-tab-wrap.vehicle-dwell-time-tab .tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.analytics-and-reports-wrap .update-tag {
  padding: 8px 12px 8px 30px;
  border: 1px solid #b9f8cf;
  background-color: #f0fdf4;
  border-radius: 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;
  color: #008236;
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

  .analytics-and-reports-wrap .update-tag::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #00c950;
    border-radius: 50%;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

.dashboard-tab-wrap.vehicle-dwell-time-tab .tab-header > .nav {
  background-color: transparent;
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  gap: 12px;
}

  .dashboard-tab-wrap.vehicle-dwell-time-tab .tab-header > .nav .nav-link {
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background-color: var(--bg-color);
    font-weight: 400;
    font-size: 14px;
    color: #666666;
  }

    .dashboard-tab-wrap.vehicle-dwell-time-tab .tab-header > .nav .nav-link.active {
      background-color: #5521b5;
      color: var(--white-color);
    }

.analytics-and-reports-wrap .white-box {
  padding: 16px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  background-color: var(--white-color);
}

.analytics-and-reports-wrap .gray-box {
  padding: 16px;
  background-color: var(--bg-color);
  border-radius: 10px;
  border: 1px solid #e1e1e1;
}

.analytics-and-reports-wrap ul.dwell-time-stats {
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
  margin: 0 -8px;
}

  .analytics-and-reports-wrap ul.dwell-time-stats li {
    padding: 0 8px;
    width: 50%;
  }

  .analytics-and-reports-wrap ul.dwell-time-stats .card {
    border-radius: 14px;
    padding: 16px;
    border-top: 1px solid #e1e1e1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #181818;
  }

ul.dwell-time-stats .card .card-info {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

ul.dwell-time-stats .card .title {
  font-size: 15px;
  line-height: 22.5px;
  letter-spacing: -0.23px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

  ul.dwell-time-stats .card .title .oval {
    width: 16px;
    height: 16px;
    border-radius: 50%;
  }

    ul.dwell-time-stats .card .title .oval.purple {
      background-color: #a855f7;
    }

    ul.dwell-time-stats .card .title .oval.green {
      background-color: #8bc34a;
    }

    ul.dwell-time-stats .card .title .oval.pink {
      background-color: #ec4899;
    }

    ul.dwell-time-stats .card .title .oval.yellow {
      background-color: #f59e0b;
    }

    ul.dwell-time-stats .card .title .oval.green {
      background-color: #14b8a6;
    }

    ul.dwell-time-stats .card .title .oval.red {
      background-color: #f44336;
    }

    ul.dwell-time-stats .card .title .oval.blue {
      background-color: #2196f3;
    }

    ul.dwell-time-stats .card .title .oval.orange {
      background-color: #ff5722;
    }

ul.dwell-time-stats .card .percentage {
  font-size: 22px;
  line-height: 33px;
  letter-spacing: -0.26px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

  ul.dwell-time-stats .card .percentage span {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.15px;
    color: #666666;
  }

ul.dwell-time-stats .card .info,
ul.dwell-time-stats .card .time {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;
}

ul.dwell-time-stats .card .info {
  color: #666666;
}

.vehicleDwellTime-legend {
  padding-top: 24px;
  border-top: 1px solid #e1e1e1;
  font-size: 12px;
  line-height: 18px;
  color: #666666;
  margin-top: 40px;
  text-align: center;
}

  .vehicleDwellTime-legend span {
    font-weight: 700;
    color: #181818;
  }

.unauthorized-area-table {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e1e1e1;
  overflow: hidden;
}

  .unauthorized-area-table table {
    width: 100%;
    border-collapse: collapse;
  }

  .unauthorized-area-table thead {
    background: #f8f8f8;
  }

  .unauthorized-area-table th {
    text-align: left;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
    color: #666666;
  }

  .unauthorized-area-table td {
    padding: 12px 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.15px;
    color: #0a0a0a;
    border-top: 1px solid #e1e1e1;
  }

  .unauthorized-area-table tbody tr:last-child td {
    border-bottom: none;
  }

.incident-badge {
  display: inline-block;
  padding: 4px 8px;
  background: #ffe2e2;
  color: #c10007;
  border-radius: 4px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;
}

.chart-swiper-wrapper {
  overflow: hidden;
  position: relative;
}

  .chart-swiper-wrapper .dwellTimeComplianceSwiper {
    width: calc(100% - 104px);
    position: static;
  }

.dwellTimeComplianceSwiper .swiper-chart {
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #e1e1e1;
  width: 100%;
  height: 100%;
}

.dwellTimeComplianceSwiper .swiper-button-prev,
.dwellTimeComplianceSwiper .swiper-button-next {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #18181840;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

  .dwellTimeComplianceSwiper .swiper-button-prev svg,
  .dwellTimeComplianceSwiper .swiper-button-next svg {
    width: 20px;
    height: 10px;
    color: #181818;
  }

.dwellTimeComplianceSwiper .swiper-button-prev {
  left: 0px;
}

.dwellTimeComplianceSwiper .swiper-button-next {
  right: 0px;
}

  .dwellTimeComplianceSwiper .swiper-button-prev:hover,
  .dwellTimeComplianceSwiper .swiper-button-next:hover {
    background: var(--bg-color);
  }

.violation-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

  .violation-stats .violation-card {
    padding: 8px 16px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

    .violation-stats .violation-card .card-title {
      font-size: 12px;
      line-height: 18px;
      letter-spacing: 0px;
      color: #666666;
    }

    .violation-stats .violation-card .card-value {
      font-size: 24px;
      line-height: 36px;
      letter-spacing: 0.07px;
      color: #e41919;
    }

    .violation-stats .violation-card .card-subtext {
      font-size: 11px;
      line-height: 16.5px;
      letter-spacing: 0.06px;
      color: #666666;
    }
    .dashboard-tab-wrap.analytics-and-reports-tab > .nav,
.dashboard-tab-wrap.analytics-and-reports-tab .dashboard-tab-header > .nav {
  padding: 0;
  gap: 8px;
  background-color: transparent;
  display: flex;
  justify-content: center;
}

  .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link,
  .dashboard-tab-wrap.analytics-and-reports-tab
  .dashboard-tab-header > .nav
  .nav-link {
    padding: 8px 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #45556c;
  }

    .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link span,
    .dashboard-tab-wrap.analytics-and-reports-tab
    .dashboard-tab-header > .nav
    .nav-link
    span {
      font-weight: 400;
      font-size: 14px;
      line-height: 21px;
      color: #45556c80;
    }

    .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link:hover,
    .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link.active,
    .dashboard-tab-wrap.analytics-and-reports-tab
    .dashboard-tab-header > .nav
    .nav-link:hover,
    .dashboard-tab-wrap.analytics-and-reports-tab
    .dashboard-tab-header > .nav
    .nav-link.active {
      background: #3653a9;
      box-shadow: 0px 3px 12px -1px #3653a94d;
      color: #ffffff;
      border-color: #3653a9;
    }

      .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link:hover span,
      .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link.active span,
      .dashboard-tab-wrap.analytics-and-reports-tab
      .dashboard-tab-header > .nav
      .nav-link:hover
      span,
      .dashboard-tab-wrap.analytics-and-reports-tab
      .dashboard-tab-header > .nav
      .nav-link.active
      span {
        color: #ffffff80;
      }

.analytics-and-reports-wrap .accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

  .analytics-and-reports-wrap .accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
  }

  .analytics-and-reports-wrap .accordion .accordion-button::after {
    content: none;
  }

  .analytics-and-reports-wrap .accordion .accordion-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--border-color);
  }

  .analytics-and-reports-wrap .accordion .accordion-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
  }

  .analytics-and-reports-wrap .accordion .accordion-cta {
    display: flex;
    gap: 4px;
    align-items: center;
  }

    .analytics-and-reports-wrap .accordion .accordion-cta button {
      min-width: 36px;
    }

  .analytics-and-reports-wrap .accordion .accordion-button {
    padding: 8px;
    width: auto;
    color: #181818;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }

    .analytics-and-reports-wrap
    .accordion
    .accordion-button[data-bs-toggle="collapse"]
    svg {
      transform: rotate(180deg);
    }

    .analytics-and-reports-wrap
    .accordion
    .accordion-button[data-bs-toggle="collapse"].collapsed
    svg {
      transform: rotate(0deg);
    }

.analytics-and-reports-wrap
.accordion-item:has(.collapse:not(.show))
.accordion-header {
  border: 0;
}

.analytics-and-reports-wrap .accordion .accordion-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dashboard-tab-wrap.vehicle-dwell-time-tab .tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.analytics-and-reports-wrap .update-tag {
  padding: 8px 12px 8px 30px;
  border: 1px solid #b9f8cf;
  background-color: #f0fdf4;
  border-radius: 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;
  color: #008236;
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

  .analytics-and-reports-wrap .update-tag::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #00c950;
    border-radius: 50%;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

.dashboard-tab-wrap.vehicle-dwell-time-tab .tab-header > .nav {
  background-color: transparent;
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  gap: 12px;
}

  .dashboard-tab-wrap.vehicle-dwell-time-tab .tab-header > .nav .nav-link {
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background-color: var(--bg-color);
    font-weight: 400;
    font-size: 14px;
    color: #666666;
  }

    .dashboard-tab-wrap.vehicle-dwell-time-tab .tab-header > .nav .nav-link.active {
      background-color: #5521b5;
      color: var(--white-color);
    }

.analytics-and-reports-wrap .white-box {
  padding: 16px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  background-color: var(--white-color);
}

.analytics-and-reports-wrap .gray-box {
  padding: 16px;
  background-color: var(--bg-color);
  border-radius: 10px;
  border: 1px solid #e1e1e1;
}

.analytics-and-reports-wrap ul.dwell-time-stats {
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
  margin: 0 -8px;
}

  .analytics-and-reports-wrap ul.dwell-time-stats li {
    padding: 0 8px;
    width: 50%;
  }

  .analytics-and-reports-wrap ul.dwell-time-stats .card {
    border-radius: 14px;
    padding: 16px;
    border-top: 1px solid #e1e1e1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #181818;
  }

ul.dwell-time-stats .card .card-info {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

ul.dwell-time-stats .card .title {
  font-size: 15px;
  line-height: 22.5px;
  letter-spacing: -0.23px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

  ul.dwell-time-stats .card .title .oval {
    width: 16px;
    height: 16px;
    border-radius: 50%;
  }

    ul.dwell-time-stats .card .title .oval.purple {
      background-color: #a855f7;
    }

    ul.dwell-time-stats .card .title .oval.green {
      background-color: #8bc34a;
    }

    ul.dwell-time-stats .card .title .oval.pink {
      background-color: #ec4899;
    }

    ul.dwell-time-stats .card .title .oval.yellow {
      background-color: #f59e0b;
    }

    ul.dwell-time-stats .card .title .oval.green {
      background-color: #14b8a6;
    }

    ul.dwell-time-stats .card .title .oval.red {
      background-color: #f44336;
    }

    ul.dwell-time-stats .card .title .oval.blue {
      background-color: #2196f3;
    }

    ul.dwell-time-stats .card .title .oval.orange {
      background-color: #ff5722;
    }

ul.dwell-time-stats .card .percentage {
  font-size: 22px;
  line-height: 33px;
  letter-spacing: -0.26px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

  ul.dwell-time-stats .card .percentage span {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.15px;
    color: #666666;
  }

ul.dwell-time-stats .card .info,
ul.dwell-time-stats .card .time {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;
}

ul.dwell-time-stats .card .info {
  color: #666666;
}

.vehicleDwellTime-legend {
  padding-top: 24px;
  border-top: 1px solid #e1e1e1;
  font-size: 12px;
  line-height: 18px;
  color: #666666;
  margin-top: 40px;
  text-align: center;
}

  .vehicleDwellTime-legend span {
    font-weight: 700;
    color: #181818;
  }

.unauthorized-area-table {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e1e1e1;
  overflow: hidden;
}

  .unauthorized-area-table table {
    width: 100%;
    border-collapse: collapse;
  }

  .unauthorized-area-table thead {
    background: #f8f8f8;
  }

  .unauthorized-area-table th {
    text-align: left;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
    color: #666666;
  }

  .unauthorized-area-table td {
    padding: 12px 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.15px;
    color: #0a0a0a;
    border-top: 1px solid #e1e1e1;
  }

  .unauthorized-area-table tbody tr:last-child td {
    border-bottom: none;
  }

.incident-badge {
  display: inline-block;
  padding: 4px 8px;
  background: #ffe2e2;
  color: #c10007;
  border-radius: 4px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;
}

.chart-swiper-wrapper {
  overflow: hidden;
  position: relative;
}

  .chart-swiper-wrapper .dwellTimeComplianceSwiper {
    width: calc(100% - 104px);
    position: static;
  }

.dwellTimeComplianceSwiper .swiper-chart {
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #e1e1e1;
  width: 100%;
  height: 100%;
}

.dwellTimeComplianceSwiper .swiper-button-prev,
.dwellTimeComplianceSwiper .swiper-button-next {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #18181840;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

  .dwellTimeComplianceSwiper .swiper-button-prev svg,
  .dwellTimeComplianceSwiper .swiper-button-next svg {
    width: 20px;
    height: 10px;
    color: #181818;
  }

.dwellTimeComplianceSwiper .swiper-button-prev {
  left: 0px;
}

.dwellTimeComplianceSwiper .swiper-button-next {
  right: 0px;
}

  .dwellTimeComplianceSwiper .swiper-button-prev:hover,
  .dwellTimeComplianceSwiper .swiper-button-next:hover {
    background: var(--bg-color);
  }

.violation-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

  .violation-stats .violation-card {
    padding: 8px 16px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

    .violation-stats .violation-card .card-title {
      font-size: 12px;
      line-height: 18px;
      letter-spacing: 0px;
      color: #666666;
    }

    .violation-stats .violation-card .card-value {
      font-size: 24px;
      line-height: 36px;
      letter-spacing: 0.07px;
      color: #e41919;
    }

    .violation-stats .violation-card .card-subtext {
      font-size: 11px;
      line-height: 16.5px;
      letter-spacing: 0.06px;
      color: #666666;
    }
    .dashboard-tab-wrap.analytics-and-reports-tab > .nav,
.dashboard-tab-wrap.analytics-and-reports-tab .dashboard-tab-header > .nav {
  padding: 0;
  gap: 8px;
  background-color: transparent;
  display: flex;
  justify-content: center;
}

  .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link,
  .dashboard-tab-wrap.analytics-and-reports-tab
  .dashboard-tab-header > .nav
  .nav-link {
    padding: 8px 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #45556c;
  }

    .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link span,
    .dashboard-tab-wrap.analytics-and-reports-tab
    .dashboard-tab-header > .nav
    .nav-link
    span {
      font-weight: 400;
      font-size: 14px;
      line-height: 21px;
      color: #45556c80;
    }

    .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link:hover,
    .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link.active,
    .dashboard-tab-wrap.analytics-and-reports-tab
    .dashboard-tab-header > .nav
    .nav-link:hover,
    .dashboard-tab-wrap.analytics-and-reports-tab
    .dashboard-tab-header > .nav
    .nav-link.active {
      background: #3653a9;
      box-shadow: 0px 3px 12px -1px #3653a94d;
      color: #ffffff;
      border-color: #3653a9;
    }

      .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link:hover span,
      .dashboard-tab-wrap.analytics-and-reports-tab > .nav .nav-link.active span,
      .dashboard-tab-wrap.analytics-and-reports-tab
      .dashboard-tab-header > .nav
      .nav-link:hover
      span,
      .dashboard-tab-wrap.analytics-and-reports-tab
      .dashboard-tab-header > .nav
      .nav-link.active
      span {
        color: #ffffff80;
      }

.analytics-and-reports-wrap .accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

  .analytics-and-reports-wrap .accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
  }

  .analytics-and-reports-wrap .accordion .accordion-button::after {
    content: none;
  }

  .analytics-and-reports-wrap .accordion .accordion-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--border-color);
  }

  .analytics-and-reports-wrap .accordion .accordion-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
  }

  .analytics-and-reports-wrap .accordion .accordion-cta {
    display: flex;
    gap: 4px;
    align-items: center;
  }

    .analytics-and-reports-wrap .accordion .accordion-cta button {
      min-width: 36px;
    }

  .analytics-and-reports-wrap .accordion .accordion-button {
    padding: 8px;
    width: auto;
    color: #181818;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }

    .analytics-and-reports-wrap
    .accordion
    .accordion-button[data-bs-toggle="collapse"]
    svg {
      transform: rotate(180deg);
    }

    .analytics-and-reports-wrap
    .accordion
    .accordion-button[data-bs-toggle="collapse"].collapsed
    svg {
      transform: rotate(0deg);
    }

.analytics-and-reports-wrap
.accordion-item:has(.collapse:not(.show))
.accordion-header {
  border: 0;
}

.analytics-and-reports-wrap .accordion .accordion-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dashboard-tab-wrap.vehicle-dwell-time-tab .tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.analytics-and-reports-wrap .update-tag {
  padding: 8px 12px 8px 30px;
  border: 1px solid #b9f8cf;
  background-color: #f0fdf4;
  border-radius: 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;
  color: #008236;
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

  .analytics-and-reports-wrap .update-tag::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #00c950;
    border-radius: 50%;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

.dashboard-tab-wrap.vehicle-dwell-time-tab .tab-header > .nav {
  background-color: transparent;
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  gap: 12px;
}

  .dashboard-tab-wrap.vehicle-dwell-time-tab .tab-header > .nav .nav-link {
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background-color: var(--bg-color);
    font-weight: 400;
    font-size: 14px;
    color: #666666;
  }

    .dashboard-tab-wrap.vehicle-dwell-time-tab .tab-header > .nav .nav-link.active {
      background-color: #5521b5;
      color: var(--white-color);
    }

.analytics-and-reports-wrap .white-box {
  padding: 16px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  background-color: var(--white-color);
}

.analytics-and-reports-wrap .gray-box {
  padding: 16px;
  background-color: var(--bg-color);
  border-radius: 10px;
  border: 1px solid #e1e1e1;
}

.analytics-and-reports-wrap ul.dwell-time-stats {
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
  margin: 0 -8px;
}

  .analytics-and-reports-wrap ul.dwell-time-stats li {
    padding: 0 8px;
    width: 50%;
  }

  .analytics-and-reports-wrap ul.dwell-time-stats .card {
    border-radius: 14px;
    padding: 16px;
    border-top: 1px solid #e1e1e1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #181818;
  }

ul.dwell-time-stats .card .card-info {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

ul.dwell-time-stats .card .title {
  font-size: 15px;
  line-height: 22.5px;
  letter-spacing: -0.23px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

  ul.dwell-time-stats .card .title .oval {
    width: 16px;
    height: 16px;
    border-radius: 50%;
  }

    ul.dwell-time-stats .card .title .oval.purple {
      background-color: #a855f7;
    }

    ul.dwell-time-stats .card .title .oval.green {
      background-color: #8bc34a;
    }

    ul.dwell-time-stats .card .title .oval.pink {
      background-color: #ec4899;
    }

    ul.dwell-time-stats .card .title .oval.yellow {
      background-color: #f59e0b;
    }

    ul.dwell-time-stats .card .title .oval.green {
      background-color: #14b8a6;
    }

    ul.dwell-time-stats .card .title .oval.red {
      background-color: #f44336;
    }

    ul.dwell-time-stats .card .title .oval.blue {
      background-color: #2196f3;
    }

    ul.dwell-time-stats .card .title .oval.orange {
      background-color: #ff5722;
    }

ul.dwell-time-stats .card .percentage {
  font-size: 22px;
  line-height: 33px;
  letter-spacing: -0.26px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

  ul.dwell-time-stats .card .percentage span {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.15px;
    color: #666666;
  }

ul.dwell-time-stats .card .info,
ul.dwell-time-stats .card .time {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;
}

ul.dwell-time-stats .card .info {
  color: #666666;
}

.vehicleDwellTime-legend {
  padding-top: 24px;
  border-top: 1px solid #e1e1e1;
  font-size: 12px;
  line-height: 18px;
  color: #666666;
  margin-top: 40px;
  text-align: center;
}

  .vehicleDwellTime-legend span {
    font-weight: 700;
    color: #181818;
  }

.unauthorized-area-table {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e1e1e1;
  overflow: hidden;
}

  .unauthorized-area-table table {
    width: 100%;
    border-collapse: collapse;
  }

  .unauthorized-area-table thead {
    background: #f8f8f8;
  }

  .unauthorized-area-table th {
    text-align: left;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
    color: #666666;
  }

  .unauthorized-area-table td {
    padding: 12px 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.15px;
    color: #0a0a0a;
    border-top: 1px solid #e1e1e1;
  }

  .unauthorized-area-table tbody tr:last-child td {
    border-bottom: none;
  }

.incident-badge {
  display: inline-block;
  padding: 4px 8px;
  background: #ffe2e2;
  color: #c10007;
  border-radius: 4px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;
}

.chart-swiper-wrapper {
  overflow: hidden;
  position: relative;
}

  .chart-swiper-wrapper .dwellTimeComplianceSwiper {
    width: calc(100% - 104px);
    position: static;
  }

.dwellTimeComplianceSwiper .swiper-chart {
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #e1e1e1;
  width: 100%;
  height: 100%;
}

.dwellTimeComplianceSwiper .swiper-button-prev,
.dwellTimeComplianceSwiper .swiper-button-next {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #18181840;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

  .dwellTimeComplianceSwiper .swiper-button-prev svg,
  .dwellTimeComplianceSwiper .swiper-button-next svg {
    width: 20px;
    height: 10px;
    color: #181818;
  }

.dwellTimeComplianceSwiper .swiper-button-prev {
  left: 0px;
}

.dwellTimeComplianceSwiper .swiper-button-next {
  right: 0px;
}

  .dwellTimeComplianceSwiper .swiper-button-prev:hover,
  .dwellTimeComplianceSwiper .swiper-button-next:hover {
    background: var(--bg-color);
  }

.violation-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

  .violation-stats .violation-card {
    padding: 8px 16px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

    .violation-stats .violation-card .card-title {
      font-size: 12px;
      line-height: 18px;
      letter-spacing: 0px;
      color: #666666;
    }

    .violation-stats .violation-card .card-value {
      font-size: 24px;
      line-height: 36px;
      letter-spacing: 0.07px;
      color: #e41919;
    }

    .violation-stats .violation-card .card-subtext {
      font-size: 11px;
      line-height: 16.5px;
      letter-spacing: 0.06px;
      color: #666666;
    }

.analytics-tab-wrap {
  padding: 16px 0;
  background-color: var(--white-color);
  border-bottom: 1px solid var(--border-color);
}

  .analytics-tab-wrap .analytics-tab-nav {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
  }

    .analytics-tab-wrap .analytics-tab-nav .analytics-tab-nav-left {
      display: flex;
      gap: 16px;
      justify-content: space-between;
      align-items: center;
    }

    .analytics-tab-wrap .analytics-tab-nav .back-btn {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: grid;
      place-items: center;
    }

  .analytics-tab-wrap > .nav,
  .analytics-tab-wrap .analytics-tab-nav-left > .nav {
    padding: 4px;
    border-radius: 10px;
    background-color: var(--bg-color);
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
  }

    .analytics-tab-wrap > .nav .nav-link,
    .analytics-tab-wrap .analytics-tab-nav-left > .nav .nav-link {
      color: #666666;
      padding: 8px 16px;
      border-radius: 8px;
      transition: all 0.3s ease-in-out;
      display: flex;
      align-items: center;
      gap: 8px;
    }

      .analytics-tab-wrap > .nav .nav-link:hover,
      .analytics-tab-wrap > .nav .nav-link.active,
      .analytics-tab-wrap .analytics-tab-nav-left > .nav .nav-link:hover,
      .analytics-tab-wrap .analytics-tab-nav-left > .nav .nav-link.active {
        background-color: var(--white-color);
        color: var(--accent-color);
        box-shadow: 0px 1px 2px -1px #0000001a;
        box-shadow: 0px 1px 3px 0px #0000001a;
      }
.analytics-tab-wrap {
  padding: 16px 0;
  background-color: var(--white-color);
  border-bottom: 1px solid var(--border-color);
}

  .analytics-tab-wrap .analytics-tab-nav {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
  }

    .analytics-tab-wrap .analytics-tab-nav .analytics-tab-nav-left {
      display: flex;
      gap: 16px;
      justify-content: space-between;
      align-items: center;
    }

    .analytics-tab-wrap .analytics-tab-nav .back-btn {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: grid;
      place-items: center;
    }

  .analytics-tab-wrap > .nav,
  .analytics-tab-wrap .analytics-tab-nav-left > .nav {
    padding: 4px;
    border-radius: 10px;
    background-color: var(--bg-color);
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
  }

    .analytics-tab-wrap > .nav .nav-link,
    .analytics-tab-wrap .analytics-tab-nav-left > .nav .nav-link {
      color: #666666;
      padding: 8px 16px;
      border-radius: 8px;
      transition: all 0.3s ease-in-out;
      display: flex;
      align-items: center;
      gap: 8px;
    }

      .analytics-tab-wrap > .nav .nav-link:hover,
      .analytics-tab-wrap > .nav .nav-link.active,
      .analytics-tab-wrap .analytics-tab-nav-left > .nav .nav-link:hover,
      .analytics-tab-wrap .analytics-tab-nav-left > .nav .nav-link.active {
        background-color: var(--white-color);
        color: var(--accent-color);
        box-shadow: 0px 1px 2px -1px #0000001a;
        box-shadow: 0px 1px 3px 0px #0000001a;
      }

.analytics-and-reports-wrap .accordion .accordion-header-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.analytics-and-reports-wrap .accordion-header-info .accordion-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.45px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.analytics-and-reports-wrap .accordion-header-info .accordion-subtitle {
  font-weight: 400;
  font-size: 13px;
  line-height: 19.5px;
  color: #666666;
}

.analytics-and-reports-wrap .accordion-header .filter-btn {
  padding: 4px 16px;
  border-top: 1px solid #e1e1e1;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.15px;
  text-align: center;
  color: #5521b5;
  min-height: 32px;
}

  .analytics-and-reports-wrap .accordion-header .filter-btn svg {
    transition: transform 0.3s ease-in-out;
    color: #0a0a0a;
    flex-shrink: 0;
  }

  .analytics-and-reports-wrap .accordion-header .filter-btn.show svg {
    transform: rotate(180deg);
  }

.analytics-and-reports-wrap .accordion-header .date-picker input {
  padding: 6px 36px 6px 10px;
  min-height: 32px;
  border-radius: 10px;
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.analytics-and-reports-wrap .accordion-header .date-picker span {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  padding: 0;
}

.area-swiper-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-right: 8px;
  border-right: 1px solid var(--border-color);
}

  .area-swiper-nav button {
    width: 36px;
    height: 32px;
    display: grid;
    place-items: center;
  }

  .area-swiper-nav .area-counter {
    display: flex;
    gap: 4px;
    align-items: center;
    color: #666666;
  }

.area-slide-content .area-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.area-slide-content.swiper-slide {
  justify-content: normal;
  display: block;
  text-align: left;
}

.area-slide-content .area-info .area-box {
  padding: 24px;
  border-radius: 14px;
  background-color: rgba(85, 33, 181, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

  .area-slide-content .area-info .area-box .title,
  .area-slide-content .week-pattern-wrap .title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.44px;
    color: var(--text-color);
  }

    .area-slide-content .area-info .area-box .title svg,
    .area-slide-content .week-pattern-wrap .title svg {
      color: #3652a8;
    }

  .area-slide-content .area-info .area-box ul.trend-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

    .area-slide-content .area-info .area-box ul.trend-list li {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 13px;
      line-height: 19.5px;
      letter-spacing: -0.08px;
      color: #666666;
      justify-content: space-between;
    }

      .area-slide-content .area-info .area-box ul.trend-list li span {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.31px;
        color: var(--text-color);
      }

      .area-slide-content .area-info .area-box ul.trend-list li.trend-desc {
        padding-top: 6px;
        border-top: 1px solid #e1e1e1;
      }

        .area-slide-content .area-info .area-box ul.trend-list li.trend-desc span {
          font-size: 14px;
          line-height: 21px;
          letter-spacing: -0.15px;
          color: #00a63e;
          display: flex;
          align-items: center;
          gap: 4px;
        }

        .area-slide-content .area-info .area-box ul.trend-list li.trend-desc span.down {
          color: #e7000b !important;
        }

        .area-slide-content .area-info .area-box ul.trend-list li.trend-desc span .up {
          color: #00a63e;
        }

.area-slide-content .area-info .trend-box {
  padding: 16px;
  border-radius: 14px;
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

  .area-slide-content .area-info .trend-box .title,
  .area-slide-content .area-info .trend-box .desc {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .area-slide-content .area-info .trend-box .title {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
    color: #666666;
  }

  .area-slide-content .area-info .trend-box .desc {
    font-size: 14px;
    line-height: 21px;
    color: var(--text-color);
  }

    .area-slide-content .area-info .trend-box .desc svg.up {
      color: #00c950;
    }

    .area-slide-content .area-info .trend-box .desc svg.down {
      color: #e7000b;
    }

.area-slide-content .week-pattern-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

  .area-slide-content .week-pattern-wrap .weekly-peak-list {
    display: flex;
    align-items: center;
    margin: 0 -8px;
  }

    .area-slide-content .week-pattern-wrap .weekly-peak-list li {
      padding: 0 8px;
      min-width: 170px;
      width: 100%;
    }

    .area-slide-content .week-pattern-wrap .weekly-peak-list .weekly-peak-card {
      padding: 16px;
      border-radius: 14px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      background-color: var(--bg-color);
      text-align: center;
    }

.week-pattern-wrap .weekly-peak-card .peak-card {
  height: 128px;
  border-radius: 10px;
  background-color: var(--white-color);
  position: relative;
  overflow: hidden;
}

  .week-pattern-wrap .weekly-peak-card .peak-card .peak-percent-bar,
  .week-pattern-wrap .weekly-peak-card .peak-card .peak-percent-number {
    position: absolute;
    width: 100%;
    left: 0;
  }

  .week-pattern-wrap .weekly-peak-card .peak-card .peak-percent-bar {
    bottom: 0;
    height: 0;
    background: linear-gradient(180deg, #3652a8 0%, #7c3aed 100%);
  }

  .week-pattern-wrap .weekly-peak-card .peak-card .peak-percent-number {
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.44px;
    color: var(--white-color);
    text-shadow: 1px 1px 4px #000, 2px 2px 0px #3652a8;
  }

.week-pattern-wrap .weekly-peak-card .day {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.15px;
  color: var(--text-color);
}

.week-pattern-wrap .weekly-peak-card .peak-hour {
  font-weight: 400;
  font-size: 12px;
  line-height: 16.5px;
  letter-spacing: 0.06px;
  color: #999999;
}

.week-pattern-wrap .weekly-peak-card .peak-count {
  font-weight: 400;
  font-size: 14px;
  line-height: 16.5px;
  letter-spacing: 0.06px;
  color: #999999;
}

.occupancy-variability-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

  .occupancy-variability-wrap .title {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    color: #181818;
  }

  .occupancy-variability-wrap .subtitle {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
    color: #666666;
  }

.occupancy-summary-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.occupancy-card .card-wrap {
  padding: 16px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-label,
.card-meta {
  font-weight: 400;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 0.06px;
}

.card-value {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.07px;
}

.occupancy-card.avg .card-wrap {
  border: 1px solid #bedbff;
  background: #eff6ff;
  color: #155dfc;
}

  .occupancy-card.avg .card-wrap .card-value {
    color: #1c398e;
  }

.occupancy-card.peak .card-wrap {
  border: 1px solid #ffd6a7;
  background: #fff7ed;
  color: #f54900;
}

  .occupancy-card.peak .card-wrap .card-value {
    color: #7e2a0c;
  }

.occupancy-card.low .card-wrap {
  border: 1px solid #b9f8cf;
  background: #f0fdf4;
  color: #0d542b;
}

/* .analytics-and-reports-wrap .accordion .accordion-cta */

.analytics-and-reports-wrap .accordion-cta > .nav {
  padding: 4px;
  border-radius: 10px;
  background-color: var(--bg-color);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

  .analytics-and-reports-wrap .accordion-cta > .nav .nav-link {
    color: #666666;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 8px;
  }

    .analytics-and-reports-wrap .accordion-cta > .nav .nav-link:hover,
    .analytics-and-reports-wrap .accordion-cta > .nav .nav-link.active {
      background-color: var(--white-color);
      color: var(--accent-color);
      box-shadow: 0px 1px 2px -1px #0000001a;
      box-shadow: 0px 1px 3px 0px #0000001a;
    }

.analytics-and-reports-wrap .chart-toggle {
  padding: 4px;
  border-radius: 10px;
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  gap: 4px;
}

  .analytics-and-reports-wrap .chart-toggle button {
    padding: 6px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    color: #666666;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
  }

    .analytics-and-reports-wrap .chart-toggle button.active,
    .analytics-and-reports-wrap .chart-toggle button:hover {
      background-color: var(--white-color);
      box-shadow: 0px 1px 2px -1px #0000001a;
      box-shadow: 0px 1px 3px 0px #0000001a;
      color: #5521b5;
    }

.dwell-analysis-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

  .dwell-analysis-stats .stat-card {
    background: var(--bg-color);
    padding: 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-color);
  }

    .dwell-analysis-stats .stat-card .stat-title {
      font-weight: 400;
      font-size: 14px;
      line-height: 21px;
    }

    .dwell-analysis-stats .stat-card .stat-value {
      font-weight: 400;
      font-size: 20px;
      line-height: 30px;
    }

      .dwell-analysis-stats .stat-card .stat-value span {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        color: #666666;
      }

    .dwell-analysis-stats .stat-card .stat-change {
      display: flex;
      align-items: center;
      gap: 4px;
      font-weight: 400;
      font-size: 12px;
      line-height: 18px;
      color: #666666;
    }

      .dwell-analysis-stats .stat-card .stat-change.up {
        color: #00a63e;
      }

      .dwell-analysis-stats .stat-card .stat-change.down {
        color: #e7000b;
      }

      .dwell-analysis-stats .stat-card .stat-change.neutral {
        color: #4a5565;
      }

.bi-chart-state {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-color);
  border-radius: 10px;
  padding: 16px;
}

  .bi-chart-state .state-left .state-label,
  .bi-chart-state .state-right .state-label {
    font-size: 11px;
    color: #666666;
  }

  .bi-chart-state .state-left .state-value {
    font-size: 20px;
    color: var(--text-color);
  }

  .bi-chart-state .state-right,
  .bi-chart-state .state-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .bi-chart-state .state-right {
    text-align: right;
  }

  .bi-chart-state .state-change {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
  }

    .bi-chart-state .state-change.down {
      color: #dc2626;
    }

    .bi-chart-state .state-change.up {
      color: #16a34a;
    }

    .bi-chart-state .state-change .arrow {
      font-size: 14px;
    }
