:root {
  --new-heading-color: #404040;
  --new-light-color: #666666;
}

/* .dashboard__rainbow-edge {
	border: 2px solid transparent;
	border-image: #1486FF;
	border-image-slice: 1;
  } */

/* .dashboard__rainbow-edge {
	border: 2px solid #c379f8;
  } */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--body-font);
}

/* Dashboard Header */

/* .dashboard__header {
  padding: 24px 50px 30px 24px;
  box-shadow: 0px 4px 8px 0px #0000000d;
  background-color: #ffffff !important;
  position: sticky;
  top: 0;
} */
.dashboard__header {
  padding: 24px 50px 30px 24px;
  box-shadow: 0px 4px 8px 0px #0000000d;
  background-color: #ffffff !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* header hamesha top pe rahe */
  justify-content: space-between;
  align-items: center;
}

.seller_dashboard__header {
  z-index: 1000;
}

.buyer_dashboard__header {
  z-index: 9999;
}

.dashboard__header__title {
  font-weight: 500;
  font-size: clamp(18px, 3.5vw, 24px);
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
}

.dashboard__header__para {
  font-weight: 400;
  font-size: clamp(16px, 2.6vw, 18px);
  line-height: 100%;
  letter-spacing: 0;
  color: var(--new-light-color);
}

.dashboard__header__notification__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-color: transparent;
  transition: 0.3s;
}

.dashboard__header__notification__icon:hover {
  background-color: #5479f7;
}

.dashboard__header__notification__icon:hover svg path {
  stroke: #fff;
}

.dashboard__header__logout__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  transition: 0.3s;
  border: 1px solid #c9c7c7;
  border-radius: 5px;
}

.dashboard__header__logout__icon:hover svg path {
  stroke: #ff4d4f;
}

.dashboard__header__onboarding__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  transition: 0.3s;
}

.dashboard__header__onboarding__icon svg {
  width: 44px;
  height: 44px;
  stroke: #000;
  fill: #ffffff;
}

.dashboard__header__onboarding__icon:hover svg path {
  fill: #0065f1;
  stroke: #ffffff;
}

/* Dashboard Side bar menu */
.seller_look .dashboard__left {
  background-color: #ffffff;
}

#seller-services-table .service-col {
  width: 30%;
  min-width: 220px;
}

.dashboard__left {
  width: 88px;
  padding: 19px;
  justify-content: space-between;
  box-shadow: 4px 0px 8px 0px #0000000d;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.dashboard__top {
  padding: 10px;
}

