@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Gaint Panel Light Mode Tokens */
  --primary-color: #e2fffe;
  --primary-lighter-color: #dafaf9;
  --primary-hover-color: #006c53;
  --primary-font-family: "Hanken Grotesk";
  --form-bg-color: #ffffff;
  --form-border-color: #c0c8c5;

  /* Extended Gaint Panel Tokens */
  --bg-surface: #e2fffe;
  --bg-card: rgba(255, 255, 255, 0.72);
  --bg-sidebar: rgba(255, 255, 255, 0.82);
  --text-primary: #012020;
  --text-secondary: #404846;
  --text-on-button: #ffffff;
  --accent-primary: #006c53;
  --accent-hover: #3c665e;
  --accent-container: #d1fff4;
  --border-default: #c0c8c5;
  --border-subtle: rgba(192, 200, 197, 0.4);
  --error-color: #ba1a1a;
  --sidebar-bg-image: none;
}



body {
  font-family: var(--primary-font-family), sans-serif !important;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  //display: none;
}

.btn-link{
    color: var(--accent-primary) !important;
}


.btn-primary,.btn-primary:hover,.btn-primary:focus, .btn-primary:active, .btn-primary:target  {
    background: var( --primary-hover-color) !important;
    color: var(--text-on-button) !important;
}
body.user {
  font-family: var(--primary-font-family), sans-serif !important;
  background: var(--primary-color)!important;
  color: var(--text-primary);
  display: block;
}

::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--primary-lighter-color);
	border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--primary-color);
}

.hidden {
	display: none!important
}

.page-content {
  flex-grow: 1;
}

.btn-success,
.bg-success {
  background: var(--accent-primary) !important;
  color: var(--text-on-button) !important;
}

.bg-primary {
  background: var(--primary-color) !important;
}

.btn-success:hover,
.btn-success:focus {
  background: var(--accent-hover) !important;
  outline: none !important;
  border: none !important;
}

.btn {
  outline: none !important;
  border: none !important;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  box-shadow: 0px 10px 26px rgba(26, 27, 32, 0.26) !important;
}

.heading {
  position: relative;
}

.heading > div {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: calc(2rem + 80px);
}

.heading .heading-image {
  flex-grow: 1;
  text-align: center;
}

.heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--primary-color);
}

.home .heading::before {
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

body:not(.home) {
  background: var(--primary-color);
}

.heading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-image: url(../../../../../images/world.svg);
  background-position: center bottom;
  background-size: 70%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.05;
}

.register .heading::after {
  background-position: center;
}

.text-muted {
  color: var(--text-secondary) !important;
  opacity: 0.7 !important;
}

.navbar {
  font-size: 1.15rem !important;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--primary-color);
  z-index: 5;
}

.navbar-toggler {
  border: none !important;
  position: relative;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: 0;
}

.navbar-toggler span {
  display: block;
  background-color: #fff;
  height: 3px;
  width: 25px;
  margin-top: 4px;
  margin-bottom: 4px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  position: relative;
  left: 0;
  opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
  -webkit-transition: transform 0.35s ease-in-out;
  -moz-transition: transform 0.35s ease-in-out;
  -o-transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  position: absolute;
  left: 12px;
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  height: 12px;
  visibility: hidden;
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  position: absolute;
  left: 12px;
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  opacity: 0.9;
}

.bg-dark {
  background: var(--primary-lighter-color) !important;
}

.btn-light {
  background: var(--primary-lighter-color) !important;
  color: #ffffff !important;
}

.btn-dark {
  transition: opacity 0.5s;
  margin-top: 2px;
  background: var(--primary-color);
  border: 2px solid var(--primary-color) !important;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle {
  background-color: var(--primary-color);
  opacity: 0.9;
}

.btn-dark:hover {
  border-color: var(--primary-color) !important;
}

.btn-dark-outline {
  margin-top: 2px;
  color: var(--primary-color);
  border: 2px solid var(--primary-color) !important;
}

.btn-dark-outline:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.heading-image img {
  max-height: 520px;
  margin-bottom: -34px;
  max-width: 100%;
}

.img-side {
  max-height: 370px;
  max-width: 100%;
}

.text-light {
  color: var(--text-secondary) !important;
}

b,
strong {
  font-weight: 600;
}

.shadow-0 {
  box-shadow: none !important;
}

.features {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}

.features .feature {
  width: 275px;
  background: #fff;
  box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.2);
  border-radius: 5rem;
  padding: 1rem;
}

.icon-24 {
  font-size: 24px;
  line-height: 24px;
}

.icon-36 {
  font-size: 36px;
  line-height: 36px;
}

.icon-48 {
  font-size: 48px;
  line-height: 48px;
}

.features .feature:nth-child(odd) {
  margin-left: -50px;
}

.features .feature:nth-child(even) {
  background: var(--primary-lighter-color);
  color: #ffffff;
}

.circle-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.secure-payment {
  width: 275px;
  background: #ffffff;
  box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.secure-payment .icon {
  background: var(--primary-color);
  box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(-1rem - 30px);
}

.bg-pattern {
  background-color: var(--primary-lighter-color);
  background-image: url(../../../images/pattern.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.rounded {
  border-radius: 1rem !important;
}

.shadow {
  box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.2) !important;
}

.shadow-sm {
  box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.1) !important;
}

.testimonials .testimonial {
  border-radius: 5rem;
}

.testimonials .testimonial + .testimonial {
  margin-top: 2rem;
}

.testimonials .testimonial:nth-child(even) {
  background-color: var(--primary-lighter-color);
  color: #ffffff;
  margin-left: 50px;
}

.footer {
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
  background: var(--primary-lighter-color);
}

.footer .copyright {
  background: var(--primary-color);
}

.footer > div {
  position: relative;
  z-index: 2;
}

.footer .h4 {
  height: 40px;
}

.input-group.input-style {
  box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.1) !important;
  border-radius: 0.75rem;
  border: 1px solid #f0f0f0;
  background: #ffffff;
}

.input-group.input-style .input-group-text {
  background-color: #ffffff !important;
  border: 0 !important;
  border-radius: 0.75rem;
}

.form-control.input-style {
  border: 0 !important;
  height: 50px;
  background-color: #ffffff;
  box-shadow: none !important;
  border-radius: 0.75rem;
}

.bg-gray {
  background-color: #fafafa !important;
}

.bg-lighter {
  background-color: var(--primary-lighter-color) !important;
}

.modal-content {
  border-radius: 1rem;
}

.modal .btn-success,
.register-form .btn-success {
  height: 50px;
  border-radius: 0.75rem !important;
  padding: 0 !important;
}

.modal .circle-icon {
  width: 60px;
  height: 60px;
  margin-top: calc(-30px - 3rem);
  margin-bottom: 1rem;
}

.modal-content {
  margin-top: 30px;
}

.custom-checkbox .custom-control-label::before {
  border-color: #67e076;
}

.custom-control-input:focus ~ .custom-control-label::before {
  border-color: #67e076 !important;
  box-shadow: none !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: #67e076 !important;
  background-color: #67e076 !important;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #67e076 !important;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  background-color: #d6f5dd !important;
  border-color: #d6f5dd !important;
}

.terms.nav-tabs {
  border: none;
}

.terms.nav-tabs .nav-item + .nav-item {
  margin-left: 1rem;
}

.terms.nav-tabs li a {
  border-radius: 3rem !important;
}

.terms.nav-tabs li a:not(.active) {
  background: var(--primary-color);
  color: #ffffff;
  border: none;
}

.terms.nav-tabs li a.active {
  background: #52bb5e !important;
  color: #ffffff !important;
  border-color: #52bb5e !important;
  border: none;
}

.terms.tab-content p:last-of-type {
  margin-bottom: 0 !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

#g-recaptcha-response {
  display: block !important;
  position: absolute;
  margin: -78px 0 0 0 !important;
  width: 302px !important;
  height: 76px !important;
  z-index: -999999;
  opacity: 0;
}

table.table-style {
  color: var(--text-primary);
  border: 1px solid var(--border-default);
  table-layout: fixed;
}
table.table-style td,
table th {
  border-color: var(--primary-color) !important;
}

.table.table-style th {
  border-bottom: 0 !important;
}

.table.table-style {
  word-break: break-all;
}

.bg-lighter pre {
  color: #ffffff !important;
}

.service-category td {
  text-align: center;
  background-color: var(--primary-color);
  padding: 1rem 0;
  border-radius: 1rem;
}

table.services {
  border-collapse: separate;
  border-spacing: 0 1rem;
  margin-bottom: -1rem;
  margin-top: -2rem;
}

table.services .service td {
  background-color: var(--form-bg-color);
  color: var(--text-primary);
  vertical-align: middle;
}

table.services .service td:first-of-type {
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 5rem;
  padding-left: 1.5rem;
}

table.services .service td:last-of-type {
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
  text-align: center;
}

table.services .service td:nth-of-type(1),
table.services th:nth-of-type(1) {
  width: 40%;
}

table.services th:nth-of-type(5) {
  text-align: center;
}

table.services .service td:nth-of-type(2),
table.services .service td:nth-of-type(3),
table.services .service td:nth-of-type(4),
table.services .service td:nth-of-type(5),
table.services th:nth-of-type(2),
table.services th:nth-of-type(3),
table.services th:nth-of-type(4),
table.services th:nth-of-type(5) {
  width: 15%;
}

.icon-details {
  font-size: 24px;
  color: #67e076;
  cursor: pointer;
}

.btn-white {
  height: 50px;
  color: #000000;
  background-color: #ffffff;
  width: 100%;
}

.filter-items {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
}

.filter-items .dropdown-item {
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-items .dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary-color);
}

.g-recaptcha {
  min-height: 78px;
}

#sidebar-wrapper {
  min-height: 100vh;
  margin-left: -15rem;
  -webkit-transition: margin 0.25s ease-out;
  -moz-transition: margin 0.25s ease-out;
  -o-transition: margin 0.25s ease-out;
  transition: margin 0.25s ease-out;
}

#sidebar-wrapper .sidebar-heading {
  padding: 0.875rem 1.25rem;
  margin-top: calc(65px - 1.25rem);
}

#sidebar-wrapper .list-group {
  width: 15rem;
}

#page-content-wrapper {
  min-width: 100vw;
  padding-top: 70px;
  margin-top: 15px;
}

#page-content-wrapper .navbar {
  height: 70px;
  padding-top: 0;
  padding-bottom: 0;
}

.list-group-item {
  background: var(--bg-card) !important;
  text-decoration: none !important;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border: 0 !important;
  transition: border-color 0.5s, opacity 0.5s;
  color: var(--text-primary);
  opacity: 0.85;
  border-left: 4px solid transparent !important;
}

.list-group-item div {
  display: flex;
  align-items: center;
  border-radius: 0.25rem;
  transition: all 0.5s;
}

.list-group-item.active {
  border-color: var(--accent-primary) !important;
}

.list-group-item.active {
  opacity: 1 !important;
}

.list-group-item i {
  font-size: 1.25rem;
}

.list-group-item:hover {
  border-color: var(--accent-primary) !important;
}
.list-group-item:hover {
  color: var(--accent-primary) !important;
  opacity: 1 !important;
}

.logo-wrapper {
  width: 13.25rem;
  margin-right: 0.875rem;
}

.logo-wrapper img {
  width: auto;
  max-width: 100%;
  max-height: 50px;
}

#menu-toggle {
  font-size: 1.75rem;
  line-height: 1.75rem;
  width: 45px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
}

