@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1:focus-visible,
h2:focus-visible,
h3:focus-visible,
h4:focus-visible,
h5:focus-visible,
h6:focus-visible,
div:focus-visible,
button:focus-visible,
img:focus-visible,
.btn:focus-visible,
.btn:active,
a:focus-visible {
  outline: 0;
}

.btn:active,
.btn:focus-visible {
  border: 0;
}

body.light-theme {
  background-color: #f4f7fb;
  color: #1e293b;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 0.85rem;
  font-family: "Inter", sans-serif;
}

.text-yellow {
  color: #ffc803 !important;
}

.text-orange {
  color: #f77f00 !important;
}

.text-blue {
  color: #118ab2 !important;
}

.text-teal {
  color: #06d6a0 !important;
}

.bg-yellow {
  background-color: #ffc803 !important;
}

.bg-orange {
  background-color: #f77f00 !important;
}

.bg-blue {
  background-color: #118ab2 !important;
}

.bg-teal {
  background-color: #06d6a0 !important;
}

.bg-yellow-soft {
  background-color: rgba(255, 200, 3, 0.15);
  color: #ffc803;
}

.bg-orange-soft {
  background-color: rgba(247, 127, 0, 0.15);
  color: #f77f00;
}

.bg-blue-soft {
  background-color: rgba(17, 138, 178, 0.15);
  color: #118ab2;
}

.bg-success-soft {
  background-color: rgba(6, 214, 160, 0.15);
  color: #06d6a0;
}

.bg-warning-soft {
  background-color: rgba(255, 200, 3, 0.15);
  color: #ffc803;
}

.bg-danger-soft {
  background-color: rgba(239, 71, 111, 0.15);
  color: #ef476f;
}

.bg-info-soft {
  background-color: rgba(17, 138, 178, 0.15);
  color: #118ab2;
}

.bg-secondary-soft {
  background-color: rgba(100, 116, 139, 0.1);
  color: #64748b;
}

.background-gradient {
  background-image: radial-gradient(circle at top left, rgba(255, 200, 3, 0.04), transparent 45%), radial-gradient(circle at bottom right, rgba(17, 138, 178, 0.04), transparent 55%);
}

.cursor-pointer {
  cursor: pointer;
}