.dashboard__left__main {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.dashboard-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.dashboard-scroll::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.dashboard__bottom__fixed {
  padding: 0;
  border-top: 1px solid #e0e0e0;
}

.dashboard__bottom::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.dashboard__bottom__list {
  padding: 0;
}

.dashboard__bottom__list__item:not(:last-child) {
  margin-bottom: 8px;
}

.get-quote-list {
  border-radius: 8px;
  background: linear-gradient(white, white) padding-box,
    #1486FF border-box;
  border: 2px solid transparent;
}

.get-quote-list>a {
  color: #567af7 !important;
}

.dashboard__bottom__list__item>a {
  font-weight: 500;
  font-size: clamp(13px, 2.2vw, 16px);
  line-height: 100%;
  letter-spacing: 0;
  color: var(--new-heading-color);
  gap: 8px;
  padding: 8px;
  cursor: pointer;
  justify-content: center;
  border-radius: 8x;
  border: 2px solid #ffffff;
}

.dashboard__bottom__list__item:hover>a {
  border-color: #d6d6d6;
  background-color: #f5f5f5;
}

.dashboard__bottom__list__item.active>a {
  background: #1486FF;
  color: #fff;
}

.dashboard__bottom__list__item.active:hover>a {
  border-color: #5479f7;
}

.dashboard__bottom__list__item.active>a svg path {
  stroke: #fff;
}

.dashboard__bottom__list__item.active>a svg path circle {
  stroke: #fff;
}

/* Dashboatd background and colors */
.dashboard__rainbow-edge {
  position: relative;
  border-radius: 16px;
  z-index: 1;
  overflow: hidden;
  border: none;
}

.dashboard__rainbow-edge::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 16px;
  background: #1486FF;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}

.dashboard__bg-soft-gradient {
  background: linear-gradient(123.4deg,
      #ffffff 0.23%,
      #f7f0ff 46.45%,
      #ffffff 92.2%);
}

.dashboard__shadow {
  box-shadow: 0px 4px 12px 0px #00000059;
}

.dashboard__border {
  border: 2px solid #d6d6d6;
}

.dashboard__border_light {
  border: 1px solid #c9c7c7;
}

.padding-32 {
  padding: 32px;
}

.radius-16 {
  border-radius: 16px;
}

.dashboard__bg-glass-lavender {
  background: linear-gradient(106.91deg,
      rgba(220, 170, 255, 0.3) 2.72%,
      rgba(255, 255, 255, 0.3) 97.36%);
}

.dashboard__bg-peach-glow {
  background: linear-gradient(286.98deg,
      rgba(255, 247, 240, 0.3) 2.64%,
      rgba(255, 210, 170, 0.3) 97.52%);
}

.dashboard__bg-mint-frost {
  background: linear-gradient(288.28deg,
      rgba(234, 255, 250, 0.3) 0%,
      rgba(134, 255, 226, 0.3) 97.03%);
}

.dashboard__bg-lemon-mist {
  background: linear-gradient(288.28deg,
      rgba(254, 254, 254, 0.3) 0%,
      rgba(250, 255, 101, 0.3) 97.03%);
}

.dashboard__bg-silver-haze {
  background: linear-gradient(98.35deg,
      rgba(210, 210, 210, 0.3) 2.02%,
      rgba(253, 253, 253, 0.3) 97.56%);
}

.dashboard__bg-silver-sheen {
  background: linear-gradient(98.35deg, #eaeaea 2.02%, #fdfdfd 97.56%);
}

.dashboard__bg-white {
  background: #ffffff !important;
}

.dashboard_promo__contents {
  display: flex;
  flex-direction: column-reverse;
}

.dashboard_promo__title {
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 100%;
  letter-spacing: 0;
  color: var(--new-heading-color);
}

.dashboard_promo__subtitle {
  font-weight: 500;
  font-size: clamp(15px, 3vw, 20px);
  line-height: 100%;
  letter-spacing: 0;
  color: var(--new-light-color);
}

.dashboard__title {
  font-weight: 700;
  font-size: clamp(18px, 3.5vw, 24px);
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
}

.dashboard__notification__clearBtn {
  font-weight: 500;
  font-size: clamp(13px, 2.2vw, 16px);
  line-height: 100%;
  letter-spacing: 0;
  color: #5479f7;
}

.dashboard_promo__icon {
  font-size: initial;
  border-radius: none;
  background-color: transparent;
  color: initial;
}

.dashboard_promo__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: none;
}

.dashboard__header__notification__wrap__list__icon {
  flex-shrink: 0;
  height: 36px;
  width: 36px;
  background-color: transparent;
  color: initial;
  border-radius: 50%;
}

.dashboard__notification__item__author__details a {
  font-weight: 500;
  font-size: clamp(14px, 2.6vw, 18px);
  line-height: 120%;
  letter-spacing: 0;
  color: var(--new-heading-color);
}

.dashboard__notification__item__time {
  line-height: 120%;
  letter-spacing: 0;
  text-align: right;
}

.dashboard__notification__item__time span {
  display: block;
}

.dashboard__notification__item__time span.notification-date {
  font-weight: 400;
  font-size: 12px;
  color: #000000;
}

.dashboard__notification__item__time span.notification-time {
  font-weight: 500;
  font-size: clamp(14px, 2.6vw, 18px);
  color: var(--new-light-color);
}

.dashboard__notification__item:not(:last-child) {
  border-bottom: 1px solid #c9c7c7 !important;
  padding-bottom: 12px !important;
  margin-bottom: 12px !important;
}

.profile_border_top {
  border-top: 1px solid #c9c7c7 !important;
  padding-top: 24px !important;
  margin-top: 24px !important;
}

/* Dashboard scroll box */
.dashboard__scroll-box {
  overflow-y: auto;
  height: 100%;
  max-height: 249px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.dashboard__scroll-box::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

/* Dashboard recent order */
.dashboard_recentOrder__item.open .dashboard_recentOrder__item__details {
  border: inherit;
}

.dashboard_recentOrder__item__service__contents .dashboard_recentOrder__item__service__label {
  font-weight: 700;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: 0;
  color: var(--new-light-color);
}

.dashboard_recentOrder__item__service__contents .dashboard_recentOrder__item__service__value {
  font-weight: 500;
  font-size: clamp(14px, 2.6vw, 18px);
  line-height: 120%;
  letter-spacing: 0;
  color: var(--new-light-color);
}

.dashboard_recentOrder__item__details.recentOrder_children .dashboard_recentOrder__item__details__label {
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: 0;
  color: var(--new-light-color);
}

.dashboard_recentOrder__item__details.recentOrder_children .dashboard_recentOrder__item__details__value {
  font-weight: 700;
  font-size: clamp(14px, 2.6vw, 18px);
  line-height: 120%;
  letter-spacing: 0;
  color: var(--new-light-color);
}

.dashboard_table__main__actions .eye-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  border: 1px solid #aeaeae;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #f5f5f5;
  font-size: 12px;
  color: var(--new-heading-color);
}

.dashboard_table__main__actions .eye-icon:hover {
  background-color: var(--main-color-one);
  border-color: var(--main-color-one);
  color: var(--white);
}

.dashboard_table__main__priority .priorityBtn {
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  border-radius: 4px;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .dashboard_promo__flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard_recentOrder__item__service__contents {
    flex-direction: column;
  }
}

.dashboard__top__logo img {
  width: 40px;
}

.dashboard__right {
  margin-left: 88px;
  background: white;
}

.sidebar-text {
  font-family: "Roboto";
  font-weight: 500;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0;
  color: #404040;
}

.buyer-container {
  height: 370px;
  border-radius: 8px;
  background: #f5f5f5;
  border: 1px solid #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

@media (max-width: 400px) {
  .chat_wrapper__details {
    max-width: 330px;
    width: 100%;

  }
}

@media (max-width: 576px) {
  .buyer_container_table {
    padding: 0.5rem !important;
  }
}

.search-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 20px;
  height: 119px;
  background: #ffffff;
  gap: 34px;
  box-sizing: border-box;
}

.search-container input {
  font-family: "Montserrat";
  font-size: clamp(13px, 2.2vw, 16px);
  font-weight: 400;
  color: #7b7b7b;
  border: none;
  outline: none;
  line-height: 100%;
  border: none !important;
}

.search-container input::placeholder {
  color: #7b7b7b;
  border: none !important;
}

.search-container button {
  width: 129px;
  padding-top: 4px;
  padding-right: 8px;
  padding-bottom: 4px;
  padding-left: 8px;
  gap: 4px;
  border-radius: 8px;
  border-width: 1px;
  background: #1486FF;
  border: 1px solid #f5f5f5;
  box-shadow: 0px 2px 4px 0px #0000001a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-container button span {
  font-family: "Montserrat";
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: 400;
  font-size: clamp(12px, 2vw, 14px);
  line-height: 100%;
  letter-spacing: 0;
  color: #ffffff;
  display: inline-block;
}

.search-container button:hover {
  opacity: 0.9;
}

.booking-section {
  max-width: 640px;
}

#submitBtn span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.spinner-border {
  vertical-align: middle;
  margin-right: 0.25rem;
}

.custom-table th,
.custom-table td {
  border: none !important;
  border-bottom: 1px solid #dee2e6 !important;
  vertical-align: middle;
}

.table-fonts {
  font-family: "Roboto";
  font-weight: 500;
  font-size: clamp(13px, 2.2vw, 16px);
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
}

.icon-btn {
  border: none;
  background: none;
  cursor: pointer;
}

.table th,
.table td {
  vertical-align: middle;
}

.buyer_container_table h4 {
  margin-bottom: 20px;
}

.table-responsive {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
}

.table-address-fonts {
  font-family: "Roboto";
  font-weight: 500;
  font-size: clamp(13px, 2.2vw, 16px);
  line-height: 24px;
  letter-spacing: 0;
  color: #000000;
}

.date-filters {
  font-size: clamp(13px, 2.2vw, 16px);
  width: 100%;
  /* Full width on small screens */
  min-width: 200px;
  /* Minimum width */
  max-width: 328px;
  /* Maximum width */
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  /* Added complete border property */
  margin-bottom: 40px;
}

.date-filter {
  margin-right: 20px;
  cursor: pointer;
  color: #666;
}

.date-filter.active {
  font-weight: bold;
  color: #000;
  text-decoration: underline;
}

.search-container-tables {
  height: 44px;
  gap: 10px;
  width: auto;
  border-radius: 6px;
  border-width: 1px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #aeaeae;
}

.search-container-tables input {
  font-family: "Roboto";
  font-size: clamp(13px, 2.2vw, 16px);
  font-weight: 500;
  color: #7b7b7b;
  border: none;
  outline: none;
  line-height: 100%;
  border: none !important;
  width: 90%;
  letter-spacing: 0;
}

.search-container-tables input::placeholder {
  color: #7b7b7b;
  border: none !important;
}

.custom-pagination .pagination li.active .page-link {
  background-color: #0065f1 !important;
}

.custom-pagination .pagination {
  justify-content: end !important;
}

.badge {
  font-size: 0.85rem;
  padding: 0.5em 0.75em;
  border-radius: 1.4rem;
}

.circle-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  /* light gray background */
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 0;
}