#navbarContent {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  #sidebar-wrapper {
    margin-left: 0;
  }

  #page-content-wrapper {
    min-width: 0;
    width: 100%;
  }

  #dashboard-wrapper.toggled #sidebar-wrapper {
    margin-left: -10rem;
  }
  #dashboard-wrapper.toggled .list-group-item {
    padding-left: 10rem !important;
    font-size: 1rem !important;
    border: 0 !important;
    position: relative;
  }
  #dashboard-wrapper.toggled .list-group-item.active {
    color: #52bb5e !important;
  }
  #dashboard-wrapper.toggled .list-group-item div {
    width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #dashboard-wrapper.toggled .list-group-item:hover:after {
    content: attr(data-title);
    display: flex;
    align-items: center;
    background: var(--primary-lighter-color);
    padding: 0 1rem;
    position: absolute;
    top: 0;
    left: 15rem;
    width: 150px;
    height: 100%;
  }
  #dashboard-wrapper.toggled .list-group-item span {
    display: none;
  }
}

@media (max-width: 768px) {
  #sidebar-wrapper {
    position: absolute;
  }
  #dashboard-wrapper.toggled #sidebar-wrapper {
    margin-left: 0;
  }
  .g-recaptcha {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
  .secure-payment {
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }

  .secure-payment {
    top: 100%;
  }

  .payment-safe {
    margin-bottom: 4rem;
  }

  .testimonials .testimonial {
    margin-top: 2rem;
    border-radius: 0.75rem;
    margin-left: 0 !important;
  }

  .footer .h4 {
    height: auto;
  }
  .terms.nav-tabs li {
    width: 100%;
    margin: 0 !important;
  }
  .terms.nav-tabs li + li {
    margin-top: 1rem !important;
  }

  table.services .service {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 1rem;
  }
  table.services .service + .service {
    margin-top: 1rem;
  }
  table.services .service td {
    width: 100% !important;
    text-align: left !important;
  }
  table.services thead {
    display: none;
  }
  table.services .service td:first-of-type {
    border: 0;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding-left: 0.75rem !important;
  }
  table.services .service td:last-of-type {
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
  table.services .service td::before {
    content: attr(data-title);
    font-weight: bold;
    display: block;
  }
  table.services {
    margin-top: 0 !important;
  }
}

.app-sidebar {
	width: 280px;
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100vh;
	background: var(--bg-sidebar);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	z-index: 1001;
	-webkit-transition: .2s ease;
	transition: .2s ease;
	border-right: 1px solid var(--border-subtle);
	z-index: 1029;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.app-sidebar .sidebar-header {
	overflow: hidden;
	position: relative;
	padding-top: 30px;
	padding-bottom: 0px;
	text-align: center;
}

.app-sidebar .sidebar-header .logo-lg {
	display: inline-block;
	height: 75px!important;
}

.app-sidebar .sidebar-header .logo-sm {
	display: none;
	height: 45px;
}

.app-sidebar .app-logo {
	width: 100%;
	text-align: center;
	position: relative;
}

.app-sidebar .sidebar-header>* {
	position: relative;
	z-index: 2;
}

.app-sidebar .sidebar-content {
	padding: 0px 0;
	overflow-x: auto;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	/* Track */
	/* Handle */
	/* Handle on hover */
}

.app-sidebar .sidebar-content::-webkit-scrollbar {
	width: 4px;
}

.app-sidebar .sidebar-content::-webkit-scrollbar-track {
	background: transparent;
}

.app-sidebar .sidebar-content::-webkit-scrollbar-thumb {
	background: var(--primary-lighter-color);
	border-radius: 2px;
}

.app-sidebar .sidebar-content::-webkit-scrollbar-thumb:hover {
	background: var(--primary-color);
}

.app-sidebar .sidebar-menu {
	list-style: none;
	padding: 0px 14px 0px 0px;
	margin: 50px 0;
}

.app-sidebar .sidebar-menu li {
	display: block;
	margin-bottom: 10px;
    position: relative;
}

.app-sidebar .sidebar-menu li.active>a.menu-link {
	background: rgba(0, 108, 83, 0.12);
	color: var(--accent-primary);
	border-right: 4px solid var(--accent-primary);
}

.app-sidebar .sidebar-menu li.active>a.menu-link:hover {
	background: rgba(0, 108, 83, 0.16);
	transition: 0.4s all;
}

.app-sidebar .sidebar-menu li a.menu-link {
	padding: 15px 18px;
	border-radius: 0 30px 30px 0;
	display: block;
	font-size: 16px;
	text-decoration: none;
	color: var(--text-secondary);
	line-height: 24px;
	-webkit-transition: .14s ease;
	transition: .14s ease;
}

.app-sidebar .sidebar-menu li a.menu-link:hover {
	background: rgba(0, 108, 83, 0.08);
	transition: 0.4s all;
	color: var(--accent-primary) !important;
}

.app-sidebar .sidebar-menu li:not(.active) a:hover{
    color: var(--accent-primary) !important;
}

.app-sidebar .sidebar-menu li a.menu-link .menu-icon {
	margin-right: 10px;
	height: 24px;
	width: 24px;
	line-height: 24px;
	text-align: center;
	font-size: 20px;
	vertical-align: -4px;
}

.app-header {
	top: 0px;
	left: 280px;
	right: 0px;
	z-index: 1003;
	background: rgba(226, 255, 254, 0.7);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-left: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
	height: 80px;
	position: fixed;
}

.app-header .row-100 {
	height: 80px;
}

.app-header .col-100 {
	max-height: 80px !important;
}

.app-header .header-btn {
	font-size: 18px;
	font-weight: 400;
	color: var(--text-secondary);
	display: inline-block;
	line-height: 24px;
	text-decoration: none;
}

.app-header .header-btn:hover .icon {
	background: var(--accent-primary);
	color: var(--text-on-button);
	opacity: 1;
}

.app-header .header-btn .icon {
	height: 45px;
	display: inline-block;
	width: 45px;
	font-size: 24px;
	line-height: 42px;
	text-align: center;
	vertical-align: -2px;
	border-radius: 9px;
	background: rgba(0, 108, 83, 0.1);
	border: 1px solid var(--border-subtle);
	color: var(--accent-primary);
	margin-right: 8px;
	-webkit-transition: .14s ease;
	transition: .14s ease;
	opacity: .7;
}

.app-header .header-btn .icon.logout {
	background-color: #ec3e7240;
	color: #fb3f77;
	border-color: #fb3f7740
}

.app-header .header-btn .icon.logout:hover {
	background-color: #fb3f77;
	color: #fff;
	border-color: #fb3f77
}

.dash-menu-btn {
	font-size: 24px;
	font-weight: 400;
	color: var(--text-primary);
	display: inline-block;
	line-height: 37px;
	text-decoration: none;
	cursor: pointer
}

.dash-menu-btn .icon {
	height: 45px;
	display: inline-block;
	width: 45px;
	font-size: 24px;
	line-height: 42px;
	text-align: center;
	vertical-align: -2px;
	border-radius: 9px;
	background: var(--primary-color);
	border: 1px solid var(--border-subtle);
	color: var(--text-primary);
	margin-right: 8px;
	-webkit-transition: .14s ease;
	transition: .14s ease;
}

.dash-menu-btn:hover .icon {
	background: var(--primary-lighter-color);
	color: var(--accent-primary);
	opacity: 1;
}


.close-sidebar-btn {
    position: absolute;
    top: 0;
    right: -50px;
    height: 50px;
    width: 50px;
    color: var(--text-primary);
    background: var(--bg-card);
    line-height: 50px;
    text-align: center;
    border-radius: 0 0 25px 0;
    display: none;
    cursor: pointer;
}

.g-card {
	background: var(--bg-card) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--border-subtle);
	border-radius: 15px;
}

.g-card .g-card-body {
    padding: 15px 30px 15px 30px;
}

.g-card-header {
	color: var(--text-primary);
	font-size: 20px;
	font-weight: 500;
	padding: 10px 0;
}

.g-divider {
  width: 100%;
  position: relative;
  height: 2px;
  background: var(--primary-color);
  clear: both;
  margin: 10px 0 0 0
}

.g-divider::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  height: 2px;
  width: 140px;
  background: var(--accent-primary);
}

.g-card p {
	color: var(--text-secondary);
}

.app-content {
	background-color: var(--bg-surface);
	padding-left: 280px;
	padding-top: 100px;
	padding-bottom: 30px;
}

.sc-badge {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 40px;
	border-radius: 25px;
	padding-right: 10px;
}

.sc-badge .sc-icon {
	background: var(--accent-primary);
	color: var(--text-on-button);
	margin: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 30px;
	width: 30px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50%;
}

.sc-badge .sc-icon.green {
	background: #25D366;
}

.sc-badge .sc-text {
	padding: 10px 14px;
	color: #fff;
	font-weight: 400;
	line-height: 20px;
	font-size: 13px;
}

.form-group .form-control {
	outline: none;
	background-color: var(--form-bg-color);
	border: 1px solid var(--form-border-color);
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	min-height: 52px;
	overflow: hidden;
	padding: 10px 18px;
	border-radius: 15px
}

.form-group .form-control {
	outline: none;
	box-shadow: none;
}

.form-group label {
	color: #fff
}

.dropdown-menu {
	width: 100%;
	padding: 0;
	max-height: 43.6vh;
	overflow-y: scroll;
	border: none!important;border-radius: 10px
}

#serviceItem,
#categoryItem {
	white-space: inherit;
	padding: 12px;
	font-weight: 500;
	font-size: 14px;
	background: var(--form-bg-color);
	border-bottom: 1px solid var(--form-border-color);
	color: #fff;
	text-align: left;
	width: 100%;
	border-left: 1px solid var(--form-border-color);
	border-right: 1px solid var(--form-border-color);
}

#serviceItem:hover,
#categoryItem:hover {
	background: var(--primary-lighter-color)
}

#order-category,
#order-services {
	white-space: nowrap;
	text-overflow: ellipsis;
}

#order-category,
#order-services {
	width: 85%;
	overflow-x: hidden;
	position: absolute;
	line-height: 15px;
	height: 24px;
	font-size: 14px;
}

.dropdown button {
	background: #fff;
	border: 1px solid #fff;
	border-top: none!important;
	color: #081521
}

.dropdown button:hover,
.dropdown button:focus {
	outline: none;
	box-shadow: none;
}

.dropdown-menu {
    transform: translate3d(0px, 53px, 0px)!important;
}

.dropdown .fab.fa-instagram {
	background: #f09433;
	background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
	background-clip: text;
	font-size: 14px;
	padding: 2.4px;
	border-radius: 5px;
	color: #FFF;
	font-weight: lighter;
	margin-right: 10px;
}

.dropdown .fab.fa-facebook-square {
	background: #207eff;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 18px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	border-radius: 5px;
	margin-right: 10px;
}

.dropdown .fab.fa-youtube {
	background: #ff0042;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	margin-right: 10px;
}

.dropdown .fab.fa-twitter {
	background: #1da1f2;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	margin-right: 10px;
}

.dropdown .fab.fa-telegram-plane {
	background: #2b9fd2;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	margin-right: 10px;
}

.dropdown .fab.fa-soundcloud {
	background: #ff5836;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	margin-right: 10px;
}

.dropdown .fab.fa-spotify {
	background: #62ffa2;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	margin-right: 10px;
}

.dropdown .fab.fa-twitch {
	background: #e600ff;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	margin-right: 10px;
}