.bg-profile {
  background: linear-gradient(135deg, #002855 0%, #001a38 100%) !important;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.text-dark-blue {
  color: #0c2357;
}

.text-grey-light {
  color: #565d64;
}

.text-light-gray {
  color: #798aa3;
}

.border-dark {
  border: 4px solid white !important;
}

.right-border {
  border-right: 1px solid #ddd;
}
@media (max-width: 767.68px) {
  .right-border {
    border: 0;
  }
}

.text-dark-blue {
  color: #0c2357;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: #1e293b;
}

.text-dark {
  color: #1e293b !important;
}

.text-muted {
  color: #64748b !important;
}

.font-sm {
  font-size: 0.95rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.35rem 0.85rem;
}
.badge.badge-teal {
  background-color: rgba(6, 214, 160, 0.15);
  color: #06d6a0;
}
.badge.badge-blue {
  background-color: rgba(17, 138, 178, 0.15);
  color: #118ab2;
}
.badge.badge-danger {
  background-color: rgba(239, 71, 111, 0.15);
  color: #ef476f;
}
.badge.badge-warning {
  background-color: rgba(255, 200, 3, 0.15);
  color: #ffc803;
}
.badge.badge-brown {
  background: rgba(183, 121, 31, 0.15);
  color: #b7791f;
  border: 1px solid rgba(183, 121, 31, 0.3);
}
.badge.code-badge {
  background: #dbe1e8;
  color: #0c2357;
}
.badge.round-badge {
  width: 1.5rem;
  height: 1.5rem;
}
.badge.plan-badge {
  transform: translate(-15px, 8px);
}

.btn {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn.btn-primary {
  background-color: #0c2357 !important;
  color: #fff !important;
  border: none !important;
}
.btn.btn-primary:hover {
  background-color: rgba(12, 35, 87, 0.05);
  box-shadow: 0 8px 25px rgba(12, 35, 87, 0.25);
}
.btn.btn-gold {
  background: #fbdb2a;
  color: #0c2357;
  transition: all 0.3s ease;
}
.btn.btn-gold:hover {
  background: #ffc803;
  transform: translateY(-2px);
}
.btn.btn-danger {
  background-color: #ef476f !important;
  color: #fff !important;
  border: none !important;
}
.btn.btn-danger:hover {
  background-color: rgba(239, 71, 111, 0.05);
  box-shadow: 0 8px 25px rgba(239, 71, 111, 0.25);
}
.btn.btn-action {
  background-color: #fff;
  color: #64748b;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.5rem 1rem;
}
.btn.btn-action:hover {
  background-color: #f8fafc;
  color: #0c2357;
  border-color: #0c2357;
}
.btn.btn-light-blue {
  background-color: #e3e9fa;
  color: #0c2357;
}
.btn.round-button {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 50%;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 1.25rem rgba(0, 0, 0, 0.08);
}
.btn:active {
  transform: translateY(0);
}
.btn i {
  font-size: 1.1rem;
}

.btn-outline-primary {
  background-color: transparent !important;
  color: #0c2357 !important;
  border: 1px solid #0c2357 !important;
}
.btn-outline-primary:hover {
  background-color: #0c2357 !important;
  color: #fff !important;
}

.btn-light {
  background-color: rgba(12, 35, 87, 0.04) !important;
  color: #0c2357 !important;
  border: 1px solid rgba(12, 35, 87, 0.08) !important;
}
.btn-light:hover {
  background-color: rgba(12, 35, 87, 0.08) !important;
}

.card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-radius: 1.75rem;
}
.card .plan-img {
  height: 14.375rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem 0.5rem 0px 0px;
}
.card .card-body {
  padding: 1.25rem;
}
.card .card-body .hero-stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.card .card-body .hero-stat-item:last-child {
  border-right: 0;
}
@media (max-width: 991.98px) {
  .card .card-body .hero-stat-item {
    border-right: 0;
  }
}
.card .card-body .profile-avatar {
  width: 6.875rem;
  height: 6.875rem;
}
.card .card-body .icon-box {
  width: 2.5rem;
  height: 2.5rem;
}
.card .card-body .cleaning-img {
  height: 16rem;
}
.card .card-body .round-sm {
  width: 2rem;
  height: 2rem;
}
.card .card-body .round-lg {
  width: 7.5rem;
  height: 7.5rem;
}
.card .profile-avatar-container {
  margin-top: -2.625rem;
  z-index: 2;
  padding: 0 2.5rem;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}
.card .profile-avatar {
  width: 8.75rem;
  height: 8.75rem;
  border: 6px solid #fff;
  border-radius: 50% !important;
}
.card.plan-card:hover {
  box-shadow: 0 0.5rem 1.75rem rgba(0, 0, 0, 0.08);
  transform: translateY(-0.125rem);
}
.card.stat-card .icon-div {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.card.stat-card.accent-blue .icon-div {
  background: rgba(17, 138, 178, 0.15);
  color: #118ab2;
}
.card.stat-card.accent-yellow .icon-div {
  background: rgba(255, 200, 3, 0.15);
  color: #ffc803;
}
.card.stat-card.accent-orange .icon-div {
  background: rgba(247, 127, 0, 0.15);
  color: #f77f00;
}
.card.stat-card.accent-teal .icon-div {
  background: rgba(6, 214, 160, 0.15);
  color: #06d6a0;
}
.card.stat-card.accent-red .icon-div {
  background: rgba(239, 71, 111, 0.15);
  color: #ef476f;
}
.card.stat-card.accent-green .icon-div {
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
}
.card.stat-card.accent-purple .icon-div {
  background: rgba(157, 78, 221, 0.15);
  color: #9d4edd;
}
.card.stat-card.accent-gray .icon-div {
  background: rgba(100, 116, 139, 0.15);
  color: #64748b;
}

.fault-alert-card {
  background: linear-gradient(135deg, rgba(239, 71, 111, 0.05), rgba(247, 127, 0, 0.08));
  border-color: rgba(247, 127, 0, 0.15);
}

.round-sm {
  width: 2rem;
  height: 2rem;
}

/* ─── Notification Page Styles ──------------------------------------------------------------─ */
.notif-tab-btn {
  padding: 0.5rem 1.25rem;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.notif-tab-btn .notif-tab-badge {
  min-width: 1.5rem;
  height: 1.5rem;
  background: rgba(90, 107, 140, 0.1);
  color: #5a6b8c;
}
.notif-tab-btn .notif-tab-badge.active {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.notif-tab-btn:hover {
  color: #0c2357;
  background: rgba(12, 35, 87, 0.03);
}
.notif-tab-btn.active {
  background: #0c2357;
  color: #fff;
  box-shadow: 0 0.25rem 0.875rem rgba(12, 35, 87, 0.25);
}

.notif-area .notif-card .notif-action-btn {
  border: 1.5px solid #e2e8f0;
  transition: all 0.2s ease;
}
.notif-area .notif-card .notif-action-btn i {
  font-size: 0.95rem;
}
.notif-area .notif-card .notif-action-btn:hover {
  background: #f8fafc;
  border-color: #0c2357;
  color: #0c2357;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
}
.notif-area .notif-card .notif-action-btn.danger:hover {
  border-color: #ef476f;
  color: #ef476f;
}
.notif-area .notif-card .notif-item {
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.2s ease;
}
.notif-area .notif-card .notif-item:last-child {
  border-bottom: none;
}
.notif-area .notif-card .notif-item:hover {
  background-color: rgba(234, 241, 255, 0.5411764706) !important;
}
.notif-area .notif-card .notif-item:hover .notif-actions {
  opacity: 1;
  transform: translateY(0);
}
.notif-area .notif-card .notif-item.unread {
  background-color: rgba(234, 241, 255, 0.5411764706);
  border-left: 0.25rem solid #118ab2;
}
.notif-area .notif-card .notif-icon {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
}
.notif-area .notif-card .notif-actions {
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.2s ease;
}
@media (max-width: 767.68px) {
  .notif-area .notif-card .notif-actions {
    opacity: 1;
    transform: translateY(0);
  }
}
.notif-area .notif-date-line {
  height: 1px;
  background: #e2e8f0;
}
.notif-area .notif-date-count {
  min-width: 1.625rem;
  height: 1.625rem;
}

.form-div .form-control,
.form-div .form-select {
  border-radius: 8px;
  border: 1px solid #e3e0e0;
  background-color: #fff;
  background-image: var(--bs-form-select-bg-img);
  color: #051c33;
  box-shadow: none !important;
  padding: 8px 12px;
}
.form-div .form-control .form-control:focus,
.form-div .form-control .form-select:focus,
.form-div .form-select .form-control:focus,
.form-div .form-select .form-select:focus {
  border: 1px solid #002855;
}
.form-div .form-select {
  padding: 8px 2rem 8px 12px;
}
.form-div .form-control:focus,
.form-div .form-check-input:focus,
.form-div .form-select:focus {
  box-shadow: none !important;
}
.form-div .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.form-div .form-check-input:checked {
  background-color: #002855;
  border-color: #002855;
}
.form-div .pass-eye {
  right: 0;
  top: 6px;
  cursor: pointer;
  transform: translateX(-10px);
}
.form-div .form-switch .form-check-input {
  --bs-form-switch-bg: url(
    data:image/svg + xml,
    %3csvgxmlns="http://www.w3.org/2000/svg"viewBox="-4 -4 8 8"%3e%3ccircler="3"fill="rgba%280, 0, 0, 0.25%29"/%3e%3c/svg%3e
  );
  width: 2rem;
  height: 1rem;
  background-image: var(--bs-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
.form-div .form-switch .form-check-input:checked {
  --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='%23fff'/%3e%3c/svg%3e");
  background-position: right center;
}
.form-div .form-control {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #1e293b;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.form-div .glass-select {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #1e293b;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.form-div .upload-box {
  border: 2px dashed rgba(15, 23, 42, 0.1);
  background: rgba(100, 116, 139, 0.055);
  transition: all 0.3s ease;
  min-height: 180px;
}
.form-div .upload-box input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 5;
}
.form-div .upload-box .upload-icon-wrapper {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  font-size: 1.5rem;
  color: #64748b;
  transition: all 0.3s ease;
}
.form-div .upload-box .upload-label {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}
.form-div .upload-box .upload-hint {
  font-size: 0.75rem;
  color: #94a3b8;
}
.form-div .upload-box .has-file {
  border-style: solid;
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.02);
}
.form-div .upload-box .has-file .upload-icon-wrapper {
  background: #10b981;
  color: #fff;
}
.form-div .upload-box:hover {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.03);
}
.form-div .upload-box:hover .upload-icon-wrapper {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.15);
}
.form-div .dropzone-area {
  border: 2px dashed rgba(15, 23, 42, 0.1);
  background: rgba(100, 116, 139, 0.055);
  transition: all 0.3s ease;
}
.form-div .dropzone-area:hover {
  border-color: rgba(11, 34, 85, 0.5);
}
.form-div .val-icon {
  transition: all 0.3s ease;
  transform: scale(0.5);
  opacity: 0;
}
.form-div .form-control:valid ~ .val-icon {
  opacity: 1;
  transform: scale(1);
}
.form-div .btn-check:checked + .chip {
  background: #0c2357;
  color: #fff;
  border-color: #0c2357;
}

.modal .icon-box {
  width: 4.5rem;
  height: 4.5rem;
}
.modal .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
}

.table-container {
  position: relative;
  width: 100%;
}
.table-container .table-scroll {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  min-height: 398px;
}
.table-container .table-scroll .table {
  color: #1e293b;
}
.table-container .table-scroll .table th {
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  color: #64748b;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
  text-wrap: nowrap;
  background-color: #fff;
}
.table-container .table-scroll .table th:last-of-type {
  right: 0;
  position: sticky;
}
.table-container .table-scroll .table td {
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 10px 0.5rem;
  text-wrap: nowrap;
  font-size: 0.85rem;
  max-width: 10rem;
}
.table-container .table-scroll .table td:last-of-type {
  right: 0;
  position: sticky;
  background-color: #fff;
  z-index: 1;
}
.table-container .table-scroll .table td:last-of-type:has(.dropdown-menu.show), .table-container .table-scroll .table td:last-of-type:has([data-bs-toggle=dropdown][aria-expanded=true]) {
  z-index: 100;
}
.table-container .table-scroll .table tbody tr:hover td {
  background: rgba(0, 0, 0, 0.01);
}
.table-container .table-scroll .table tbody tr:hover td:last-of-type {
  background-color: #fff;
}
.table-container .table-scroll::-webkit-scrollbar {
  height: 5px;
}
.table-container .table-scroll::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 10px;
}
.table-container .table-scroll::-webkit-scrollbar-thumb {
  background: #ced4da;
  border-radius: 10px;
}
.table-container .table-scroll::-webkit-scrollbar-thumb:hover {
  background: #adb5bd;
}
.table-container .invoice-table th {
  background-color: #2b55b6;
  color: #fff;
}