.circle-action-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: invert(27%) sepia(97%) saturate(1579%) hue-rotate(200deg) brightness(92%) contrast(101%);
}

.circle-action-btn:hover {
  background-color: #e2e6ea;
  transform: scale(1.05);
}

.booking-modal {
  --bs-modal-width: 720px !important;
  top: -233px;
}

.booking-modal .modal-body {
  padding: 18px 84px;
}

.cursor-pointer {
  cursor: pointer;
}

.search-ticket {
  height: 44px;
  min-height: auto;
}

/* @media (max-width: 768px) {
  .booking-search-control {
    justify-content: space-around !important;
  }
} */

.select2-selection__rendered {
  display: none;
}

/* profilwe sidebar */
.right-sidebar-profile-menu {
  position: fixed;
  top: 0;
  left: 88px;
  height: 100vh;
  width: 300px;
  background: #ebebeb;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: all 0.3s ease;
  overflow-y: auto;
}

.right-sidebar-profile-menu.show {
  display: block !important;
}

.right-sidebar-profile-menu {
  position: fixed;
  top: 0;
  height: 100%;
  width: 255px;
  background-color: #f8f8f8;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
}

.right-sidebar-profile-menu__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.right-sidebar-profile-menu__header {
  display: flex;
  justify-content: flex-end;
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.right-sidebar-profile-menu__close {
  cursor: pointer;
  font-size: clamp(18px, 3.5vw, 24px);
  color: #404040;
}

.right-sidebar-profile-menu__body {
  padding: 15px;
}

.right-sidebar-profile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.right-sidebar-profile-menu__item {
  margin-bottom: 15px;
}

.right-sidebar-profile-menu__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #404040;
  font-size: clamp(13px, 2.2vw, 16px);
  font-weight: 500;
  transition: background 0.2s;
}