.dropdown .fab.fa-pinterest-p {
	background: #ff5858;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	margin-right: 10px;
}

.dropdown .fa.fa-music {
	background: #f8004d;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	margin-right: 10px;
}

.dropdown .fab.fa-tiktok {
	background: #f8004d;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	margin-right: 10px;
}

.dropdown .fas.fa-globe {
	background: #1a1a1a;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	margin-right: 10px;
}

.dropdown .fas.fa-stream {
	background: #ccc;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	margin-right: 10px;
}

.dropdown .fab.fa-hotjar {
	background: #ff0000;
	background-clip: text;
	-webkit-background-clip: text;
	font-size: 17px;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	margin-right: 10px;
}

.panel-body {
	background: var(--form-bg-color);
	border: 1px solid var(--form-border-color);
	border-radius: 15px;
	padding: 10px;
	color: #fff;
	font-size: 13px
}

.cstm-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: none !important;
  background-color: var(--primary-color);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 15px;
  justify-content: space-between
}

.cstm-nav .nav-item .nav-link {
  background: transparent !important;
  border: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 18px;
  color: #626D77;
  padding: 5px;
  position: relative;
  margin: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cstm-nav .nav-item .nav-link .icon {
  width: 40px;
  height: 40px;
  background: #0F1728;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 15px;
  color: #25365C;
}

.cstm-nav .nav-item .nav-link.active {
  color: #fff;
}

.cstm-nav .nav-item .nav-link.active .icon {
  background-color: var(--primary-hover-color);
  color: #000;
}

.card {
    border: none;
    border-radius: 15px;
    background: var(--primary-color);
	border-left: 2px solid var(--primary-hover-color)
}

.card.card-2 {
  margin-bottom: 24px;
}

.card.card-2 .card-header {
  margin: 15px 13px 0 23px;
  padding: 0px 0 5px 0;
  border-bottom: 1px solid var(--primary-lighter-color);
}

.card.card-2 .card-header small {
  color: #ccc
}

.card.card-2 .card-body {
  padding: 10px 23px 23px 23px;
}

.card.card-2 .card-body small {
	color: #ccc
}

.card.card-2 .c2-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: rgba(81, 89, 119, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
}

.card.card-2 .c2-title {
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-hover-color);
  margin-bottom: 0!important;
}

.card.card-2 .c2-title-1 {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0!important;
}

.card.card-2 .c2-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #fff
}

.update-action {
    padding: 3px 10px;
    color: #fff;
    background: #f93e66;
    border-radius: 15px;
    width: 100%;
    min-width: 150px;
    text-align: center;
}

.update-action.p-down {
	background: #3ad89e
}

.update-action.p-add {
    background: #10a76f;
}

.update-action.p-up {
	background: #ff7543
}

.update-action.p-delete {
	background: #f93e66
}

.update-action.p-min {
    background: #4a5cf6
}

.update-action.p-min-y {
    background: #8390ff
}

.update-action.p-max {
    background: #ce7bf5
}

.update-action.p-max-y {
    background: #b933f7
}

.head-box span {
	color: var(--primary-hover-color)
}

.head-box i {
	 color: yellow; 
	 font-size:18px;
	 vertical-align:1px	
}

.ulevel-c {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: transparent;
}
.ulevel-c:before {
  content: "";
  position: absolute;
  top: 7.5px;
  left: 7.5px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--primary-lighter-color);
}
.ulevel-c:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: transparent;
}

.ulevel-text {
  position: absolute;
  top: 50%;
  width: 100%;
  line-height: 1;
  margin-top: -15px;
  text-align: center;
  font-size: 32px;
  color: rgb(255, 255, 255, 0.7);
}

.ulevel-bar.bar-0:after {
  width: 0%;
}