.dash-table-container {
  height: 245px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.dash-table-container::-webkit-scrollbar {
  width: 5px;
}
.dash-table-container::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 10px;
}
.dash-table-container::-webkit-scrollbar-thumb {
  background: #ced4da;
  border-radius: 10px;
}
.dash-table-container::-webkit-scrollbar-thumb:hover {
  background: #adb5bd;
}

.table .included {
  color: #4caf50;
}

.table .excluded {
  color: #ef476f;
}

.dropdown-menu {
  background-color: #fff;
  border: 1px solid rgba(100, 116, 139, 0.1) !important;
  padding: 10px 0.625rem !important;
  overflow: hidden;
  z-index: 5;
}
.dropdown-menu .dropdown-item {
  padding: 8px 10px !important;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}
.dropdown-menu .dropdown-item i {
  font-size: 14px;
  color: #64748b;
  transition: all 0.25s ease;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #eff7ff;
  color: #06d6a0;
}
.dropdown-menu .dropdown-item:hover i {
  color: #06d6a0;
  transform: scale(1.1);
}
.dropdown-menu .dropdown-item:active {
  background-color: #dbe1e8;
  transform: scale(0.98);
}
.dropdown-menu .dropdown-item.text-danger:hover {
  background-color: rgba(239, 68, 68, 0.05);
  color: #ef476f;
}
.dropdown-menu .dropdown-item.text-danger:hover i {
  color: #ef476f;
}
.dropdown-menu .dropdown-divider {
  border-top: 1px solid #dbe1e8;
}