.right-sidebar-profile-menu__link:hover {
  background: #f0f0f0;
  padding-left: 5px;
  border-radius: 5px;
}

.right-sidebar-profile-menu__link svg {
  margin-right: 10px;
}

.profile-icon-bottom-icon:hover>a {
  background: #1486FF;
  background-color: transparent !important;
}

.profile-icon-bottom-icon a {
  border: none !important;
  color: white !important;
}

.buyer-seller-container {
  width: 100%;
  max-width: 97%;
  min-height: 80vh;
  margin: 18px auto;
  border-radius: 8px;
  background: #f5f5f5;
  border: 1px solid #d9d9d9;

  padding: 20px;
  box-sizing: border-box;
}

/* 
.select2-container {
  max-width: 220px !important;
  width: auto !important;
} */

.checkbox-lg {
  transform: scale(1.3);
  cursor: pointer;
}

/* seller Profile page design */
.dashboard_accountProfile {
  /* width: 613px; */
  height: auto;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  /* max-width: 613px; */
  margin-top: 40px;
}

.dashboard_accountProfile .dashboard__inner__item {
  padding: 16px;
}

.dashboard_table__title__btn {
  font-family: "Roboto";
  font-weight: 500;
  font-size: clamp(13px, 2.2vw, 16px);
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
}