.ulevel-c.bar-0:after {
  background-image: linear-gradient(90deg, #ddd 50%, transparent 50%, transparent), linear-gradient(90deg, #67e076 50%, #ddd 50%, #ddd);
}

.ulevel-bar.bar-25:after {
  width: 25%;
}

.ulevel-c.bar-25:after {
  background-image: linear-gradient(90deg, #ddd 50%, transparent 50%, transparent), linear-gradient(180deg, #67e076 50%, #ddd 50%, #ddd);
}

.ulevel-bar.bar-50:after {
  width: 50%;
}

.ulevel-c.bar-50:after {
  background-image: linear-gradient(-90deg, #67e076 50%, transparent 50%, transparent), linear-gradient(270deg, #67e076 50%, #ddd 50%, #ddd);
}

.ulevel-bar.bar-75:after {
  width: 75%;
}

.ulevel-c.bar-75:after {
  background-image: linear-gradient(0deg, #67e076 50%, transparent 50%, transparent), linear-gradient(270deg, #67e076 50%, #ddd 50%, #ddd);
}

.ulevel-bar.bar-100:after {
  width: 100%;
}

.ulevel-c.bar-100:after {
  background-image: linear-gradient(90deg, #67e076 50%, transparent 50%, transparent), linear-gradient(270deg, #67e076 50%, #ddd 50%, #ddd);
}

.ulevel-t-1 {
    font-weight: 400;
    font-size: 18px;
    color: #ccc;
}

.ulevel-t-2 {
    font-weight: 600;
    font-size: 24px;
    color: #fff;
}

.ulevel-t-3 {
    font-weight: 500;
    font-size: 18px;
    color: #fff;
	text-align: right
}

.app-navbar {
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	z-index: 99999;
	display: none
}

.app-navbar-link {
	-webkit-box-shadow: 0 0 80px rgb(0 34 94 / 50%);
	box-shadow: 0 0 80px rgb(0 34 94 / 50%);
	position: relative;
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 2000
}

.app-navbar-link li.active {
	background: var(--primary-hover-color);
	transform: scale(1);
	border-radius: 0;
	position: relative;
	top: 0
}

.app-navbar-link li.active a,
.app-navbar-link li.active a i {
	color: #fff
}

.app-navbar-link li {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 5px;
	-webkit-transition: all .3s;
	transition: all .3s;
	-webkit-box-shadow: inset 0 3px transparent;
	box-shadow: inset 0 3px transparent;
	border-right: 1px solid var(--primary-lighter-color)
}

.app-navbar-link li:last-child {
	border-right: none
}

.app-navbar-link li a {
	text-decoration: none!important;
	outline: 0!important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 13px;
	color: #fff;
	font-weight: 500
}

.app-navbar-link li a i {
	color: #fff;
	font-size: 20px;
	margin-bottom: 10px
}

.app-navbar-link li span.balance {
	font-size: 16px;
	margin-bottom: 14px;
	font-weight: 600;
	color: var(--primary-hover-color)
}

.u-stats {
	position: relative;
	margin: 40px 0;
}

.u-stats>.row {
	margin-left: -8px;
	margin-right: -8px;
}

.u-stats>.row>div {
	padding-left: 8px;
	padding-right: 8px;
}

.u-stats .us-item {
	border-radius: 18px;
	color: #fff;
	padding: 25px 40px 25px 30px;
	position: relative;
}

.u-stats .us-item::before {
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	background-image: url(../../../images/main-dot.png);
	background-size: auto 100%;
	background-position: right center;
	background-repeat: no-repeat;
	opacity: .3;
}

.u-stats .us-item.us-item-a {
	border-bottom: 3px solid #71B945
}

.u-stats .us-item.us-item-b {
	border-bottom: 3px solid #544DFC
}

.u-stats .us-item.us-item-c {
	border-bottom: 3px solid #FF8A4D
}

.u-stats .us-item.us-item-d {
	border-bottom: 3px solid #EE3E52
}

.u-stats .us-item:hover .us-item--icon {
	-webkit-transform: rotate(10deg);
	transform: rotate(10deg);
}

.u-stats .us-item .us-item--icon {
	height: 80px;
	width: 80px;
	line-height: 77px;
	text-align: center;
	border: 3px solid #fff;
	border-radius: 50%;
	display: block;
	-webkit-transition: .15s ease;
	transition: .15s ease;
}

.u-stats .us-item .us-item--icon .us-item--icon-img {
	width: auto;
	height: 60%;
}

.u-stats .us-item .ui-title {
	color: #fff;
	font-size: 15px;
	font-weight: 300;
}

.u-stats .us-item .ui-text {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
}

.tablepen {
	margin: 0 0 10px;
	width: 100%;
	display: table;
	border: none;
	border-radius: 0 0 3px 3px;
	border-top: none
}

@media screen and (max-width:991.98px) {
	.tablepen {
		display: block
	}
}

@media screen and (max-width:400px) {
.header-btn{
    
    margin-top:-15px;   
}

}
.tablepen .sira {
	display: table-row;
	background: var(--form-bg-color);
    color: #fff;
}

.tablepen .sira:nth-of-type(odd) {
	background: var(--primary-lighter-color);
	color: #fff
}

.tablepen .sira.headers {
	font-weight: 600;
	color: #000;
	background: var(--primary-hover-color)
}

.tablepen .sira.green {
	background: #27ae60
}

.tablepen .sira.blue {
	background: #2980b9
}

.table-m-header {
	display: none
}

@media screen and (max-width:991.98px) {
	.table-m-header {
		display: block;
		text-align: center;
		padding-top: 7px
	}
	.tablepen .sira {
		padding: 0 0 5px;
		display: block
	}
	.tablepen .sira.headers {
		height: 35px
	}
	.tablepen .sira.headers .hucre {
		display: none
	}
	.tablepen .sira .hucre {
		margin-bottom: 10px;
		border-bottom: 0px;
		border-left: 0px;
		border-right: 0px;
	}
	.tablepen .sira .hucre:before {
		margin-bottom: 3px;
		content: attr(data-title);
		min-width: 98px;
		font-size: 10px;
		line-height: 10px;
		font-weight: 700;
		text-transform: uppercase;
		color: #969696;
		display: block;
		margin-top: 15px
	}
}

.tablepen .hucre {
	padding: 6px 12px;
	display: table-cell;
	border-top: 1px solid var(--form-border-color);
	font-size: 12px;

}

.hucre:nth-child(1) {
	border-left: none !important;
}

.border-text,
.repw {
	display: block
}

.orderNav li a {
	background-color: var(--primary-lighter-color);
	color: #fff;
	padding: 12px 15px;
	font-size: 11px;
	border: none;
	outline: none;
	border-radius: 16px;
	cursor: pointer;
	-webkit-transition: .15s ease;
	transition: .15s ease;
	min-height: 40px;
	display: inline-block;
	margin-bottom: 4px;
	width: 100%;
	text-decoration: none
}

.orderNav li a.active,
.orderNav li a:hover {
	background: var(--primary-hover-color);
	color: #000
}

.orderNav li:last-child {
	margin-left: auto;
}

.dfb-search {
	background-color: var(--primary-lighter-color);
	color: #fff;
	font-size: 11px;
	border: none;
	outline: none;
	border-radius: 16px;
	cursor: pointer;
	-webkit-transition: .15s ease;
	transition: .15s ease;
	min-height: 40px;
	position: relative;
	overflow: hidden;
}

.dfb-search .dfb-input {
	width: calc(100% - 40px);
	background: transparent;
	border: none;
	outline: none;
	height: 40px;
	color: #202020;
	padding: 0 14px;
	min-width: 250px
}

.dfb-search i {
	color: #000
}

.dfb-search .dfb-submit {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border: none;
	background: var(--primary-hover-color);
	color: #000;
}

.card .card-header span, .card .card-header a {
    font-size: 13px;
}

.card .card-header span {
    color: #fff
}

.card .card-header a {
	color: var(--primary-hover-color)
}

.card.mb-3 {
	border-top: 1px solid var(--form-border-color);
	border-bottom: 1px solid var(--form-border-color);
	border-right: 1px solid var(--form-border-color);
}

.btn-xs {
	color: #fff!important;
	font-size: 11px;
	padding: 5px
}


@media screen and (max-width:991.98px) {
	.tablepen .hucre {
		padding: 2px 16px;
		display: block
	}
}

@media (max-width: 767.98px) {
	.app-sidebar {
		left: -100px;
	}
	.app-sidebar.sidebar-inact {
		width: 280px;
		left: 0px;
	}
	.app-sidebar.sidebar-inact .close-sidebar-btn {
		display: block;
	}
	.app-sidebar.sidebar-inact .sidebar-header .logo-lg {
		display: inline-block;
	}
	.app-sidebar.sidebar-inact .sidebar-header .logo-sm {
		display: none;
	}
	.app-sidebar.sidebar-inact .sidebar-menu li a.menu-link {
		padding: 13px 18px;
		text-align: left;
	}
	.app-sidebar.sidebar-inact .sidebar-menu li a.menu-link .menu-icon {
		width: 24px;
		height: 24px;
	}
	.app-sidebar.sidebar-inact .sidebar-menu li a.menu-link .menu-text {
		display: inline-block;
	}
	.app-sidebar .sidebar-header .logo-lg {
		display: none;
	}
	.app-sidebar .sidebar-header .logo-sm {
		display: inline-block;
	}
	.app-sidebar .sidebar-menu li a.menu-link {
		padding: 10px 0px;
		text-align: center;
	}
	

	.app-sidebar .sidebar-menu li a.menu-link .menu-icon {
		width: 100%;
	}
	.app-sidebar .sidebar-menu li a.menu-link .menu-text {
		display: none;
	}
	.app-content {
		padding-left: 0px !important;
	}
	.app-header {
		left: 0px !important;
	}
	.orderNav {
		padding: 15px
	}
	.orderNav li {
		width: 49%;
		margin: 0 1%;
		margin-right: auto!important
	}
}

@media (max-width: 1199.98px) {
	.app-sidebar {
		width: 80px;
	}
	.app-sidebar.sidebar-inact {
		width: 280px;
	}
	.app-sidebar.sidebar-inact .close-sidebar-btn {
		display: block;
	}
	.app-sidebar.sidebar-inact .sidebar-header .logo-lg {
		display: inline-block;
	}
	.app-sidebar.sidebar-inact .sidebar-header .logo-sm {
		display: none;
	}
	.app-sidebar.sidebar-inact .sidebar-menu li a.menu-link {
		padding: 13px 18px;
		text-align: left;
	}
	.app-sidebar.sidebar-inact .sidebar-menu li a.menu-link .menu-icon {
		width: 24px;
		height: 24px;
	}
	.app-sidebar.sidebar-inact .sidebar-menu li a.menu-link .menu-text {
		display: inline-block;
	}
	.app-sidebar .sidebar-header .logo-lg {
		display: none;
	}
	.app-sidebar .sidebar-header .logo-sm {
		display: inline-block;
	}
	.app-sidebar .sidebar-menu li a.menu-link {
		padding: 10px 0px;
		text-align: center;
	}
	.app-sidebar .sidebar-menu li a.menu-link .menu-icon {
		width: 100%;
	}
	.app-sidebar .sidebar-menu li a.menu-link .menu-text {
		display: none;
	}
	.app-content {
		padding-left: 80px;
	}
	.app-header {
		left: 80px;
	}
	.g-card .g-card-body {
		padding: 15px
	}
	.app-navbar {
		display: block
	}
}

@media (min-width: 1199.98px) {
	.app-sidebar.sidebar-inact {
		width: 80px;
	}
	.app-sidebar.sidebar-inact .sidebar-header .logo-lg {
		display: none;
	}
	.app-sidebar.sidebar-inact .sidebar-header .logo-sm {
		display: inline-block;
	}
	.app-sidebar.sidebar-inact .sidebar-menu li a.menu-link {
		padding: 13px 0px;
		text-align: center;
	}
	.app-sidebar.sidebar-inact .sidebar-menu li a.menu-link .menu-icon {
		width: 100%;
	}
	.app-sidebar.sidebar-inact .sidebar-menu li a.menu-link .menu-text {
		display: none
	}
	.app-content.sidebar-inact {
		padding-left: 80px;
	}
	.app-header.sidebar-inact {
		left: 80px;
	}
}

small.help-block.min-max {
    color: yellow;
    padding: 10px 5px;
    border: 1px dashed yellow;
    margin-bottom: 15px;
    border-radius: 5px;
}
.help-block {
    display: inline-block;
    text-align: center;
    margin-bottom: 10px!important;
}
.ticket-title {
    color: #007bff;
    padding: 10px;
    border: 1px dashed #007bff;
    display: inline-block;
    border-radius: 5px;
}


.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 165px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    color: #fff;
    background-color: #2f353a!important;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════ */
/* GIANTPANEL DARK MODE OVERRIDES                                 */
/* Activated when body has class 'dark-mode'                      */
/* ═══════════════════════════════════════════════════════════════ */

body.dark-mode,
body.dark-mode.user {
  --primary-color: #0c1511;
  --primary-lighter-color: rgba(10, 25, 20, 0.6);
  --primary-hover-color: #00ffc2;
  --form-bg-color: rgba(12, 21, 17, 0.9);
  --form-border-color: rgba(255, 255, 255, 0.1);
  --bg-surface: #0c1511;
  --bg-card: rgba(10, 25, 20, 0.6);
  --bg-sidebar: rgba(10, 25, 20, 0.75);
  --text-primary: #dbe5de;
  --text-secondary: rgba(219, 229, 222, 0.6);
  --text-on-button: #002116;
  --accent-primary: #00ffc2;
  --accent-hover: #66ffd9;
  --accent-container: rgba(0, 255, 194, 0.1);
  --border-default: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --sidebar-bg-image: none;
}

body.dark-mode .app-sidebar {
  background: var(--bg-sidebar) !important;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-right-color: var(--border-subtle) !important;
}

body.dark-mode .app-header {
  background: rgba(12, 21, 17, 0.8) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border-subtle) !important;
}

body.dark-mode .app-header .header-btn {
  color: var(--text-secondary) !important;
}

body.dark-mode .app-header .header-btn .icon {
  background: rgba(0, 255, 194, 0.1) !important;
  border-color: rgba(0, 255, 194, 0.15) !important;
  color: var(--accent-primary) !important;
}

body.dark-mode .app-header .header-btn:hover .icon {
  background: var(--accent-primary) !important;
  color: var(--text-on-button) !important;
}

body.dark-mode .g-card {
  background: var(--bg-card) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border-subtle) !important;
}

body.dark-mode .g-card-header,
body.dark-mode .g-card p,
body.dark-mode .g-card label {
  color: var(--text-primary) !important;
}

body.dark-mode .app-sidebar .sidebar-menu li a.menu-link {
  color: rgba(219, 229, 222, 0.7) !important;
}

body.dark-mode .app-sidebar .sidebar-menu li.active > a.menu-link {
  background: rgba(0, 255, 194, 0.12) !important;
  color: var(--accent-primary) !important;
  border-right-color: var(--accent-primary) !important;
}

body.dark-mode .app-sidebar .sidebar-menu li a.menu-link:hover {
  background: rgba(0, 255, 194, 0.08) !important;
  color: var(--accent-primary) !important;
}

body.dark-mode .app-content {
  background-color: var(--bg-surface) !important;
}

body.dark-mode .btn-success,
body.dark-mode .bg-success {
  background: var(--accent-primary) !important;
  color: var(--text-on-button) !important;
}

body.dark-mode .btn-primary,
body.dark-mode .btn-primary:hover,
body.dark-mode .btn-primary:focus {
  background: var(--accent-primary) !important;
  color: var(--text-on-button) !important;
}

body.dark-mode .list-group-item {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
}

body.dark-mode .text-muted {
  color: var(--text-secondary) !important;
}

body.dark-mode .sc-badge {
  background: var(--bg-card) !important;
  border-color: var(--border-subtle) !important;
}

body.dark-mode .sc-badge .sc-text,
body.dark-mode .sc-badge .sc-text strong {
  color: var(--text-primary) !important;
}

body.dark-mode .dash-menu-btn,
body.dark-mode .dash-menu-btn .icon {
  color: var(--text-primary) !important;
}

body.dark-mode .close-sidebar-btn {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
}

body.dark-mode table.table-style {
  color: var(--text-primary) !important;
  border-color: var(--border-subtle) !important;
}

body.dark-mode table.table-style td,
body.dark-mode table.table-style th {
  border-color: var(--border-subtle) !important;
}

body.dark-mode table.services .service td {
  background-color: var(--bg-card) !important;
  color: var(--text-primary) !important;
}

body.dark-mode .service-category td {
  background-color: rgba(0, 255, 194, 0.08) !important;
  color: var(--text-primary) !important;
}

body.dark-mode .heading::before {
  background: var(--bg-surface) !important;
}

body.dark-mode .footer::before {
  background: var(--bg-card) !important;
}

body.dark-mode .footer .copyright {
  background: var(--bg-surface) !important;
}

body.dark-mode .btn-link {
  color: var(--accent-primary) !important;
}

body.dark-mode .bg-pattern {
  background-color: var(--bg-card) !important;
}

body.dark-mode .navbar {
  background: var(--bg-surface) !important;
}

body.dark-mode .modal-content {
  background: #0f1e18 !important;
  border-color: var(--border-subtle) !important;
  color: var(--text-primary) !important;
}

/* ─── FORM INPUT SAFETY: Prevents white-on-white in BOTH modes ─── */

input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  background-color: var(--form-bg-color) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--form-border-color) !important;
  border-radius: 0.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:not([type="checkbox"]):not([type="radio"]):focus,
select:focus,
textarea:focus {
  border-color: var(--accent-primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 108, 83, 0.15) !important;
  outline: none !important;
}

body.dark-mode input:not([type="checkbox"]):not([type="radio"]):focus,
body.dark-mode select:focus,
body.dark-mode textarea:focus {
  border-color: var(--accent-primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 255, 194, 0.1) !important;
}

input::placeholder,
textarea::placeholder {
  color: #717976 !important;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
  color: rgba(219, 229, 222, 0.4) !important;
}

/* ─── SCROLLBAR: Theme-aware ─── */
body.dark-mode ::-webkit-scrollbar-track {
  background: var(--bg-surface);
}

body.dark-mode ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
}

/* ─── GSAP Animation Target ─── */
.anim-card {
  will-change: transform, opacity;
}

/* ─── WebGL Canvas ─── */
#webgl-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ─── Theme Toggle Button ─── */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: rgba(0, 108, 83, 0.08);
  color: var(--accent-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  line-height: 1;
}

.theme-toggle-btn:hover {
  background: var(--accent-primary);
  color: var(--text-on-button);
}

body.dark-mode .theme-toggle-btn {
  background: rgba(0, 255, 194, 0.1);
  border-color: rgba(0, 255, 194, 0.15);
  color: var(--accent-primary);
}

body.dark-mode .theme-toggle-btn:hover {
  background: var(--accent-primary);
  color: var(--text-on-button);
}

/* ═══════════════════════════════════════════════════════════════ */
/* LAYOUT ALIGNMENT & STRUCTURAL BUG FIXES                       */
/* ═══════════════════════════════════════════════════════════════ */

/* Global box-sizing enforcement */
html {
  box-sizing: border-box !important;
}
*, *::before, *::after {
  box-sizing: inherit !important;
}

/* Sidebar & Content alignment for Desktop (min-width: 1200px) */
@media (min-width: 1200px) {
  .app-sidebar {
    width: 280px !important;
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    height: 100vh !important;
    z-index: 1040 !important;
    display: flex !important;
  }
  .app-header {
    left: 280px !important;
    width: calc(100% - 280px) !important;
    position: fixed !important;
    z-index: 1030 !important;
  }
  .app-content {
    padding-left: 280px !important;
    padding-top: 100px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Collapsed sidebar (desktop toggled) */
  .app-sidebar.sidebar-inact {
    width: 80px !important;
  }
  .app-header.sidebar-inact {
    left: 80px !important;
    width: calc(100% - 80px) !important;
  }
  .app-content.sidebar-inact {
    padding-left: 80px !important;
  }
}

/* Sidebar & Content alignment for Medium Screens (768px to 1199.98px) */
@media (max-width: 1199.98px) and (min-width: 768px) {
  .app-sidebar {
    width: 80px !important;
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    height: 100vh !important;
    z-index: 1040 !important;
    display: flex !important;
  }
  .app-header {
    left: 80px !important;
    width: calc(100% - 80px) !important;
    position: fixed !important;
    z-index: 1030 !important;
  }
  .app-content {
    padding-left: 80px !important;
    padding-top: 100px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Extended sidebar (medium toggled) */
  .app-sidebar.sidebar-inact {
    width: 280px !important;
  }
  .app-header.sidebar-inact {
    left: 280px !important;
    width: calc(100% - 280px) !important;
  }
  .app-content.sidebar-inact {
    padding-left: 280px !important;
  }
}

/* Sidebar & Content alignment for Mobile (max-width: 767.98px) */
@media (max-width: 767.98px) {
  .app-sidebar {
    position: fixed !important;
    left: -280px !important;
    width: 280px !important;
    top: 0 !important;
    height: 100vh !important;
    z-index: 1050 !important;
    transition: left 0.25s ease-out !important;
    display: flex !important;
  }
  .app-sidebar.sidebar-inact {
    left: 0 !important;
  }
  .app-header {
    left: 0 !important;
    width: 100% !important;
    position: fixed !important;
    z-index: 1030 !important;
  }
  .app-content {
    padding-left: 0 !important;
    padding-top: 95px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Z-Index Stacking Context Corrections */
#webgl-bg {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: -1 !important;
  pointer-events: none !important;
}

body.user {
  position: relative !important;
  z-index: 1 !important;
}

.g-card {
  overflow: hidden !important; /* Contain blur bleed */
  z-index: 2 !important;
}

/* Form Input & Table Alignment */
.form-group input,
.form-group select,
.form-group textarea,
.input-group input,
.input-group select,
.input-group textarea,
.form-control {
  width: 100% !important;
  max-width: 100% !important;
}

.table-responsive,
table.table-style,
table.services {
  width: 100% !important;
  max-width: 100% !important;
}

/* =========================================================
   PREMIUM MICRO-INTERACTIONS (SAFE HOVER EFFECTS)
   ========================================================= */

/* 1. Base Transition Engine (Buttery Smooth) */
.glass-card, .card, .panel, .well, .g-card, aside nav a, .app-sidebar .sidebar-menu li a.menu-link {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease,
                background-color 0.4s ease !important;
    will-change: transform, box-shadow, border-color;
}

/* 2. The "Lift & Glow" Effect for Stats and Form Cards */
.glass-card:hover, .card:hover, .panel:hover, .well:hover, .g-card:hover {
    /* Lifts the box up by 4 pixels */
    transform: translateY(-4px) !important;
    
    /* Applies the active brand color to the border */
    border-color: var(--primary-hover-color) !important; 
    
    /* Adds a soft glowing shadow matching the brand color */
    box-shadow: 0 12px 24px -8px rgba(0, 255, 194, 0.25), 
                0 4px 8px -4px rgba(0, 255, 194, 0.1) !important;
}

/* 3. Sidebar Menu "Slide & Highlight" Effect */
aside nav a:hover, .app-sidebar .sidebar-menu li a.menu-link:hover {
    /* Slides the menu text slightly to the right */
    transform: translateX(6px) !important;
    
    /* Very subtle background highlight */
    background-color: rgba(0, 255, 194, 0.05) !important;
    
    /* Lights up the left border indicator */
    border-left-color: var(--primary-hover-color) !important;
}

/* Ensure the Submit Button keeps its magnetic feel but adds glow */
button[type="submit"]:hover, .btn-primary:hover {
    box-shadow: 0 0 20px rgba(0, 255, 194, 0.4) !important;
}

/* =========================================================
   ULTIMATE 3D LEVITATE & NEON PULSE FX (FOR STAT CARDS)
   ========================================================= */

/* 1. Base State: Smooth Spring Physics */
.main-content .card, 
.row > div > .card, 
.info-box, 
.stat-box,
.welcome-card,
.g-card {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease, 
                border-color 0.3s ease,
                border-bottom-width 0.3s ease !important;
    will-change: transform, box-shadow;
    position: relative;
    z-index: 1;
}

/* 2. Hover State: 3D Pop-Out & Neon Glow */
.main-content .card:hover, 
.row > div > .card:hover, 
.info-box:hover, 
.stat-box:hover,
.welcome-card:hover,
.g-card:hover {
    /* Pops the card out towards the user and scales it up slightly */
    transform: translateY(-8px) scale(1.03) !important;
    
    /* Double Glow: Outer Drop Shadow + Inner Edge Glow */
    box-shadow: 0 25px 50px -12px rgba(0, 255, 194, 0.35), 
                0 0 20px rgba(0, 255, 194, 0.15) inset !important;
    
    /* Forces the bottom border to light up neon mint */
    border-bottom: 3px solid var(--accent-primary) !important;
    
    /* Ensures the hovered card stays on top of others */
    z-index: 10 !important;
}

/* 3. Make Icons Inside the Card React */
.main-content .card:hover .material-symbols-outlined, 
.row > div > .card:hover .material-symbols-outlined,
.g-card:hover i {
    transform: scale(1.2) rotate(5deg) !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    color: var(--accent-primary) !important;
    text-shadow: 0 0 10px rgba(0, 255, 194, 0.6) !important;
}

/* =========================================================
   HIGH-CONTRAST COLOR GRADING & TYPOGRAPHY FOR SERVICES
   ========================================================= */

/* ─── Light Mode Overrides ─── */
body:not(.dark-mode) table.services th {
    color: #404846 !important; /* on-surface-variant */
    font-weight: 700 !important;
    font-family: "Hanken Grotesk", sans-serif !important;
    text-shadow: none !important;
}

body:not(.dark-mode) .service-category td {
    background-color: #d1fff4 !important; /* primary-container */
    color: #012020 !important; /* on-surface */
    font-weight: 800 !important;
    font-family: "Hanken Grotesk", sans-serif !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid #c0c8c5 !important;
    letter-spacing: 0.05em !important;
}

body:not(.dark-mode) table.services .service td {
    background-color: #ffffff !important;
}

body:not(.dark-mode) table.services .service td.pm-ikon {
    color: #012020 !important; /* on-surface */
    font-weight: 600 !important;
}

body:not(.dark-mode) table.services .service td:not(.pm-ikon) {
    color: #404846 !important; /* on-surface-variant */
    font-weight: 500 !important;
}

/* ─── Dark Mode Overrides (for consistency) ─── */
body.dark-mode table.services th {
    color: rgba(219, 229, 222, 0.7) !important;
    font-weight: 700 !important;
    font-family: "Hanken Grotesk", sans-serif !important;
}

body.dark-mode .service-category td {
    background-color: rgba(0, 255, 194, 0.12) !important; /* accent-container dark */
    color: #00ffc2 !important; /* accent-primary */
    font-weight: 800 !important;
    font-family: "Hanken Grotesk", sans-serif !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    letter-spacing: 0.05em !important;
}

body.dark-mode table.services .service td {
    background-color: var(--bg-card) !important;
}

body.dark-mode table.services .service td.pm-ikon {
    color: #dbe5de !important; /* text-primary dark */
    font-weight: 600 !important;
}

body.dark-mode table.services .service td:not(.pm-ikon) {
    color: rgba(219, 229, 222, 0.7) !important; /* text-secondary dark */
    font-weight: 500 !important;
}

/* =========================================================
   GLOBAL LIGHT MODE VISIBILITY & TYPOGRAPHY OVERRIDES
   ========================================================= */

/* 1. Global Base Text (Dark Slate Teal for maximum readability) */
body:not(.dark-mode),
body:not(.dark-mode) .main-content,
body:not(.dark-mode) .app-content,
body:not(.dark-mode) .container-fluid,
[data-theme='light'] body,
[data-theme='light'] .main-content,
[data-theme='light'] .app-content,
[data-theme='light'] .container-fluid {
    color: #012020 !important;
}

/* 2. Primary Headings & Big Stat Numbers (Bold & Dark) */
body:not(.dark-mode) h1, body:not(.dark-mode) h2, 
body:not(.dark-mode) h3, body:not(.dark-mode) h4, 
body:not(.dark-mode) h5, body:not(.dark-mode) h6,
body:not(.dark-mode) .stat-box h3, 
body:not(.dark-mode) .info-box h3,
body:not(.dark-mode) .card-title, 
body:not(.dark-mode) .welcome-card h2,
body:not(.dark-mode) .display-4,
[data-theme='light'] h1, [data-theme='light'] h2, 
[data-theme='light'] h3, [data-theme='light'] h4, 
[data-theme='light'] h5, [data-theme='light'] h6,
[data-theme='light'] .stat-box h3, 
[data-theme='light'] .info-box h3,
[data-theme='light'] .card-title, 
[data-theme='light'] .welcome-card h2,
[data-theme='light'] .display-4 {
    color: #012020 !important;
    font-weight: 700 !important;
}

/* 3. Form Labels, Descriptions, Spans & Table Cells (Medium Slate) */
body:not(.dark-mode) p, 
body:not(.dark-mode) span, 
body:not(.dark-mode) label, 
body:not(.dark-mode) .control-label,
body:not(.dark-mode) .help-block,
body:not(.dark-mode) td, 
body:not(.dark-mode) th,
body:not(.dark-mode) div:not(.sc-icon):not(.sc-text):not(.dropdown-menu):not(.dropdown-item):not(.btn):not(.badge):not(.alert),
[data-theme='light'] p, 
[data-theme='light'] span, 
[data-theme='light'] label, 
[data-theme='light'] .control-label,
[data-theme='light'] .help-block,
[data-theme='light'] td, 
[data-theme='light'] th,
[data-theme='light'] div {
    color: #404846 !important;
}

/* 4. Form Inputs & Select Dropdowns (Crisp White bg, Dark Text) */
body:not(.dark-mode) input, 
body:not(.dark-mode) select, 
body:not(.dark-mode) textarea, 
body:not(.dark-mode) .form-control,
[data-theme='light'] input, 
[data-theme='light'] select, 
[data-theme='light'] textarea, 
[data-theme='light'] .form-control {
    background-color: #ffffff !important;
    color: #012020 !important;
    border: 1px solid #c0c8c5 !important;
}

/* 5. Placeholder Text Visibility */
body:not(.dark-mode) input::placeholder, 
body:not(.dark-mode) textarea::placeholder,
[data-theme='light'] input::placeholder, 
[data-theme='light'] textarea::placeholder {
    color: #717976 !important;
    opacity: 1 !important;
}

/* 6. Exception for Buttons & Badges (Keep their inner text visible) */
body:not(.dark-mode) .btn-primary, 
body:not(.dark-mode) button[type="submit"],
body:not(.dark-mode) .badge,
body:not(.dark-mode) .label,
body:not(.dark-mode) .btn-success,
body:not(.dark-mode) .btn-link,
[data-theme='light'] .btn-primary, 
[data-theme='light'] button[type="submit"],
[data-theme='light'] .badge,
[data-theme='light'] .label {
    color: #ffffff !important;
}

/* =========================================================
   NEW ORDER FORM: VISUAL DEPTH & INPUT CONTRAST (LIGHT MODE)
   ========================================================= */

/* 1. Main Card Background (Ensure it stays pure white for contrast) */
body:not(.dark-mode) .main-content .card,
body:not(.dark-mode) .new-order-card,
body:not(.dark-mode) .g-card,
[data-theme='light'] .main-content .card,
[data-theme='light'] .new-order-card,
[data-theme='light'] .g-card {
    background-color: #ffffff !important;
    border: 1px solid #c0c8c5 !important;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.05) !important;
}

/* 2. Input Fields: Soft Pale Mint Background */
/* Giving inputs a subtle distinct bg color separates them from the white card */
body:not(.dark-mode) input.form-control,
body:not(.dark-mode) select.form-control,
body:not(.dark-mode) textarea.form-control,
body:not(.dark-mode) .form-group input,
body:not(.dark-mode) .form-group select,
body:not(.dark-mode) .form-group textarea,
body:not(.dark-mode) .input-group input,
body:not(.dark-mode) .input-group select,
body:not(.dark-mode) .input-group textarea,
[data-theme='light'] input.form-control,
[data-theme='light'] select.form-control,
[data-theme='light'] textarea.form-control {
    background-color: #f2fbf9 !important; /* Soft tinted mint for depth */
    border: 1px solid #c0c8c5 !important;
    color: #012020 !important; /* Dark Slate Teal text */
    border-radius: 8px !important; /* Premium smooth corners */
    padding: 12px 16px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* 3. The "Premium Focus" Glow */
/* When a user clicks to type, it turns pure white and glows with Caribbean Green */
body:not(.dark-mode) input.form-control:focus,
body:not(.dark-mode) select.form-control:focus,
body:not(.dark-mode) textarea.form-control:focus,
body:not(.dark-mode) .form-group input:focus,
body:not(.dark-mode) .form-group select:focus,
body:not(.dark-mode) .form-group textarea:focus,
body:not(.dark-mode) .input-group input:focus,
body:not(.dark-mode) .input-group select:focus,
body:not(.dark-mode) .input-group textarea:focus,
[data-theme='light'] input.form-control:focus,
[data-theme='light'] select.form-control:focus,
[data-theme='light'] textarea.form-control:focus {
    background-color: #ffffff !important;
    border-color: #006c53 !important; /* Caribbean Green */
    box-shadow: 0 0 0 4px rgba(0, 108, 83, 0.15) !important;
    outline: none !important;
}

/* 4. Min/Max Warning / Information Box Fix */
/* For the small dashed box under quantity */
body:not(.dark-mode) .help-block.min-max, 
body:not(.dark-mode) div[style*="border: 1px dashed"],
body:not(.dark-mode) small.help-block.min-max,
[data-theme='light'] .help-block.min-max, 
[data-theme='light'] div[style*="border: 1px dashed"] {
    background-color: #fff6c9 !important; /* Tertiary Yellow Container */
    color: #77714c !important; /* Tertiary Text */
    border: 1px dashed #e3c628 !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
}

/* =========================================================
   DROPDOWN & SELECT LIST VISIBILITY FIX (LIGHT MODE)
   ========================================================= */

/* 1. Native Select Options */
body:not(.dark-mode) select option,
body:not(.dark-mode) option,
[data-theme='light'] select option,
[data-theme='light'] option {
    background-color: #ffffff !important;
    color: #012020 !important; /* Dark Slate Teal */
    font-weight: 500 !important;
}

/* 2. Custom JS Dropdowns (Select2 & Bootstrap) */
body:not(.dark-mode) .select2-container .select2-results__option,
body:not(.dark-mode) .select2-container .select2-selection__rendered,
body:not(.dark-mode) .dropdown-menu,
body:not(.dark-mode) .dropdown-menu > li > a,
body:not(.dark-mode) .dropdown-item,
body:not(.dark-mode) .list-group-item,
[data-theme='light'] .select2-container .select2-results__option,
[data-theme='light'] .select2-container .select2-selection__rendered,
[data-theme='light'] .dropdown-menu,
[data-theme='light'] .dropdown-menu > li > a,
[data-theme='light'] .dropdown-item,
[data-theme='light'] .list-group-item {
    background-color: #ffffff !important;
    color: #012020 !important;
}

/* 3. Dropdown Hover/Highlight State */
body:not(.dark-mode) .select2-container .select2-results__option--highlighted,
body:not(.dark-mode) .select2-container .select2-results__option--highlighted[aria-selected],
body:not(.dark-mode) .dropdown-menu > li > a:hover,
body:not(.dark-mode) .dropdown-item:hover,
body:not(.dark-mode) select option:checked,
body:not(.dark-mode) select option:hover,
[data-theme='light'] .select2-container .select2-results__option--highlighted,
[data-theme='light'] .select2-container .select2-results__option--highlighted[aria-selected],
[data-theme='light'] .dropdown-menu > li > a:hover,
[data-theme='light'] .dropdown-item:hover,
[data-theme='light'] select option:checked,
[data-theme='light'] select option:hover {
    background-color: #d1fff4 !important; /* Pale Mint Hover */
    color: #012020 !important; /* Text remains dark on hover */
}

/* =========================================================
   SELECT2 & READONLY FORM DEPTH FIX (LIGHT MODE)
   ========================================================= */

/* 1. Target Select2 Container (Category & Service Dropdowns) */
body:not(.dark-mode) .select2-container--default .select2-selection--single,
body:not(.dark-mode) .select2-container--default .select2-selection--multiple,
[data-theme='light'] .select2-container--default .select2-selection--single,
[data-theme='light'] .select2-container--default .select2-selection--multiple {
    background-color: #f2fbf9 !important; /* Soft tinted mint */
    border: 1px solid #c0c8c5 !important;
    border-radius: 8px !important;
    min-height: 46px !important; /* Match input height */
    padding: 8px 12px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* 2. Target Select2 Rendered Text & Placeholder */
body:not(.dark-mode) .select2-container--default .select2-selection--single .select2-selection__rendered,
[data-theme='light'] .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #012020 !important; /* Dark Slate Teal */
    line-height: 28px !important;
    padding-left: 0 !important;
}

body:not(.dark-mode) .select2-container--default .select2-selection--single .select2-selection__placeholder,
[data-theme='light'] .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #717976 !important;
}

/* 3. Target Locked/Readonly Inputs (e.g., Average Time) */
body:not(.dark-mode) input.form-control[readonly],
body:not(.dark-mode) input.form-control[disabled],
body:not(.dark-mode) .form-control[readonly],
[data-theme='light'] input.form-control[readonly],
[data-theme='light'] input.form-control[disabled],
[data-theme='light'] .form-control[readonly] {
    background-color: #f2fbf9 !important;
    border: 1px solid #c0c8c5 !important;
    color: #404846 !important; /* Slightly lighter dark text to show it's locked */
    opacity: 1 !important;
}

/* 4. Fix Select2 Focus/Open State Glow */
body:not(.dark-mode) .select2-container--open .select2-selection--single,
body:not(.dark-mode) .select2-container--open .select2-selection--multiple,
[data-theme='light'] .select2-container--open .select2-selection--single,
[data-theme='light'] .select2-container--open .select2-selection--multiple {
    background-color: #ffffff !important;
    border-color: #006c53 !important; /* Caribbean Green */
    box-shadow: 0 0 0 4px rgba(0, 108, 83, 0.15) !important;
}

/* =========================================================
   TOP HEADER ICONS VISIBILITY FIX (DARK MODE)
   ========================================================= */

/* 1. Target all icons inside the header / navbar in Dark Mode */
body.dark-mode .app-header button i,
body.dark-mode .app-header button svg,
body.dark-mode .app-header a i,
body.dark-mode .app-header a svg,
body.dark-mode .app-header .header-btn i,
body.dark-mode .app-header .header-btn svg,
body.dark-mode .app-header .dash-menu-btn i,
body.dark-mode .app-header .dash-menu-btn svg,
body.dark-mode .navbar-nav .nav-link i,
body.dark-mode .navbar-nav .nav-link svg,
body.dark-mode .material-symbols-outlined,
.dark .app-header button i,
.dark .app-header button svg,
.dark .app-header a i,
.dark .app-header a svg,
.dark .app-header .header-btn i,
.dark .app-header .header-btn svg,
.dark .app-header .dash-menu-btn i,
.dark .app-header .dash-menu-btn svg {
    color: #dbe5de !important; /* Soft White from design system */
    fill: #dbe5de !important;  /* For SVG paths */
    opacity: 0.9 !important;
    transition: all 0.3s ease !important;
}

/* 2. Premium Hover Effect for Header Icons */
body.dark-mode .app-header button:hover i,
body.dark-mode .app-header button:hover svg,
body.dark-mode .app-header a:hover i,
body.dark-mode .app-header .header-btn:hover i,
body.dark-mode .app-header .dash-menu-btn:hover i,
body.dark-mode .navbar-nav .nav-link:hover i,
.dark .app-header button:hover i,
.dark .app-header button:hover svg,
.dark .app-header .header-btn:hover i,
.dark .app-header .dash-menu-btn:hover i {
    color: #00ffc2 !important; /* Neon Mint Hover Glow */
    fill: #00ffc2 !important;
    transform: scale(1.1) !important;
}

/* 3. Ensure the empty box backgrounds are subtly visible but not overwhelming */
body.dark-mode .app-header button,
body.dark-mode .app-header a.nav-link,
body.dark-mode .app-header .header-btn,
body.dark-mode .app-header .dash-menu-btn,
.dark .app-header button,
.dark .app-header a.nav-link,
.dark .app-header .header-btn,
.dark .app-header .dash-menu-btn {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* ═══════════════════════════════════════════════════════════════ */
/* GAINTPANEL — CRITICAL LIGHT MODE & VISIBILITY FIXES            */
/* Applied at bottom to override all conflicting rules above      */
/* ═══════════════════════════════════════════════════════════════ */

/* ─── FIX 1: Header Icon Buttons — Main culprit (opacity:0.7 on light bg) ─── */
body:not(.dark-mode) .app-header .header-btn .icon {
    opacity: 1 !important;
    background: rgba(0, 108, 83, 0.10) !important;
    border: 1px solid rgba(0, 108, 83, 0.22) !important;
    color: #006c53 !important;
}
body:not(.dark-mode) .app-header .header-btn:hover .icon {
    background: #006c53 !important;
    color: #ffffff !important;
    opacity: 1 !important;
}
/* Logout button stays red in light mode too */
body:not(.dark-mode) .app-header .header-btn .icon.logout {
    background-color: rgba(236, 62, 114, 0.12) !important;
    color: #fb3f77 !important;
    border-color: rgba(251, 63, 119, 0.25) !important;
}
/* Hamburger / Menu toggle */
body:not(.dark-mode) .dash-menu-btn .icon {
    background: rgba(0, 108, 83, 0.08) !important;
    border-color: rgba(0, 108, 83, 0.18) !important;
    color: #006c53 !important;
}

/* ─── FIX 2: Form Labels — hardcoded #fff was invisible on light bg ─── */
body:not(.dark-mode) .form-group label,
body:not(.dark-mode) .form-group .control-label,
body:not(.dark-mode) label {
    color: #2d4f4d !important;
    font-weight: 600 !important;
}

/* ─── FIX 3: Form Inputs text — hardcoded color:#fff ─── */
body:not(.dark-mode) .form-group .form-control,
body:not(.dark-mode) .form-control {
    color: #012020 !important;
    background-color: #f2fbf9 !important;
    border-color: #c0c8c5 !important;
}

/* ─── FIX 4: Custom Dropdown Items (Category / Service selectors) ─── */
body:not(.dark-mode) #serviceItem,
body:not(.dark-mode) #categoryItem {
    color: #012020 !important;
    background: #ffffff !important;
    border-bottom-color: #e8f0ee !important;
}
body:not(.dark-mode) #serviceItem:hover,
body:not(.dark-mode) #categoryItem:hover {
    background: #d1fff4 !important;
    color: #012020 !important;
}

/* ─── FIX 5: Dropdown button text (the selected value shown) ─── */
body:not(.dark-mode) .dropdown button {
    background: #f2fbf9 !important;
    border: 1px solid #c0c8c5 !important;
    color: #012020 !important;
    border-radius: 8px !important;
}
body:not(.dark-mode) .dropdown button:hover,
body:not(.dark-mode) .dropdown button:focus {
    color: #012020 !important;
}

/* ─── FIX 6: Panel Body (service detail box) ─── */
body:not(.dark-mode) .panel-body {
    background: #ffffff !important;
    border: 1px solid #c0c8c5 !important;
    color: #012020 !important;
}

/* ─── FIX 7: Support Center Badge text ─── */
body:not(.dark-mode) .sc-badge .sc-text,
body:not(.dark-mode) .sc-badge .sc-text strong,
body:not(.dark-mode) .sc-badge .sc-text span {
    color: #012020 !important;
}
body:not(.dark-mode) .sc-badge {
    background: rgba(255,255,255,0.85) !important;
    border-color: rgba(0,108,83,0.20) !important;
}

/* ─── FIX 8: Card-2 subtext (Announcement cards etc.) ─── */
body:not(.dark-mode) .card.card-2 .c2-title-1 {
    color: #012020 !important;
}
body:not(.dark-mode) .card.card-2 .c2-text {
    color: #404846 !important;
}
body:not(.dark-mode) .card.card-2 .card-header small,
body:not(.dark-mode) .card.card-2 .card-body small {
    color: #5a7a78 !important;
}
body:not(.dark-mode) .card .card-header span {
    color: #012020 !important;
}

/* ─── FIX 9: Table rows (tablepen) — hardcoded #fff text ─── */
body:not(.dark-mode) .tablepen .sira {
    background: #ffffff !important;
    color: #012020 !important;
}
body:not(.dark-mode) .tablepen .sira:nth-of-type(odd) {
    background: #f2fbf9 !important;
    color: #012020 !important;
}
body:not(.dark-mode) .tablepen .sira.headers {
    background: #006c53 !important;
    color: #ffffff !important;
}
body:not(.dark-mode) .tablepen .hucre {
    border-top-color: #e0edea !important;
}

/* ─── FIX 10: User Level (account rank) text ─── */
body:not(.dark-mode) .ulevel-t-1 { color: #5a7a78 !important; }
body:not(.dark-mode) .ulevel-t-2 { color: #012020 !important; }
body:not(.dark-mode) .ulevel-t-3 { color: #2d4f4d !important; }
body:not(.dark-mode) .ulevel-text { color: rgba(1,32,32,0.5) !important; }
body:not(.dark-mode) .ulevel-c::before {
    background-color: #d4f4f4 !important;
}

/* ─── FIX 11: Stat Cards (u-stats) text — hardcoded #fff ─── */
body:not(.dark-mode) .u-stats .us-item {
    color: #012020 !important;
}
body:not(.dark-mode) .u-stats .us-item .ui-title {
    color: #2d4f4d !important;
}
body:not(.dark-mode) .u-stats .us-item .ui-text {
    color: #012020 !important;
    font-weight: 800 !important;
}
body:not(.dark-mode) .u-stats .us-item .us-item--icon {
    border-color: rgba(0,108,83,0.3) !important;
}

/* ─── FIX 12: Mobile App Navbar (bottom nav on mobile) ─── */
body:not(.dark-mode) .app-navbar {
    background: #d0f5f3 !important;
    border-top: 1px solid rgba(0,108,83,0.15) !important;
}
body:not(.dark-mode) .app-navbar-link li {
    border-right-color: rgba(0,108,83,0.12) !important;
}
body:not(.dark-mode) .app-navbar-link li a,
body:not(.dark-mode) .app-navbar-link li a i {
    color: #2d4f4d !important;
}
body:not(.dark-mode) .app-navbar-link span.balance {
    color: #006c53 !important;
}
body:not(.dark-mode) .app-navbar-link li.active {
    background: #006c53 !important;
}
body:not(.dark-mode) .app-navbar-link li.active a,
body:not(.dark-mode) .app-navbar-link li.active a i {
    color: #ffffff !important;
}

/* ─── FIX 13: Sidebar hover tooltip (toggled collapsed state) ─── */
body:not(.dark-mode) #dashboard-wrapper.toggled .list-group-item:hover::after {
    background: #d1fff4 !important;
    color: #012020 !important;
}

/* ─── FIX 14: Light mode card background override (prevent bg-lighter etc) ─── */
body:not(.dark-mode) .bg-lighter pre {
    color: #012020 !important;
}

/* ─── FIX 15: Order nav (status filter tabs) ─── */
body:not(.dark-mode) .orderNav li a {
    background-color: #d1fff4 !important;
    color: #012020 !important;
}
body:not(.dark-mode) .orderNav li a.active,
body:not(.dark-mode) .orderNav li a:hover {
    background: #006c53 !important;
    color: #ffffff !important;
}

/* ─── FIX 16: Search bar in light mode ─── */
body:not(.dark-mode) .dfb-search {
    background-color: #f2fbf9 !important;
    border: 1px solid #c0c8c5 !important;
}
body:not(.dark-mode) .dfb-search .dfb-input {
    color: #012020 !important;
}
body:not(.dark-mode) .dfb-search i {
    color: #006c53 !important;
}
body:not(.dark-mode) .dfb-search .dfb-submit {
    background: #006c53 !important;
    color: #ffffff !important;
}

/* ─── FIX 17: Dropdown menu background in light mode ─── */
body:not(.dark-mode) .dropdown-content {
    background-color: #ffffff !important;
    border-color: #c0c8c5 !important;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10) !important;
}
body:not(.dark-mode) .dropdown-content a {
    color: #012020 !important;
}
body:not(.dark-mode) .dropdown-content a:hover {
    background: #d1fff4 !important;
    color: #012020 !important;
}

/* ─── FIX 18: Modal in light mode ─── */
body:not(.dark-mode) .modal-content {
    background: #ffffff !important;
    color: #012020 !important;
    border: 1px solid #c0c8c5 !important;
}

/* ─── FIX 19: .bg-dark and .btn-light in light mode ─── */
body:not(.dark-mode) .bg-dark {
    background: #d1fff4 !important;
    color: #012020 !important;
}
body:not(.dark-mode) .btn-light {
    background: #d1fff4 !important;
    color: #012020 !important;
}

/* ─── FIX 20: g-card header & paragraph visibility ─── */
body:not(.dark-mode) .g-card-header {
    color: #012020 !important;
}
body:not(.dark-mode) .g-card p {
    color: #2d4f4d !important;
}

/* ─── FIX 21: head-box (page section header text) ─── */
body:not(.dark-mode) .head-box span {
    color: #006c53 !important;
}

/* ─── FIX 22: Smooth transition for all theme-affected properties ─── */
body:not(.dark-mode) *,
body.dark-mode * {
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease !important;
}
/* ─── Exception: Don't animate transforms (breaks hover effects) ─── */
.app-sidebar .sidebar-menu li a.menu-link,
.g-card, .card, .panel, .well,
.header-btn .icon {
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease,
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* ═══════════════════════════════════════════════════════════════ */
/* END OF GAINTPANEL FIXES — v2.0                                 */
/* ═══════════════════════════════════════════════════════════════ */

/* ================================================================
   GAINT PANEL — DEFINITIVE LIGHT MODE COHESIVE FIX + ANIMATIONS
   Add this at the BOTTOM of style.css — DO NOT remove anything above
   ================================================================ */

/* ── STEP 1: Top-Right Header Icon Buttons & Hamburger Menu (Light Mode Visibility) ── */
body:not(.dark-mode) .app-header .header-btn .icon,
body:not(.dark-mode) .app-header .dash-menu-btn .icon,
body:not(.dark-mode) .app-header .theme-toggle-btn {
    opacity: 1 !important;
    background: rgba(0, 108, 83, 0.10) !important;
    border: 1.5px solid rgba(0, 108, 83, 0.25) !important;
    color: #006c53 !important;
    box-shadow: 0 2px 8px rgba(0, 108, 83, 0.08) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
}

/* Force icons inside to inherit the dark green/teal color */
body:not(.dark-mode) .app-header .header-btn .icon i,
body:not(.dark-mode) .app-header .dash-menu-btn .icon i,
body:not(.dark-mode) .app-header .theme-toggle-btn i {
    color: #006c53 !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Hover States: Transition to solid teal with white icons */
body:not(.dark-mode) .app-header .header-btn:hover .icon,
body:not(.dark-mode) .app-header .dash-menu-btn:hover .icon,
body:not(.dark-mode) .app-header .theme-toggle-btn:hover {
    background: #006c53 !important;
    border-color: #006c53 !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 4px 14px rgba(0, 108, 83, 0.25) !important;
}
body:not(.dark-mode) .app-header .header-btn:hover .icon i,
body:not(.dark-mode) .app-header .dash-menu-btn:hover .icon i,
body:not(.dark-mode) .app-header .theme-toggle-btn:hover i {
    color: #ffffff !important;
}

/* Logout Button: Specific red/pink scheme */
body:not(.dark-mode) .app-header .header-btn .icon.logout {
    background: rgba(251, 63, 119, 0.10) !important;
    border-color: rgba(251, 63, 119, 0.25) !important;
}
body:not(.dark-mode) .app-header .header-btn .icon.logout i {
    color: #fb3f77 !important;
}
body:not(.dark-mode) .app-header .header-btn:hover .icon.logout {
    background: #fb3f77 !important;
    border-color: #fb3f77 !important;
}
body:not(.dark-mode) .app-header .header-btn:hover .icon.logout i {
    color: #ffffff !important;
}

/* ── STEP 2: Welcome Strip & Stat Cards Text Visibility (Light Mode) ── */
/* Welcome Strip Text */
body:not(.dark-mode) .bg-pattern.text-white,
body:not(.dark-mode) .bg-pattern .h3,
body:not(.dark-mode) .bg-pattern div,
body:not(.dark-mode) .bg-pattern h5,
body:not(.dark-mode) .bg-pattern h3,
body:not(.dark-mode) .bg-pattern span:not(.animate-balance) {
    color: #012020 !important;
}
body:not(.dark-mode) .bg-pattern span.animate-balance,
body:not(.dark-mode) .bg-pattern .ulevel-t-3 {
    color: #006c53 !important;
    font-weight: 700 !important;
}

/* Stat Cards Text Fix */
body:not(.dark-mode) .u-stats .us-item {
    color: #012020 !important;
    background-color: var(--primary-lighter-color) !important;
    border: 1.5px solid rgba(0, 108, 83, 0.15) !important;
    box-shadow: 0 4px 12px rgba(0, 108, 83, 0.05) !important;
}
body:not(.dark-mode) .u-stats .us-item .ui-title {
    color: #2d4f4d !important;
    font-weight: 600 !important;
}
body:not(.dark-mode) .u-stats .us-item .ui-text,
body:not(.dark-mode) .u-stats .us-item .ui-text span.animate-balance {
    color: #012020 !important;
    font-weight: 800 !important;
}

/* ── STEP 3: Form Labels, Controls, Inputs, and Selectors ── */
body:not(.dark-mode) label,
body:not(.dark-mode) .form-group label,
body:not(.dark-mode) .control-label,
body:not(.dark-mode) .g-card label {
    color: #2d4f4d !important;
    font-weight: 600 !important;
}
body:not(.dark-mode) .form-control,
body:not(.dark-mode) .form-group .form-control,
body:not(.dark-mode) input.form-control,
body:not(.dark-mode) select.form-control,
body:not(.dark-mode) textarea.form-control {
    color: #012020 !important;
    background-color: #f2fbf9 !important;
    border: 1.5px solid #c0c8c5 !important;
}
body:not(.dark-mode) .form-control:focus,
body:not(.dark-mode) .form-group .form-control:focus {
    background: #ffffff !important;
    border-color: #006c53 !important;
    box-shadow: 0 0 0 3px rgba(0, 108, 83, 0.15) !important;
    outline: none !important;
}

/* Dropdowns & Category/Service Selectors */
body:not(.dark-mode) #serviceItem,
body:not(.dark-mode) #categoryItem {
    color: #012020 !important;
    background: #ffffff !important;
    border-bottom-color: #e0edea !important;
}
body:not(.dark-mode) #serviceItem:hover,
body:not(.dark-mode) #categoryItem:hover {
    background: #d1fff4 !important;
    color: #006c53 !important;
}
body:not(.dark-mode) .dropdown button {
    background: #f2fbf9 !important;
    border: 1.5px solid #c0c8c5 !important;
    color: #012020 !important;
    border-radius: 8px !important;
}

/* ── STEP 4: Nested Cards & Form Elements ── */
body:not(.dark-mode) .panel-body {
    background: #ffffff !important;
    border: 1.5px solid #c0c8c5 !important;
    color: #012020 !important;
}
body:not(.dark-mode) .g-card .g-card,
body:not(.dark-mode) .g-card .card,
body:not(.dark-mode) .card .g-card,
body:not(.dark-mode) .card .card {
    background: #f2fbf9 !important;
    border: 1px solid rgba(0, 108, 83, 0.15) !important;
    color: #012020 !important;
}
body:not(.dark-mode) .g-card .g-card *,
body:not(.dark-mode) .g-card .card *,
body:not(.dark-mode) .card .card * {
    color: #012020 !important;
}
body:not(.dark-mode) .g-card .g-card .g-card-header,
body:not(.dark-mode) .card .card .card-header {
    color: #006c53 !important;
    border-bottom: 1px solid rgba(0, 108, 83, 0.12) !important;
    background: transparent !important;
}
body:not(.dark-mode) .g-card p,
body:not(.dark-mode) .g-card span:not(.badge):not(.sc-icon),
body:not(.dark-mode) .g-card small,
body:not(.dark-mode) .g-card td,
body:not(.dark-mode) .g-card th {
    color: #404846 !important;
}
body:not(.dark-mode) .g-card strong,
body:not(.dark-mode) .g-card b,
body:not(.dark-mode) .g-card h1,
body:not(.dark-mode) .g-card h2,
body:not(.dark-mode) .g-card h3,
body:not(.dark-mode) .g-card h4,
body:not(.dark-mode) .g-card h5 {
    color: #012020 !important;
}

/* ── STEP 5: Tables, Search Bar, Order Nav Filters ── */
body:not(.dark-mode) .tablepen .sira {
    background: #ffffff !important;
    color: #012020 !important;
}
body:not(.dark-mode) .tablepen .sira:nth-of-type(odd) {
    background: #f2fbf9 !important;
    color: #012020 !important;
}
body:not(.dark-mode) .tablepen .sira.headers {
    background: #006c53 !important;
    color: #ffffff !important;
}
body:not(.dark-mode) .tablepen .hucre {
    border-top-color: #e0edea !important;
    color: #012020 !important;
}
body:not(.dark-mode) .orderNav li a {
    background-color: #d1fff4 !important;
    color: #012020 !important;
}
body:not(.dark-mode) .orderNav li a.active,
body:not(.dark-mode) .orderNav li a:hover {
    background: #006c53 !important;
    color: #ffffff !important;
}
body:not(.dark-mode) .dfb-search {
    background-color: #f2fbf9 !important;
    border: 1px solid #c0c8c5 !important;
}
body:not(.dark-mode) .dfb-search .dfb-input {
    color: #012020 !important;
}
body:not(.dark-mode) .dfb-search .dfb-submit {
    background: #006c53 !important;
    color: #ffffff !important;
}

/* ── STEP 6: Modals & Support Center Badge ── */
body:not(.dark-mode) .modal-content {
    background: #ffffff !important;
    color: #012020 !important;
    border: 1px solid #c0c8c5 !important;
}
body:not(.dark-mode) .modal-content h1,
body:not(.dark-mode) .modal-content h2,
body:not(.dark-mode) .modal-content h3,
body:not(.dark-mode) .modal-content h4,
body:not(.dark-mode) .modal-content p,
body:not(.dark-mode) .modal-content span,
body:not(.dark-mode) .modal-content label {
    color: #012020 !important;
}
body:not(.dark-mode) .sc-badge {
    background: rgba(255, 255, 255, 0.90) !important;
    border-color: rgba(0, 108, 83, 0.20) !important;
}
body:not(.dark-mode) .sc-badge .sc-text,
body:not(.dark-mode) .sc-badge .sc-text strong,
body:not(.dark-mode) .sc-badge .sc-text span {
    color: #012020 !important;
}

/* ── STEP 7: Mobile App Bottom Navbar ── */
body:not(.dark-mode) .app-navbar {
    background: #d0f5f3 !important;
    border-top: 1px solid rgba(0, 108, 83, 0.15) !important;
}
body:not(.dark-mode) .app-navbar-link li a,
body:not(.dark-mode) .app-navbar-link li a i {
    color: #2d4f4d !important;
}
body:not(.dark-mode) .app-navbar-link span.balance {
    color: #006c53 !important;
}
body:not(.dark-mode) .app-navbar-link li.active {
    background: #006c53 !important;
}
body:not(.dark-mode) .app-navbar-link li.active a,
body:not(.dark-mode) .app-navbar-link li.active a i {
    color: #ffffff !important;
}

/* ── STEP 8: Account Level Widget ── */
body:not(.dark-mode) .ulevel-t-1 { color: #5a7a78 !important; }
body:not(.dark-mode) .ulevel-t-2 { color: #012020 !important; }
body:not(.dark-mode) .ulevel-t-3 { color: #2d4f4d !important; }
body:not(.dark-mode) .ulevel-text { color: rgba(1, 32, 32, 0.45) !important; }
body:not(.dark-mode) .ulevel-c::before { background-color: #d4f4f4 !important; }

/* ── STEP 9: Transitions & Animations ── */
.anim-fade-up {
    opacity: 0;
    transform: translateY(24px);
}
.anim-fade-left {
    opacity: 0;
    transform: translateX(-24px);
}
.anim-fade-right {
    opacity: 0;
    transform: translateX(24px);
}
.anim-ready {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Premium hover lift for all cards (clean transitions) */
.g-card, .u-stats .us-item, .btn, button, .menu-link, .header-btn .icon, .theme-toggle-btn, .dash-menu-btn .icon {
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
body:not(.dark-mode) .g-card:hover,
body:not(.dark-mode) .u-stats .us-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 16px 40px -8px rgba(0, 108, 83, 0.18),
                0 4px 12px rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(0, 108, 83, 0.30) !important;
}
body.dark-mode .g-card:hover,
body.dark-mode .u-stats .us-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 16px 40px -8px rgba(0, 255, 194, 0.20),
                0 0 0 1px rgba(0, 255, 194, 0.15) !important;
    border-color: rgba(0, 255, 194, 0.25) !important;
}

/* Sidebar Link Slide */
.app-sidebar .sidebar-menu li a.menu-link:hover {
    transform: translateX(5px) !important;
}

/* Button hover lift with shadow pulse */
body:not(.dark-mode) .btn-success:hover,
body:not(.dark-mode) button[type="submit"]:hover,
body:not(.dark-mode) .btn-primary:hover {
    box-shadow: 0 0 0 4px rgba(0, 108, 83, 0.20),
                0 6px 20px rgba(0, 108, 83, 0.30) !important;
    transform: translateY(-2px) !important;
}
body.dark-mode .btn-success:hover,
body.dark-mode button[type="submit"]:hover {
    box-shadow: 0 0 0 4px rgba(0, 255, 194, 0.15),
                0 6px 20px rgba(0, 255, 194, 0.25) !important;
    transform: translateY(-2px) !important;
}

/* Hide duplicate description field generated by SMM core */
#neworder_fields #description {
    display: none !important;
}

/* ================================================================
   GAINT PANEL — GUEST LANDING/AUTH PAGES VISIBILITY & LOGO FIXES
   ================================================================ */

/* Force guest logo image to remain within normal navbar scale */
.navbar-brand img,
.navbar-expand-lg .navbar-brand img,
nav .navbar-brand img {
    height: 55px !important;
    width: auto !important;
    max-height: 55px !important;
    object-fit: contain !important;
}

/* Adjust top padding on guest layout container so it doesn't overlap with logo/nav */
body.home .heading > div {
    padding-top: calc(1.5rem + 80px) !important;
}

/* Guest Navbar links & Brand text visibility in Light Mode */
body:not(.dark-mode).home .navbar-nav .nav-link {
    color: #012020 !important;
    font-weight: 600 !important;
}
body:not(.dark-mode).home .navbar-nav .nav-link:hover,
body:not(.dark-mode).home .navbar-nav .nav-link.active {
    color: #006c53 !important;
}
body:not(.dark-mode).home .navbar-brand {
    color: #012020 !important;
    font-weight: 700 !important;
}
body:not(.dark-mode).home .navbar-toggler span {
    background-color: #006c53 !important;
}

/* Guest Header text visibility in Light Mode (replaces white text on light cyan background) */
body:not(.dark-mode).home .text-white,
body:not(.dark-mode).home .text-white h2,
body:not(.dark-mode).home .text-white h1,
body:not(.dark-mode).home h2,
body:not(.dark-mode).home h1 {
    color: #012020 !important;
}
body:not(.dark-mode).home .text-muted {
    color: #2d4f4d !important;
    opacity: 0.9 !important;
}