.filter-dropdown {
  min-width: calc(6rem * 5);
}
.filter-dropdown .filter-div {
  min-height: 190px;
}
@media (max-width: 575.98px) {
  .filter-dropdown {
    min-width: 17.5rem;
    transform: translate3D(-29px, 43.5px, 0px) !important;
  }
}

.tree-stepper {
  max-height: 36rem;
  flex-wrap: nowrap;
  overflow-y: auto;
}
.tree-stepper .tree-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tree-stepper .tree-item .tree-node {
  width: 2.625rem;
  height: 2.625rem;
  color: #adb5bd;
  background-color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tree-stepper .tree-item.active .tree-node {
  background: #0c2357;
  border-color: #0c2357;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0.625rem 1.25rem rgba(0, 40, 85, 0.2);
}
.tree-stepper .tree-item.active .tree-node::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  background: rgba(0, 40, 85, 0.2);
  z-index: -1;
}
.tree-stepper .tree-item.active .tree-label {
  color: #0c2357;
  transform: translateX(5px);
}
.tree-stepper .tree-item.active .tree-desc {
  color: rgba(12, 35, 87, 0.7);
  transform: translateX(5px);
}
.tree-stepper .tree-item::last-child {
  padding-bottom: 0;
}
.tree-stepper .tree-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 2.25rem;
  top: 2.5rem;
  bottom: 0;
  width: 0.125rem;
  background: #e9ecef;
  z-index: 0;
  transition: all 0.4s ease;
}
.tree-stepper .tree-item.active:not(:last-child)::before {
  background: linear-gradient(to bottom, #002855 50%, #e9ecef);
}
.tree-stepper::-webkit-scrollbar {
  width: 0.313rem;
}
.tree-stepper::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 0.625rem;
}
.tree-stepper::-webkit-scrollbar-thumb {
  background: #ced4da;
  border-radius: 0.625rem;
}
.tree-stepper::-webkit-scrollbar-thumb:hover {
  background: #adb5bd;
}