.dashboard_accountProfile__btn {
  width: 145px;
  height: auto;
  border-radius: 6px;
  border-width: 1px;
}

.dashboard_accountProfile__btn a {
  padding: 12.5px 16px;
}

.dashboard_account_Profile__author__para {
  font-family: "Roboto";
  font-weight: 500;
  font-size: clamp(15px, 3vw, 20px);
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;
}

.dashboard_accountProfile__flex {
  display: flex;
  align-items: center;
}

.dashboard_accountProfile__details__name {
  font-family: "Roboto";
  font-weight: 500;
  font-size: clamp(13px, 2.2vw, 16px);
  line-height: 100%;
  letter-spacing: 0;
  color: #404040;
}

.dashboard_accountProfile__details__item:not(:last-child) {
  margin-bottom: 24px;
}

.dashboard_account_personal_profile__author__para {
  font-family: "Roboto";
  font-weight: 500;
  font-size: clamp(15px, 3vw, 20px);
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #0065f1;
}

.welcome-profile {
  display: flex;
  width: 100%;
  height: 238px;
  border-radius: 8px;
  background: url("/assets/frontend/img/new-assets/hero-profile-background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  align-items: flex-end;
  justify-content: space-between;
}

.welcome-profile__left {
  display: flex;
  align-items: center;
  padding-left: 34px;
}

.dashboard_accountProfile__author__profile {
  display: flex;
  align-items: flex-end;
  padding-bottom: 24px;
}

.dashboard_accountProfile__author__profile img {
  border-radius: 50%;
  margin-right: 32px;
  width: 104px;
  height: 104px;
}

.dashboard_account_Profile__author__details {
  display: flex;
  flex-direction: column;
}

.dashboard_account_Profile__author__title {
  margin: 0;
  color: #ffffff;
  font-family: "Roboto";
  font-weight: 500;
  font-size: clamp(15px, 3vw, 20px);
  line-height: 100%;
  letter-spacing: 0;
  padding-bottom: 16px;
}

.dashboard_account_Profile__author__flex {
  display: flex;
}

.dashboard_account_Profile__author__flex p {
  font-family: "Roboto";
  font-weight: 500;
  font-size: clamp(14px, 2.6vw, 18px);
  line-height: 100%;
  letter-spacing: 0;
  padding-right: 54px;
}

.dashboard_accountProfile__author__para {
  margin: 5px 0;
  font-size: clamp(12px, 2vw, 14px);
  color: #ffffff;
}

.welcome-profile__right h4 {
  margin: 0;
  text-align: right;
  color: #ffffff;
  font-family: "Roboto";
  font-weight: 500;
  font-size: 34px;
  line-height: 100%;
  letter-spacing: 0;
}

.welcome-profile__right {
  align-self: flex-start;
  padding-top: 60px;
}

@media (min-width: 1400px) {
  .welcome-profile__right {
    padding-right: 190px;
  }
}

@media (max-width: 781px) {
  .booking-search-control {
    flex-wrap: wrap;
  }
}

/* Onboard CSS */

.dashboard__report {
  height: 476px;
  margin: 18px auto;
  border-radius: 8px;
  background: #f5f5f5;
  border: 1px solid #d9d9d9;
}

/* booking list map */
.view-container {
  transition: opacity 0.3s ease;
}

.view-toggle-btn.active {
  background-color: #0065f1;
  color: white !important;
}

.map-legend {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 5px;
}

.legend-color {
  border-radius: 3px;
}

#bookingMap {
  height: 749px;
  width: 100%;
  border-radius: 8px;
  border: 2px solid #d9d9d9;
}

.mab-settings {
  border: 1px solid #d6d6d6;
  background: #f9f9f9;
}

/* Dashboard Footer */
.dashboard__footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #f5f5f5;
  box-shadow: 0px 4px 8px 0px #0000000d;
  z-index: 9999;
}

.dashboard__body {
  padding-bottom: 92px;
  min-height: calc(100vh - 168.8px);
  margin: 10px;
}

.dashboard__footer__inner__item {
  padding: 16px 40px 30px 40px;
}

.dashboard__footer__inner__item__text {
  font-weight: 500;
  font-size: clamp(13px, 2.2vw, 16px);
  line-height: 100%;
  letter-spacing: 0;
  color: #888888;
}

/* map css */
.section-bg-3 {
  background-color: #f5f5f5;
}

#mapView {
  position: relative;
}

.map-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  text-align: center;
  z-index: 1001;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.2);
  z-index: 1000;
}

.bg-buyer-white {
  background: #f6f8fa;
}

/* Example overrides */
.dt-column-order {
  display: none !important;
}

.dt-search {
  display: none !important;
}

.dt-length {
  display: none !important;
}

/* Seller team_member_tag */
.team_member_tag_group span {
  display: block;
}

.team_member_tag_group .select2-container .select2-search--inline .select2-search__field,
.team_member_tag_group .select2-container--default .select2-selection--single,
.team_member_tag_group .select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 55px;
  line-height: 55px;
}

.team_member_tag_group .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 55px;
  line-height: 55px;
}

/* seller onboard */
.chatbot-container {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.typing-indicator {
  display: inline-flex;
  padding: 5px;
}

.typing-indicator span {
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #6c757d;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.4;
}

.typing-indicator span:nth-child(1) {
  animation: typing 1s infinite;
}

.typing-indicator span:nth-child(2) {
  animation: typing 1s infinite 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation: typing 1s infinite 0.4s;
}

@keyframes typing {
  0% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.4;
  }
}

.status-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.bg-primary-bg {
  background-color: rgba(13, 110, 253, 0.1);
  border: 1px solid rgba(13, 110, 253, 0.3);
}

.bg-success-bg {
  background-color: rgba(25, 135, 84, 0.1);
  border: 1px solid rgba(25, 135, 84, 0.3);
}

.bg-danger-bg {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.status-count {
  font-weight: 600;
  font-size: 0.9rem;
}

.order-status-circle:hover .status-circle {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* #seller-services-table td:first-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 200px;
} */
#calendar {
  max-width: 100%;
  margin: 0 auto;
}

.fc-event {
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(51, 51, 51, 0.15);
}

.fc-event .fc-event-title {
  color: black;
  padding: 2px;
}