.tree-content {
  padding-top: 0.25rem;
}
.tree-content .tree-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0.125rem;
  transition: all 0.3s ease;
}
.tree-content .tree-desc {
  display: block;
  font-size: 0.75rem;
  color: #adb5bd;
  transition: all 0.3s ease;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #002855;
  z-index: 1;
}
.timeline-item::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 15px;
  bottom: 0;
  width: 2px;
  background: #e9ecef;
}
.timeline-item:last-child::after {
  display: none;
}

/* JUMP TO PAGINATION FOOTER */
.footer-nav .pagination-pill-group .nav-link-pill {
  width: 2.25rem;
  height: 2.25rem;
  color: #64748b;
  transition: 0.2s;
  text-decoration: none;
}
.footer-nav .pagination-pill-group .nav-link-pill.active {
  background: #0c2357 !important;
  color: #fff;
}
.footer-nav .pagination-pill-group .nav-link-pill:hover:not(.active) {
  background: rgba(12, 35, 87, 0.6);
  color: #0c2357;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: #fff;
  border-radius: 50%;
}
.swiper-button-next .swiper-navigation-icon,
.swiper-button-prev .swiper-navigation-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: #000;
  color: #000;
}

header .header_logo {
  width: 6rem;
}
header .notification-btn .dropdown-menu {
  width: 20rem;
  z-index: 1050;
}
header .notification-btn .dropdown-menu .icon-box {
  width: 3rem;
  height: 3rem;
}
header .max-h-300 {
  max-height: 18.75rem;
  overflow-y: auto;
}
header .profile-btn .dropdown-menu {
  min-width: 13.75rem;
  z-index: 1050;
}
header .profile-btn:hover img {
  transform: scale(1.05);
}