/* mobile responsive */
/* Mobile Navigation Styles */
.mobile-nav-header {
  display: none;
  background: #fff;
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 10000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-nav-header .mobile-nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-header .mobile-nav-title {
  font-size: clamp(14px, 2.6vw, 18px);
  font-weight: 600;
  color: #404040;
  margin: 0;
}

.mobile-nav-header .mobile-menu-toggle {
  background: #1486FF;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  color: white;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.mobile-nav-header .mobile-menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(84, 121, 247, 0.3);
}

.mobile-nav-header .mobile-menu-toggle i {
  font-size: clamp(13px, 2.2vw, 16px);
}

/* Mobile Sidebar Overlay */
.mobile-sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-sidebar-overlay.active {
  opacity: 1;
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 10000;
  transition: left 0.3s ease;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.active {
  left: 0;
}

.mobile-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-sidebar-header .mobile-sidebar-title {
  font-size: clamp(14px, 2.6vw, 18px);
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-sidebar-header .mobile-sidebar-close {
  background: none;
  border: none;
  color: #333333;
  font-size: clamp(18px, 3.5vw, 24px);
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.mobile-sidebar-header .mobile-sidebar-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-sidebar-nav {
  padding: 20px 0;
}

.mobile-sidebar-nav .mobile-nav-item {
  display: block;
  padding: 15px 20px;
  color: #404040;
  text-decoration: none;
  font-size: clamp(13px, 2.2vw, 16px);
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-sidebar-nav .mobile-nav-item:hover,
.mobile-sidebar-nav .mobile-nav-item.active {
  background: #1486FF;
  color: white;
}

.mobile-sidebar-nav .mobile-nav-item i {
  font-size: clamp(14px, 2.6vw, 18px);
  width: 20px;
  text-align: center;
}

.mobile-sidebar-nav .mobile-nav-item svg {
  width: 20px;
  height: 20px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .mobile-nav-header {
    display: block;
  }

  .dashboard__icon {
    display: none !important;
  }

  .dashboard__left {
    display: none !important;
  }

  .dashboard__right {
    margin-left: 0 !important;
    padding-top: 0 !important;
  }

  .unset-992 {
    position: unset;
  }
}

@media (min-width: 992px) {

  .mobile-nav-header,
  .mobile-sidebar-overlay,
  .mobile-sidebar {
    display: none !important;
  }
}

/* Mobile-specific styles for buyer profile */
@media (max-width: 767.98px) {

  /* Profile header */
  .welcome-profile {
    height: auto;
    flex-direction: column;
    padding: 20px 15px;
    background-position: center;
  }

  .welcome-profile__left {
    padding-left: 0;
    width: 100%;
    justify-content: center;
  }

  .welcome-profile__right {
    padding-top: 20px;
    align-self: center;
    text-align: center;
  }

  .welcome-profile__right h4 {
    font-size: clamp(18px, 5vw, 24px);
  }

  .dashboard_accountProfile__author__profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 15px;
  }

  .dashboard_accountProfile__author__profile img {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .dashboard_account_Profile__author__flex {
    flex-direction: column;
    gap: 10px;
  }

  .dashboard_account_Profile__author__flex p {
    padding-right: 0;
  }

  /* Profile details */
  .dashboard_accountProfile__flex {
    flex-direction: column;
    gap: 20px;
  }

  .dashboard_accountProfile__btn {
    width: 100%;
  }

  /* Edit modal */
  .modal-body {
    padding: 15px !important;
  }

  .modal-body .row>[class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }

  /* Social links */
  .modal-body .row>.col-6 {
    width: 100% !important;
  }

  /* Form inputs */
  .form--control,
  .form-select {
    font-size: 14px;
  }

  /* Profile image upload */
  .media-upload-btn-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-upload-btn-wrapper .img-wrap {
    margin-bottom: 10px;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
  .date-filters {
    width: 328px;
    /* Fixed width on larger screens */
  }

  .welcome-profile {
    height: auto;
    padding: 30px;
  }

  .dashboard_account_Profile__author__flex {
    flex-wrap: wrap;
    gap: 15px;
  }

  .dashboard_account_Profile__author__flex p {
    padding-right: 20px;
  }

  .modal-body {
    padding: 20px 30px !important;
  }
}

/* Large screens (>1920px) - Maintain sidebar open like at 1920px */
@media (min-width: 1920px) {
  .dashboard__area {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
  }

  .dashboard__left {
    display: flex !important;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 10000;
  }

  .dashboard__right {
    margin-left: 88px;
  }

  /* Adjust right sidebar position for centered layout */
  .right-sidebar-profile-menu {
    left: 88px;
  }

  /* Ensure body allows proper centering */
  body {
    overflow-x: hidden;
  }
}

/* .select2-container--default .select2-selection--single,
.select2.select2-container .select2-selection--multiple {
  height: 50px;
  overflow-y: auto;
} */
.sb-form-group .select2-container--default .select2-selection--single {
  height: 50px !important;
  overflow-y: hidden;
}

.sb-form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 48px !important;
}

.sb-form-group .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 14px !important;
}