.floating-dock {
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
  border-radius: 2.5rem;
  padding: 1.5rem 0.75rem;
  box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.08);
  max-height: 95vh;
  overflow-y: auto;
  overflow-x: hidden;
  width: 72px;
  background-color: #0c2357;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating-dock .sidebar_logo {
  width: 8rem;
}
.floating-dock::-webkit-scrollbar {
  width: 0;
}
.floating-dock .dock-item {
  color: rgba(255, 255, 255, 0.7);
  padding: 0.35rem 0.85rem !important;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating-dock .dock-item:hover {
  color: #fff !important;
  background: rgba(100, 116, 139, 0.3) !important;
  transform: translateX(4px) !important;
}
.floating-dock .dock-item.active {
  width: 3rem;
  height: 3rem;
  color: #0c2357 !important;
  font-weight: 600;
  background: #ffc803 !important;
  box-shadow: 0 0.25rem 0.938rem rgba(255, 200, 3, 0.4);
}
@media (max-width: 991.98px) {
  .floating-dock .dock-item {
    width: 2.5rem;
    height: 2.5rem;
  }
  .floating-dock .dock-item:hover {
    transform: scale(1.15) !important;
    background: rgba(0, 0, 0, 0.05) !important;
    color: #1e293b !important;
  }
}
.floating-dock .dock-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s;
}
@media (max-width: 991.98px) {
  .floating-dock .dock-divider {
    width: 1px;
    height: 1.875rem;
  }
}
@media (max-width: 575.98px) {
  .floating-dock .dock-divider {
    margin: 0 0.1rem;
    height: 2.5rem;
  }
}
.floating-dock .dock-text {
  opacity: 0;
  margin-left: 0.75rem;
  font-size: 1rem;
  transition: opacity 0.2s ease;
  visibility: hidden;
}
@media (max-width: 991.98px) {
  .floating-dock .dock-text {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .floating-dock {
    top: auto;
    bottom: 0.938rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 2.5rem;
    width: -moz-max-content;
    width: max-content;
    max-width: 95vw;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .floating-dock::-webkit-scrollbar {
    display: none;
  }
  .floating-dock #sidebarToggle,
  .floating-dock #sidebarToggle + .dock-divider {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .floating-dock {
    padding: 0.5rem 1rem;
    border-radius: 1.85rem;
    bottom: 0.85rem;
    max-width: 96vw;
  }
}

@media (min-width: 992px) {
  body.sidebar-expanded .floating-dock {
    width: 260px;
  }
  body.sidebar-expanded .floating-dock .dock-item {
    width: calc(100% - 0.85rem) !important;
    border-radius: 0.85rem;
  }
  body.sidebar-expanded .floating-dock .dock-divider {
    width: calc(100% - 0px) !important;
  }
  body.sidebar-expanded .floating-dock .dock-text {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.1s;
  }
  body.sidebar-expanded .floating-dock .dock-item.active {
    transform: translateX(4px) !important;
  }
  body.sidebar-expanded .main-content {
    margin-left: 17.5rem;
  }
}

/* Submenu */
.sidebar-submenu {
  padding-left: 2.375rem;
  width: 100%;
}
.sidebar-submenu a {
  display: block;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
.sidebar-submenu a:hover {
  color: #fff;
  transform: translateX(4px);
}
.sidebar-submenu a.active {
  color: #ffc803;
  font-weight: 500;
}

.main-content {
  margin-left: 6.25rem;
  min-height: 100vh;
  transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 991.98px) {
  .main-content {
    margin-left: 5rem;
  }
}
@media (max-width: 991.98px) {
  .main-content {
    margin-left: 0;
    padding-bottom: 5.625rem;
  }
}
@media (max-width: 575.98px) {
  .main-content {
    padding-bottom: 5rem;
  }
}

.login-wrapper {
  min-height: 100vh;
}
.login-wrapper .logo-img {
  width: 7.75rem;
  height: auto;
}

.map-area {
  height: 26rem;
}

.tech-pin {
  transform: translate(-50%, -50%);
}
.tech-pin .pin-logo {
  width: 2rem;
  height: 2rem;
  background-color: rgba(100, 116, 139, 0.18);
}
.tech-pin .pin-caret {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 0.5rem solid #fff;
}

.filter-pill {
  color: #64748b;
  transition: all 0.15s;
}
.filter-pill:hover {
  background: #0c2357;
  color: #fff;
}
.filter-pill.active {
  background: #0c2357;
  color: #fff;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
}

/* Tracker list */
.tracker-list {
  height: 32.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.tracker-list::-webkit-scrollbar {
  width: 0.35rem;
}
.tracker-list::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 0.625rem;
}
.tracker-list::-webkit-scrollbar-thumb {
  background: #ced4da;
  border-radius: 0.625rem;
}
.tracker-list::-webkit-scrollbar-thumb:hover {
  background: #adb5bd;
}/*# sourceMappingURL=main.css.map */