h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 45px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.btn-sm {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

::selection {
  color: #ffffff;
  background: #0054ad;
  text-shadow: none;
}

.form-range {
  color: #0054ad;
}

.blur {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#feedback-attachment-previews {
  max-width: 400px;
  border-radius: 8px;
  border-color: rgba(255,255,255,0.25);
}

.slider {
  width: 100%;
  /*max-width: 90%;*/
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 120px;
  height: 60px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-80px * 6));
  }
}

@media (max-width: 768px) {
  .slide {
    width: 100px;
    height: 60px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-80px * 6));
  }
}

@media (max-width: 480px) {
  .slide {
    width: 80px;
    height: 40px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-80px * 6));
  }
}

@media (min-width: 576px) {
  h2 {
    font-size: 23px;
    font-family: Lato, sans-serif;
  }
}

@media (max-width: 600px) {
  .btn {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Buttong groud media query for mobile devices */

@media (max-width: 600px) {
  .btn-group {
    width: 100%;
    box-sizing: border-box;
  }
}

h2 {
  font-size: 23px;
  font-family: Lato, sans-serif;
}

@media (min-width: 576px) {
  h2 {
    font-size: 30px;
    font-family: Lato, sans-serif;
  }
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

.separator hr {
  flex: 1;
  border: 1px;
  height: 1px;
  background-color: #0054ad !important;
}

.separator span {
  padding: 0 10px;
  color: #0054ad;
}

.dropdown-menu {
  background-color: #ccddef;
  border-radius: 0.5rem;
  border: 1px solid #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  color: #000000;
  padding: 10px 16px;
  transition: background-color 0.3s, color 0.3s;
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: #0054ad;
  color: #fff;
}

.dropdown-item.active {
  background-color: #0054ad;
  color: #fff;
}

.dropdown-divider {
  border-top: 1px solid #ffffff;
}

.messageDiv {
  background-color: #d4edda;
  color: #155724;
  padding: 10px 20px;
  margin: 0px 0px 16px 0px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  animation: fadeOut 7s forwards;
}

.message {
  display: none;
  margin: 0px 0px 16px 0px;
  padding: 10px;
  width: 100%;
  background-color: #d4edda;
  color: #155724;
  border: 0px solid #f5c6cb;
  border-radius: 6px;
}

.strong-password {
  display: none;
  color: #09b106;
  font-size: 12px;
  margin-top: 5px;
}

.weak-password {
  display: none;
  color: #de3242;
  font-size: 12px;
  margin-top: 5px;
}

.btn:hover {
  background-color: #083360;
  border-radius: 32px;
  color: #ffffff;
}

.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background-color: #f8d7da;
  color: #de3242;
  border: 1px solid #f5c6cb;
}

.success {
  background-color: #d4edda;
  color: #155724;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
}

.message-container {
  display: none;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  opacity: 1;
  transition: opacity 1s ease-out;
}

.appCard {
  transition: transform 0.3s ease;
}

.appCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(55, 99, 244, 0.15);
}

h1 {
  font-size: 30px;
}

@media (min-width: 576px) {
  h1 {
    font-size: 40px;
  }
}

.btn-spacing-ui {
  margin: 2px;
}

/* Loading Indicator */

#loading-indicator {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#loading-indicator span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50px);
  color: white;
  font-size: 16px;
}

.hidden {
  display: none;
}

auth-ui-button span {
  text-align: center;
}

#phoneSignInMessage {
  width: 300px;
  border: 1px solid;
  border-radius: 6px;
  padding: 8px 10px;
  margin: 4px 0px;
  display: none;
  transition: opacity 0.5s ease-in-out;
}

#phoneSignInMessage.success {
  border-color: #155724;
  background-color: #d4edda;
  color: #155724;
}

#phoneSignInMessage.error {
  border-color: #721c24;
  background-color: #f8d7da;
  color: #721c24;
}

.auth-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.auth-button img {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
}

input:-internal-autofill-selected {
  appearance: menulist-button;
  background-color: #0054ad !important;
  background-image: none !important;
  color: #000000;
}

.mt-2 {
  margin-top: 0rem !important;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: #0054ad;
}

.alert-info {
  background-color: var(--bs-info-text-emphasis);
  border-color: var(--bs-info);
  color: var(--bs-info);
}

.timeline {
  border-left: 2px solid #0054ad;
  padding-left: 20px;
  margin-left: 10px;
}

.timeline-item {
  position: relative;
  margin-bottom: 20px;
}

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background-color: #0054ad;
  border-radius: 50%;
  position: absolute;
  left: -27px;
  top: 5px;
}

.card-ui:hover {
  transform: translateY(-3px);
}

.repair-options button {
  margin: 5px;
}

.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: #ccddef;
}

.rc-anchor-light {
  background: #ccddef !important;
  color: #000;
}

.benefits {
  margin-top: 15px;
  font-size: 0.9rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.benefit-icon {
  margin-right: 10px;
  color: #4CAF50;
}

.edit-icon {
  width: 23px;
  height: 23px;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #0054ad;
  color: #ffffff;
  border-radius: 50%;
  padding: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.profile-picture {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#locationInput {
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #0054ad;
  border-color: #0054ad;
}

.logo-container {
  margin-top: 30px;
}

.logo-row {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 20px;
}

.logo {
  width: 60px;
  height: 60px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  perspective: 1000px;
  position: relative;
  border-radius: 8px;
}

.logo .front, .logo .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background-size: cover;
  border-radius: 8px;
}

.logo .front {
  transform: rotateX(0deg);
}

.logo .back {
  transform: rotateX(180deg);
}

.flip {
  transform: rotateX(0deg);
}

.flip.active {
  transform: rotateX(180deg);
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
  color: #ccddef;
  background-color: #0054ad;
  border-color: var(--bs-nav-tabs-link-active-border-color);
}

.nav-pills .nav-link {
  color: #0054ad;
  background-color: #ffffff00;
  border-radius: 32px;
}

.btn-issue .btn-sm .btn-primary {
  margin: 0.25rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: none;
}

.btn-issue:hover {
  transform: translateY(-2px);
}

.solution-card {
  margin-top: 1rem;
  border-radius: 16px;
  border: 1px solid #155724;
  background-color: #d4edda;
  color: #155724;
  transition: all 0.3s ease;
}

#issueButtons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.ai-pulse {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--bs-primary-bg-subtle);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 100, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 100, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 100, 255, 0);
  }
}

.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fade-in.show {
  opacity: 1;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.85;
}

.alert {
  margin-top: 10px;
  display: none;
  background-color: var(--bs-body-bg);
  color: var(--bs-warning);
  border: 1px solid var(--bs-warning);
  border-radius: 6px;
}

.toast {
  margin-top: 10px;
  display: none;
  background-color: var(--bs-body-bg);
  color: var(--bs-warning);
  border: 1px solid var(--bs-warning);
  border-radius: 6px;
}

.alert-success {
  background-color: #d4edda;
  border: 1px;
  border-color: var(--bs-success);
  color: var(--bs-success);
}

.alert-danger {
  background-color: var(--bs-danger-bg-subtle);
  border: 1px;
  border-color: var(--bs-danger);
  color: var(--bs-danger);
}

.alert-warning {
  background-color: var(--bs-warning-bg-subtle);
  border: 1px;
  border-color: var(--bs-warning);
  color: var(--bs-warning);
}

.alert.show {
  display: block;
}

.form-select:focus {
  border-color: #0054ad;
  outline: 0;
  box-shadow: 0 0 0 0.25rem #80b2e75e;
}

.share-icons {
  margin-top: 20px;
}

.print-icon {
  cursor: pointer;
  margin-right: 10px;
}

.key-pressed {
  background-color: var(--bs-success);
  color: white;
}

.btn-money, .btn-tap {
  color: #000000;
}

.btn-money:hover, .btn-tap:hover {
  color: #0054ad;
}

.currency-switch {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--secondary-color);
  padding: 5px 10px;
  border-radius: 15px;
  font-weight: bold;
}

#scanFrame {
  width: 100%;
  height: 250px;
  background-color: #000;
  border: 1px solid #0054ad;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

#scanOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #000 5px, transparent 5px) 0 0, linear-gradient(to right, #000 5px, transparent 5px) 0 100%, linear-gradient(to left, #000 5px, transparent 5px) 100% 0, linear-gradient(to left, #000 5px, transparent 5px) 100% 100%, linear-gradient(to bottom, #000 5px, transparent 5px) 0 0, linear-gradient(to bottom, #000 5px, transparent 5px) 100% 0, linear-gradient(to top, #000 5px, transparent 5px) 0 100%, linear-gradient(to top, #000 5px, transparent 5px) 100% 100%;
  background-repeat: no-repeat;
  background-size: 50px 50px;
}

#scanLine {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--bs-primary);
  top: 0;
  box-shadow: 0 0 8px 2px var(--bs-primary);
  animation: scan 2s linear infinite;
}

@keyframes scan {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

.secured-by {
  text-align: center;
  color: #6c757d;
  font-size: 0.9rem;
  margin-top: 10px;
}

.secured-by i {
  color: var(--primary-color);
}

.fixespoint-pay-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--bs-primary);
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.tooltip-inner {
  max-width: 200px;
}

.search-wrapper {
  max-width: 600px;
}

.search-input-group {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.search-input {
  font-size: 1.1rem;
  transition: all 0.5s ease;
}

.mic-icon {
  right: 10px;
}

.mic-icon:hover {
  color: #0054ad;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.search-modal .modal-dialog {
  max-width: 800px;
  margin-top: 0;
  margin-bottom: 0;
}

.search-input {
  border: none;
  border-bottom: 2px solid #0054ad;
  border-radius: 0;
  box-shadow: none;
  font-size: 1.5rem;
}

.search-input:focus {
  box-shadow: none;
  border-color: #0054ad;
}

.quick-links {
  margin-top: 2rem;
}

.quick-links h5 {
  margin-bottom: 1rem;
}

.quick-links ul {
  list-style-type: none;
  padding-left: 0;
}

.quick-links li {
  margin-bottom: 0.5rem;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #0054ad;
  border-top: none;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #0054ad;
}

.autocomplete-items div:hover {
  background-color: #e9e9e9;
}

.autocomplete-active {
  background-color: #007bff !important;
  color: #ffffff;
}

.ai-suggestion {
  background-color: #ccddef;
  border-left: 4px solid #0054ad;
  padding: 1rem;
  margin-top: 1rem;
}

.modal.fade .modal-dialog {
  transform: translate(0, -100%);
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.hiding .modal-dialog {
  transform: translate(0, -100%);
}

.carousel-controls-container {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: center;
}

.carousel-control-prev, .carousel-control-next {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  opacity: 1;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
  background-color: #ccddef;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

#pausePlayBtn {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  color: black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

#pausePlayBtn:hover {
  background-color: #ccddef;
}

.text-success {
  color: var(--bs-success);
}

.text-danger {
  color: var(--bs-danger);
}

.availability-check {
  font-size: 13px;
}

.spinner-border {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.fab-icon-holder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccddef;
  background: #0054ad;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fab-icon-holder:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.fab-icon-holder img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.fab-options {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 70px;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(20px);
  pointer-events: none;
}

.fab-options.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fab-options li {
  display: flex;
  justify-content: flex-end;
  padding: 10px 0;
}

.fab-label:hover {
  background: rgba(248, 249, 250, 1);
  transform: translateX(-5px);
}

.option-holder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(1, 111, 185, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.option-holder:hover {
  transform: scale(1.1);
}

.option-holder i {
  font-size: 20px;
  color: var(--secondary-color);
}

.option-holder.whatsapp {
  background: #25D366;
}

.option-holder.intercom {
  background: var(--bs-primary-bg-subtle);
}

.timestamp-text {
  font-size: 0.9rem;
  color: var(--bs-secondary-bg-subtle);
}

.loader {
  border: 5px solid #f2f2f2;
  border-top: 5px solid #0054ad;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#changingWord {
  display: inline-block;
  color: var(--bs-primary);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.fp-fade-out {
  opacity: 0;
  transform: translateY(-8px);
}

.fp-fade-in {
  opacity: 1;
  transform: translateY(0);
}

#loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 2;
}

.search-wrapper {
  max-width: 600px;
  margin: 20px auto;
  position: absolute;
  bottom: 20px;
  z-index: 3;
}

.search-input-group {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.search-input {
  border: none;
  padding: 15px 60px 15px 25px;
  font-size: 14px;
  border-radius: 50px;
  width: 100%;
}

.search-icon, .mic-icon {
  font-size: 1.25rem;
  color: var(--bs-primary-bg-subtle);
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 10px;
}

.search-icon {
  margin-right: 10px;
}

.search-icon:hover, .mic-icon:hover {
  color: var(--bs-primary);
}

.modal-backdrop.show {
  opacity: 0.5;
}

.mapboxgl-ctrl-group {
  display: none;
}

#search-container {
  position: absolute;
  /*top: 10%;*/
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 90%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.8);
  /*padding: 10px;*/
  border-radius: 5px;
  box-shadow: #;
}

#verificationSpinner {
  margin: 8px auto;
  display: none;
}

#imagePreview {
  max-width: 100%;
  max-height: 200px;
  margin-top: 16px;
  border-radius: 16px;
}

.card-img-top {
  height: inherit;
  border-radius: 16px;
}

.scrap-card {
  width: 100%;
}

#camera-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  position: relative;
}

#qr-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#scanning-indicator {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 4px solid #0054ad;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 84, 173, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

#scanning-indicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 4px;
  background-color: #0054ad;
  transform: translateX(-50%);
  animation: scanning 2s linear infinite;
}

@keyframes scanning {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

.chevron-up {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
}

.input-container {
  position: relative;
}

.input-container {
  width: calc(100% - 40px);
  padding-right: 40px;
}

.pointer-search-wrapper {
  max-width: 500px;
  margin: 50px auto;
}

.merchant-search-wrapper {
  max-width: 500px;
  margin: 50px auto;
}

.pointer-search-input {
  padding-left: 40px;
  padding-right: 80px;
  color: #6c757d;
}

.merchant-search-input {
  padding-left: 40px;
  padding-right: 80px;
  color: #6c757d;
}

.pointer-search-input::placeholder {
  color: var(--bs-light-text-emphasis);
  font-style: normal;
}

.merchant-search-input::placeholder {
  color: var(--bs-body-color);
  font-style: normal;
}

.pointer-search-icon, .pointer-scan-icon, .pointer-mic-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  z-index: 10;
}

.merchant-search-icon, .merchant-scan-icon, .merchant-mic-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  z-index: 10;
}

.pointer-search-icon {
  left: 10px;
}

.merchant-search-icon {
  left: 10px;
}

.pointer-scan-icon {
  right: 40px;
  cursor: pointer;
}

.merchant-scan-icon {
  right: 40px;
  cursor: pointer;
}

.pointer-mic-icon {
  right: 10px;
  cursor: pointer;
}

.merchant-mic-icon {
  right: 10px;
  cursor: pointer;
}

.pointer-mic-icon.pointer-listening {
  color: var(--bs-danger);
  animation: pointer-pulse 1.5s infinite;
}

.merchant-mic-icon.merchant-listening {
  color: var(--bs-danger);
  animation: pointer-pulse 1.5s infinite;
}

@keyframes pointer-pulse {
  0% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.2);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}

@keyframes merchant-pulse {
  0% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.2);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}

.pointer-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.merchant-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.app-container {
  height: 100%;
}

.tab-content {
  height: 100%;
}

.section {
  height: 100%;
  overflow-y: auto;
  padding: 20px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.section.active {
  display: block;
  opacity: 1;
}

.main-nav {
  height: 65px;
  background-color: var(--bs-body-bg);
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
}

#app-main-nav {
  transition: opacity 0.3s ease;
}

#app-main-nav.hidden {
  opacity: 0;
  pointer-events: none;
}

.nav-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-icon {
  color: var(--bs-primary-border-subtle);
  font-size: 24px;
  transition: all 0.3s ease;
}

.nav-text {
  font-size: 13px;
  color: var(--bs-body-color);
  transition: all 0.3s ease;
}

.nav-item.active .nav-icon, .nav-item.active .nav-text {
  color: var(--bs-primary);
}

.go-back-btn {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.main-nav.hidden {
  display: none;
}

#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.mapboxgl-control-container {
  display: none;
}

.zoom-control {
  position: absolute;
  bottom: 100px;
  right: 24px;
  z-index: 10001;
}

.zoom-button {
  padding: 6px;
  cursor: pointer;
}

.zoom-button:hover {
  background-color: var(--bs-primary-border-subtle);
}

.custom-field-label {
  font-weight: bold;
}

.icon-label {
  margin-right: 8px;
  color: #6c757d;
}

.alert-container {
  position: fixed;
  top: 100px;
  left: 16px;
  right: 16px;
  z-index: 1050;
}

#toast-container {
  position: fixed;
  top: 100px;
  left: 16px;
  right: 16px;
  z-index: 1050;
}

.app-chat-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
}

.chat-window {
  background: var(--bs-body-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.chat-header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--bs-primary-border-subtle);
  background: var(--bs-body-color);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.chat-header h5 {
  font-weight: 600;
  color: var(--bs-primary);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  /*padding: 2rem;*/
  scroll-behavior: smooth;
  background: var(--bs-primary-bg-subtle);
}

.pointerbot-message {
  max-width: 85%;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.3s ease-in-out;
}

.message-content {
  padding: 1.25rem;
  border-radius: 1.2rem;
  position: relative;
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
}

.user-message {
  margin-left: auto;
}

.user-message .message-content {
  background: var(--bs-primary);
  color: var(--bs-primary-bg-subtle);
  border-bottom-right-radius: 0.3rem;
}

.ai-message {
  margin-right: auto;
}

.ai-message .message-content {
  background: var(--bs-primary-bg-subtle);
  color: var(--bs-primary);
  border-color: var(--bs-primary-border-subtle);
  border: 1px;
  border-bottom-left-radius: 0.3rem;
}

.diagnostic-section {
  margin: 1.25rem 0;
  padding: 0.75rem;
  border-radius: 0.8rem;
  border: 1px;
  background: var(--bs-body-bg);
  box-shadow: var(--shadow-sm);
}

.diagnostic-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.diagnostic-heading i {
  color: var(--bs-dark);
}

.diagnostic-content {
  color: var(--bs-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.recommendation-section {
  background: var(--bs-body-color);
  padding: 1.25rem;
  border-radius: 0.8rem;
  margin-top: 1.25rem;
  border: 1px solid var(--bs-primary-border-subtle);
  box-shadow: var(--shadow-sm);
}

.recommendation-heading {
  color: var(--bs-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.recommendation-heading i {
  color: var(--bs-primary);
}

.chat-input {
  padding: 1.25rem;
  background: var(--bs-body-color);
  border-top: 1px solid #e5e7eb;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.btn-send {
  /*border-radius: 50%;*/
  /*width: 45px;*/
  /*height: 45px;*/
  padding: 0;
  /*display: flex;*/
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border: none;
  /*margin-right: 0.25rem;*/
  /*transition: all 0.2s ease;*/
}

.btn-send:hover {
  background: var(--bs-primary-bg-subtle);
}

.btn-send:disabled {
  background: var(--bs-secondary-bg-subtle);
  transform: none;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.quick-action-btn {
  background: var(--bs-primary-bg-subtle);
  border: 1px solid var(--bs-primary-border-subtle);
  border-radius: 32px;
  padding: 0.75rem 1.25rem;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--bs-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-action-btn i {
  color: #0054ad;
}

.quick-action-btn:hover {
  background: var(--bs-primary);
  color: var(--bs-primary-bg-subtle);
  border-color: var(--bs-primary-bg-subtle);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.typing-indicator {
  display: flex;
  gap: 0.4rem;
  padding: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: var(--bs-primary-border-subtle);
  border-radius: 50%;
  animation: typingAnimation 1.4s infinite;
}

.book-repair-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-color);
  color: var(--bs-light);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.8rem;
  margin-top: 1.25rem;
  transition: all 0.2s ease;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}

.book-repair-btn:hover {
  background: var(--bs-primary);
  color: var(--bs-light);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@keyframes typingAnimation {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .app-chat-container {
    margin: 0;
    padding: 0.5rem;
  }
}

@media (max-width: 768px) {
  .chat-window {
    height: calc(100vh - 40px);
    border-radius: 0.75rem;
  }
}

@media (max-width: 768px) {
  .message {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .quick-action-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

.chat-messages::-webkit-scrollbar {
  width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.merchant-card {
  width: 1080px;
  height: 1080px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.merchant-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--primary-color);
  opacity: 0.1;
  border-radius: 0 0 0 100%;
}

.merchant-card-content {
  padding: 60px;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-left-content {
  max-width: 70%;
}

.business-name {
  color: var(--primary-color);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  word-wrap: break-word;
}

.specialization {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.merchant-id {
  font-size: 1.25rem;
  color: #666;
  font-family: monospace;
  margin-bottom: 1rem;
}

.website {
  font-size: 1.25rem;
  color: var(--primary-color);
  text-decoration: none;
  margin-bottom: 1rem;
}

.qr-code-container {
  position: absolute;
  top: 60px;
  right: 60px;
  background: var(--bs-body-bg);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-preview-wrapper {
  overflow: auto;
  max-height: 80vh;
}

.card-actions {
  position: sticky;
  bottom: 0;
  background: var(--bs-body-bg);
  padding: 1rem;
  border-top: 1px solid #dee2e6;
}

.verification-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.verification-spinner .spinner-border {
  width: 3rem;
  height: 3rem;
  color: var(--bs-primary);
}

.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #ccddef;
  padding: 20px;
}

.card-content {
  z-index: 2;
}

.business-name {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary);
  margin: 0 0 10px 0;
}

.specialization {
  font-size: 18px;
  color: #666;
  margin: 0 0 20px 0;
}

.qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

#merchantQRCode {
  padding: 15px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 84, 173, 0.1);
}

.scan-text {
  font-size: 12px;
  color: var(--primary);
  text-align: center;
  max-width: 150px;
}

.powered-by {
  position: absolute;
  bottom: 20px;
  left: 40px;
  font-size: 12px;
  color: #888;
  z-index: 2;
}

.download-section {
  margin-top: 20px;
  text-align: center;
}

.download-btn {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #004390;
}

.intercom-lightweight-app {
  display: none;
}

#intercom-container {
  display: none;
}

.intercom-launcher {
  display: none !important;
}

.help-search-box {
  max-width: 600px;
  margin: 2rem auto;
}

.help-search-input {
  border-radius: 50px;
  padding: 1rem 1.5rem;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.help-category-card {
  border: none;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.help-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.help-category-icon {
  font-size: 2rem;
  color: var(--help-primary-color);
  margin-bottom: 1rem;
}

.help-faq-button {
  padding: 1.25rem;
  font-weight: 500;
  text-align: left;
  width: 100%;
  background: none;
  border: none;
  color: var(--help-text-color);
}

.help-faq-button:hover {
  color: var(--help-primary-color);
}

.help-faq-content {
  padding: 0 1.25rem 1.25rem;
}

.help-header {
  background: linear-gradient(135deg, var(--help-primary-color), var(--help-secondary-color));
  padding: 3rem 1rem;
  color: white;
}

.repair-status-card {
  border: 1px;
  padding: 12px;
  border-color: var(--bs-primary-border-subtle);
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  background: var(--bs-body-bg);
}

.repair-status-card-header {
  background: var(--bs-primary-bg-subtle);
  border-radius: 12px 12px 0 0;
  margin-bottom: 16px;
}

.order-number {
  font-size: 23px;
  font-weight: 700;
  color: var(--bs-dark);
}

.repair-status-badge {
  padding: 0.5rem 1rem;
  border-radius: 32px;
  font-size: 0.9rem;
  font-weight: 500;
}

.info-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--bs-light-text-emphasis);
}

.info-item i {
  width: 20px;
  color: var(--bs-light-text-emphasis);
}

.description {
  color: var(--bs-light-text-emphasis);
  line-height: 1.6;
  border-left: 3px solid #e9ecef;
  padding-left: 1rem;
}

.details-toggle {
  color: var(--bs-primary);
  font-weight: 500;
}

.details-section {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--bs-body-bg);
  border-radius: 8px;
}

.form-floating {
  margin-bottom: 1rem;
}

.ev-status-badge {
  background: var(--bs-success);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
}

.model-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bs-body-bg);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.model-suggestion-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.model-suggestion-item:hover {
  background-color: var(--light-blue);
}

.fpai-header {
  height: var(--header-height);
  background: var(--bs-body-bg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.fpai-chat-container {
  height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  padding: 1rem;
  padding-bottom: calc(var(--footer-height) + 2rem);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.fpai-messages-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--footer-height);
}

.fpai-quick-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: var(--bs-body-bg);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.fpai-quick-action-btn {
  background: var(--bs-body-color);
  border: 1px solid var(--bs-primary-border-subtle);
  border-radius: 32px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.fpai-quick-action-btn:hover {
  background: #0054ad;
  color: var(--bs-primary-bg-subtle);
  border-color: #0054ad;
}

.fpai-message {
  max-width: 85%;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fpai-message.show {
  opacity: 1;
  transform: translateY(0);
}

.fpai-user-message {
  margin-left: auto;
}

.fpai-ai-message {
  margin-right: auto;
}

.fpai-message-content {
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.fpai-user-message .fpai-message-content {
  background: var(--bs-primary);
  color: var(--bs-primary-bg-subtle);
  border-top-right-radius: 0.2rem;
}

.fpai-ai-message .fpai-message-content {
  background: var(--bs-body-bg);
  border: 1px;
  border-color: var(--bs-primary-bg-subtle);
  border-top-left-radius: 0.2rem;
  margin-bottom: 100px;
}

.fpai-typing-indicator {
  display: none;
  padding: 1rem;
  background: var(--bs-primary-bg-subtle);
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
  margin-right: auto;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fpai-typing-indicator.show {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 1;
  transform: translateY(0);
}

.fpai-typing-indicator span {
  width: 8px;
  height: 8px;
  background: var(--bs-primary);
  border-radius: 50%;
  display: inline-block;
  animation: bounce 1.4s infinite ease-in-out;
}

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

.fpai-typing-indicator span:nth-child(2) {
  animation-delay: -0.16s;
}

#ai-message-heading {
  font-size: 20px;
  margin-bottom: 0.75rem;
  color: var(--bs-primary);
}

.fpai-input-container {
  height: var(--footer-height);
  background: var(--bs-body-bg);
  border-top: 1px solid var(--bs-primary-bg-subtle);
  padding: 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.fpai-input-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.fpai-input-field {
  border-radius: 1.5rem;
  padding: 0.75rem 6rem 0.75rem 1rem;
  border: 1px solid #dee2e6;
  flex-grow: 1;
  resize: none;
  height: 45px;
  transition: border-color 0.3s ease;
}

.fpai-input-field:focus {
  outline: none;
  border-color: var(--bs-primary);
}

.fpai-button-group {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 0.25rem;
  padding: 0 0.5rem;
}

.fpai-voice-button, .fpai-send-button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--primary-color);
}

.fpai-voice-button:hover, .fpai-send-button:hover {
  background: rgba(0,123,255,0.1);
}

.fpai-voice-button.recording {
  color: var(--bs-danger);
  animation: pulse 1.5s infinite;
}

.fpai-disclaimer {
  text-align: center;
  color: var(--secondary-color);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.error-message {
  color: var(--danger-color);
}

.fpai-diagnostic-section {
  margin-bottom: 1rem;
}

.fpai-diagnostic-section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.fpai-urgency-high {
  border-left: 4px solid var(--danger-color);
  padding-left: 1rem;
}

.fpai-urgency-medium {
  border-left: 4px solid var(--warning-color);
  padding-left: 1rem;
}

.fpai-urgency-low {
  border-left: 4px solid var(--success-color);
  padding-left: 1rem;
}

.book-repair-btn {
  width: 100%;
  background-color: var(--bs-primary);
  color: var(--bs-primary-bg-subtle);
  border-radius: 32px;
  margin-top: 1rem;
}

.main-activities-container {
  background-color: #f8f9fe;
  border-radius: 16px;
  padding: 8px;
}

.main-activities-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.main-activities-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.main-activities-more-link {
  color: var(--bs-body-color);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.main-activities-more-link:hover {
  color: var(--bs-primary);
}

.main-activities-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}

.main-activities-item:hover {
  transform: translateY(-5px);
}

.main-activities-additional {
  display: none;
  animation: mainActivitiesFadeIn 0.5s ease;
}

@keyframes mainActivitiesFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-activities-chevron {
  transition: transform 0.3s ease;
}

.main-activities-chevron.rotated {
  transform: rotate(-180deg);
}

.digital-wallet-header {
  background: var(--bs-primary);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.digital-wallet-document-preview {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 16px;
}

.digital-wallet-document-card {
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: var(--bs-body-bg);
  overflow: hidden;
  height: 100%;
  margin-bottom: 8px;
}

.digital-wallet-document-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.digital-wallet-document-card .card-body {
  padding: 1.5rem;
}

.digital-wallet-upload-area {
  border: 2px dashed var(--bs-primary);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  background: var(--bs-body-bg);
  transition: all 0.3s ease;
  position: relative;
}

.digital-wallet-upload-area:hover {
  background: var(--bs-primary-bg-subtle);
  border-color: var(--bs-primary);
}

.digital-wallet-upload-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  background: var(--bs-body-bg);
  border-radius: 8px;
  display: none;
}

.digital-wallet-upload-preview.active {
  display: block;
}

.digital-wallet-upload-icon {
  color: var(--bs-primary);
  margin-bottom: 1rem;
}

.digital-wallet-document-type-badge {
  background: var(--bs-primary-bg-subtle);
  color: var(--bs-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.digital-wallet-category-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.digital-wallet-category-tab {
  padding: 6.4px 24px;
  color: #0054ad;
  background: var(--bs-body-bg);
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 2px solid #0054ad;
}

.digital-wallet-category-tab.active {
  background: var(--bs-primary);
  color: white;
}

.digital-wallet-category-tab:hover:not(.active) {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
}

.digital-wallet-document-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.digital-wallet-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.digital-wallet-stat-card {
  background: var(--bs-body-bg);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.digital-wallet-stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--bs-primary);
}

.remove-preview-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--bs-danger);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.remove-preview-btn.active {
  display: flex;
}

@media (max-width: 768px) {
  .digital-wallet-document-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .digital-wallet-container {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .digital-wallet-stats {
    grid-template-columns: 1fr 1fr;
  }
}

#confirmDelete {
  margin-bottom: 8px;
}

#cancelDelete {
  margin-bottom: 8px;
}

.finder-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.finder-controls {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 1000;
  background: white;
  border-radius: 8px;
  padding: 0px;
}

.finder-navigation {
  position: absolute;
  top: 90px;
  left: 20px;
  right: 20px;
  z-index: 1000;
  background: var(--bs-body-bg);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 16px;
  display: none;
}

.finder-search-group {
  position: relative;
  margin-bottom: 10px;
}

.finder-search-icons {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 5px;
}

.finder-icon-button {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s;
}

.finder-icon-button:hover {
  color: #000;
}

.finder-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  display: none;
}

.finder-route-info {
  margin-top: 10px;
  padding: 10px;
  background: var(--bs-primary-bg-subtle);
  border-radius: 4px;
  display: none;
}

.finder-engine-controls {
  position: absolute;
  bottom: 160px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: flex-start;
}

.finder-zoom-controls {
  position: absolute;
  bottom: 160px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.finder-zoom-button {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: white;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.finder-zoom-button:hover {
  background-color: #f8f9fa;
}

#finder-navigation-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  margin-top: 0px;
}

#finder-lorry-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  margin-top: 0px;
}

#finder-gas-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  margin-top: 0px;
}

#finder-repair-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  margin-top: 0px;
}

#finder-more-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  margin-top: 0px;
}

.finder-button {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lorry-marker {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin: 60px;
  background: var(--bs-info-border-subtle);
  box-shadow: 0 8px 15px rgba(74, 144, 226, 0.3), 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--bs-light);
  outline: 2px solid var(--bs-primary);
  transform: translateZ(0);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lorry-marker::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 24px;
  height: 8px;
  background: rgba(74, 144, 226, 0.3);
  border-radius: 50%;
  transform: translateX(-50%) scale(0.8);
  filter: blur(4px);
  z-index: -1;
}

.lorry-marker .fas {
  color: var(--bs-primary);
  font-size: 24px;
}

.lorry-marker::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  width: 15px;
  height: 15px;
  background: var(--bs-primary);
  border: 2px solid var(--bs-light);
  border-radius: 50%;
  transform: translateX(-50%);
}

.lorry-marker:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 20px rgba(74, 144, 226, 0.4), 0 6px 10px rgba(0,0,0,0.15);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.lorry-marker.active {
  animation: pulse 2s infinite;
}

.lorry-info {
  padding: 10px;
  min-width: 200px;
}

.lorry-info h5 {
  margin: 0 0 10px 0;
  color: var(--bs-primary);
}

.lorry-info p {
  margin: 5px 0;
  font-size: 14px;
}

.lorry-info i {
  width: 20px;
  color: var(--bs-secondary);
}

.booking-modal .modal-header {
  background-color: var(--bs-primary);
  color: var(--bs-body-bg);
}

.booking-modal .driver-info {
  background: var(--bs-primary-bg-subtle);
  padding: 15px;
  border-radius: 4px;
}

.driver-profile {
  text-align: center;
  padding: 15px;
}

.driver-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.driver-stats {
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 15px 0;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--bs-primary);
}

.stat-label {
  font-size: 0.875rem;
  color: #6c757d;
}

.detail-item {
  display: flex;
  align-items: center;
  padding: 8px;
  background: #f8f9fa;
  border-radius: 4px;
}

.availability-container {
  width: 100%;
  max-width: 500px;
  background-color: var(--bs-body-bg);
  padding: 16px;
  border-radius: 16px;
}

.status-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.vehicle-details {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-primary);
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--bs-body-bg);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--bs-primary);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.password-strength {
  height: 6px;
  margin-top: 5px;
  transition: width 0.3s ease;
  border-radius: 3px;
}

.strength-weak {
  background-color: var(--bs-danger);
}

.strength-medium {
  background-color: var(--bs-warning);
}

.strength-strong {
  background-color: var(--bs-success);
}

.checkbox-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.checkbox-container .form-check {
  flex-basis: calc(50% - 0.25rem);
}

#copyButton {
  transition: all 0.3s ease;
}

#copyButton.copied {
  background-color: var(--bs-success);
  color: var(--bs-light);
}

.toast-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1100;
}

#toast-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1100;
}

.app-auth-container {
  max-width: 450px;
  margin: 5vh auto;
  padding: 40px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.app-auth-section {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.app-auth-section.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 10;
}

.app-auth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  padding: 12px;
  font-weight: 500;
}

.app-auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 25px 0;
  color: var(--secondary-color);
}

.app-auth-divider::before, .app-auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}

.app-auth-divider span {
  padding: 0 15px;
  background: white;
}

.iti {
  width: 100%;
}

@media (max-width: 480px) {
  .app-auth-container {
    width: 95%;
    margin: 2vh auto;
    padding: 20px;
  }
}

* {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.availability-container {
  max-width: 500px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-primary);
  transition: .4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--bs-primary-bg-subtle);
  transition: .4s;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--bs-primary);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.max-load-input {
  transition: all 0.3s ease;
}

.max-load-input:focus {
  outline: none;
  border-bottom-color: var(--bs-primary);
}

.availableDriverListCard {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.request-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px;
  border-radius: 16px;
  border-color: var(--bs-info-border-subtle);
}

.request-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.request-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: var(--bs-primary);
  color: var(--bs-info-bg-subtle);
}

.request-card-header h5 {
  margin: 0;
  font-weight: 600;
}

.request-urgency-badge {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
}

.request-card-body {
  padding: 1.5rem;
}

.request-section {
  margin-bottom: 1rem;
}

.request-section-title {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.request-section-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.request-section-content i {
  color: var(--bs-primary);
  font-size: 1.2rem;
  width: 25px;
  text-align: center;
}

.request-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .request-details-grid {
    grid-template-columns: 1fr;
  }
}

.request-status-section {
  background-color: var(--bs-body-bg);
  border-radius: 8px;
  padding: 1rem;
}

.request-dateline {
  font-weight: 500;
  color: var(--bs-info);
}

.booking-card {
  transition: transform 0.3s;
}

.booking-card:hover {
  transform: scale(1.02);
}

.status-badge {
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
}

.profile-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 576px) {
  .swal2-actions {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .swal2-confirm, .swal2-cancel {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.5rem;
    border-radius: 32px;
  }
}

.swal2-popup {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 16px;
}

.swal-primary-border {
  border: 1px solid rgba(255,255,255,0.25) !important;
}

.repair-status-badge {
  color: var(--bs-light);
}

.request-card-header {
  background: var(--bs-info-bg-subtle);
}

.request-card {
  transition: transform 0.2s;
}

.request-card:hover {
  transform: scale(1.02);
}

.card-header {
  background-color: rgba(0, 123, 255, 0.1);
}

.request-urgency-badge {
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .card-body {
    padding: 0.75rem;
  }
}

@media (max-width: 768px) {
  .text-xs {
    font-size: 0.6rem;
  }
}

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

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

.auth-container {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-card {
  background: var(--bs-body-bg);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h2 {
  font-weight: 700;
  color: var(--primary-color);
}

.form-floating {
  margin-bottom: 1rem;
}

.form-floating > label {
  transition: all 0.3s ease;
}

.social-login {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F0F0F5;
  border: none;
  padding: 0.75rem;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

.social-btn:hover {
  background-color: #E0E0E5;
}

.social-btn img {
  width: 24px;
  margin-right: 0.5rem;
}

.auth-switch {
  text-align: center;
  margin-top: 1.5rem;
}

.iti {
  width: 100%;
}

.login-divider {
  position: relative;
  text-align: center;
  margin: 1.5rem 0;
  color: #A0A0A0;
}

.login-divider::before, .login-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background-color: #E0E0E0;
}

.login-divider::before {
  left: 0;
}

.login-divider::after {
  right: 0;
}

.back-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  text-decoration: none;
}

#finder-map {
  height: 100vh;
  width: 100%;
}

.app-calculator-container {
  display: flex;
  max-width: 1200px;
  margin: 20px auto;
  gap: 20px;
}

.calculator-container {
  flex: 1;
  max-width: 400px;
  background-color: var(--bs-body-bg);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
}

.calculator-header {
  background-color: var(--bs-primary);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calculator-icons {
  display: flex;
  gap: 15px;
}

.calculator-icon {
  background-color: var(--secondary-color);
  color: white;
  padding: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s;
  cursor: pointer;
}

.calculator-display {
  background-color: var(--bs-body-bg);
  padding: 30px;
  text-align: right;
  font-size: 20px;
  border-bottom: 1px solid var(--bs-primary);
}

.calculator-keys {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 20px;
}

.calculator-keys button {
  background-color: var(--bs-primary-bg-subtle);
  color: white;
  border: 1px;
  padding: 15px;
  font-size: 18px;
  border-radius: 10px;
  transition: all 0.2s;
}

.calculator-keys button:active {
  animation: vibrate 0.3s;
  transform: scale(0.95);
}

.calculator-keys .operator {
  background-color: var(--bs-secondary);
}

.calculator-keys .special {
  background-color: var(--bs-primary);
}

.history-section {
  background-color: var(--bs-body-bg);
  padding: 15px;
  max-height: 500px;
  overflow-y: auto;
}

@keyframes vibrate {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

@media (max-width: 1024px) {
  .app-calculator-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1024px) {
  .calculator-calculator-container {
    width: 95%;
    max-width: none;
    margin: 10px auto;
  }
}

.features-container {
  max-width: 1200px;
  padding: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bs-primary);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.bento-card {
  background: var(--bs-body-bg);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.bento-card-icon {
  font-size: 2.5rem;
  color: var(--bs-primary);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.bento-card-placeholder {
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 0.4;
  font-size: 6rem;
  color: var(--bs-primary);
  z-index: 1;
}

.bento-card-description {
  font-size: 0.9rem;
  color: var(--bs-secondary);
  flex-grow: 1;
}

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

@media (max-width: 768px) {
  .bento-card {
    margin-bottom: 1rem;
  }
}

.about-section {
  background-color: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.value-icon {
  color: var(--primary-color);
  font-size: 3rem;
  margin-bottom: 15px;
}

.ceo-message {
  font-style: italic;
  position: relative;
  padding: 16px;
  background-color: var(--bs-body-bg);
  border-left: 4px solid var(--primary-color);
}

.ceo-signature {
  margin-top: 20px;
  text-align: right;
}

.contact-icon {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-method {
  text-align: center;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-10px);
}

.support-category {
  background-color: var(--bs-body-bg);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.support-icon {
  color: var(--bs-primary);
  font-size: 3rem;
  margin-bottom: 15px;
}

.support-faq {
  background-color: #f8f9fa;
  border-left: #0054ad;
  border: 4px;
  padding: 15px;
  margin-bottom: 15px;
}

.search-section {
  background-color: var(--bs-body-bg);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

* {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.action-button {
  background-color: var(--bs-primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  margin: 5px;
  transition: transform 0.15s ease;
}

.action-button:active {
  transform: scale(0.95);
}

.bottom-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100%;
  background-color: var(--bs-body-bg);
  border-top-left-radius: 32px;
  border-top-right-radius: 22px;
  border-top: 1px solid var(--bs-primary-border-subtle);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: bottom 0.4s cubic-bezier(0.36, 0.66, 0.04, 1);
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 16px;
  z-index: 1050;
  overflow-y: auto;
  max-height: 80vh;
  touch-action: pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.bottom-sheet::-webkit-scrollbar {
  display: none;
}

.bottom-sheet.sheet-visible {
  bottom: 0;
}

.bottom-sheet-handle {
  width: 40px;
  height: 5px;
  background-color: var(--bs-primary-border-subtle);
  margin: 0 auto 20px;
  border-radius: 3px;
  cursor: grab;
  position: sticky;
  top: 0;
  z-index: 2;
}

.sheet-content {
  display: none;
  min-height: 100%;
  padding-bottom: 20px;
}

.sheet-content.sheet-active {
  display: block;
}

.bottom-sheet .clickable {
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.bottom-sheet .drag-disabled {
  pointer-events: auto !important;
}

.bottom-sheet button, .bottom-sheet input, .bottom-sheet a, .bottom-sheet .form-check-input, .bottom-sheet .list-group-item {
  pointer-events: auto;
}

.sheet-header {
  position: sticky;
  top: 0;
  background-color: var(--bs-body-bg);
  z-index: 1;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.driver-section-header {
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-info));
  color: white;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.driver-section-stats-card {
  background: var(--bs-body-bg);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.driver-section-stats-card:hover {
  transform: translateY(-5px);
}

.driver-section-stats-icon {
  width: 48px;
  height: 48px;
  background: var(--bs-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.driver-section-booking-card {
  border-radius: 1rem;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.driver-section-booking-card:hover {
  transform: translateY(-5px);
}

.driver-section-booking-card.pending {
  border-left: 4px solid var(--bs-warning);
}

.driver-section-booking-card.active {
  border-left: 4px solid var(--bs-success);
}

.driver-section-booking-card.completed {
  border-left: 4px solid var(--bs-info);
}

.driver-section-status-badge {
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.driver-section-availability-toggle {
  width: 60px;
  height: 30px;
}

.driver-section-nav-tabs .nav-link {
  color: var(--bs-dark);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.driver-section-nav-tabs .nav-link.active {
  background-color: var(--bs-primary);
  color: var(--bs-body-bg);
}

.driver-section-tab-content {
  background: var(--bs-body-bg);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 1rem;
}

.swal2-toast-custom {
  color: var(--bs-body-bg) !important;
  border-radius: 1rem !important;
}

.swal2-notification-custom {
  border-radius: 1rem !important;
}

@media (max-width: 768px) {
  .driver-section-header {
    padding: 1rem 0;
  }
}

@media (max-width: 768px) {
  .driver-section-stats-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .driver-section-nav-tabs .nav-link {
    padding: 0.75rem 1rem;
  }
}

.share-grid {
  background: var(--bs-body-bg);
  border-radius: 16px;
}

.share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--bs-primary-bg-subtle);
  gap: 0.8rem;
  background: var(--bs-body-bg);
}

.share-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.share-option i {
  font-size: 24px;
  margin-bottom: 0.5rem;
}

.share-option span {
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

.whatsapp:hover {
  background: #e8faf1;
  color: #25D366;
}

.telegram:hover {
  background: #e8f4ff;
  color: #0088cc;
}

.messenger:hover {
  background: #e8f0ff;
  color: #006AFF;
}

.facebook:hover {
  background: #e8f0ff;
  color: #1877F2;
}

.twitter:hover {
  background: #e8f0ff;
  color: #008cb2;
}

.sms:hover {
  background: #fff0e8;
  color: #ff6f2d;
}

.share-title {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #eef2f7;
}

.repair-status-container {
  background-color: var(--bs-body-bg);
  min-height: 100vh;
}

.status-header {
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.header-content {
  color: white;
}

.header-content h1 {
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 2rem;
}

.status-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.summary-card {
  background: var(--bs-body-bg);
  padding: 1.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: transform 0.2s;
}

.summary-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

.summary-card i {
  font-size: 2rem;
}

.summary-info {
  display: flex;
  flex-direction: column;
}

.summary-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.summary-value {
  font-size: 1.5rem;
  font-weight: 600;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

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

.repair-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.repair-status-card {
  background: var(--bs-body-bg);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--bs-gray-200);
}

.repair-status-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.repair-status-card-header {
  background: var(--bs-primary-border-subtle);
  border-bottom: 1px solid var(--bs-gray-200);
}

.order-number {
  font-weight: 600;
  color: var(--bs-primary);
  font-size: 1.1rem;
}

.repair-type-badge {
  color: var(--bs-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.repair-status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.repair-status-badge i {
  font-size: 0.875rem;
}

.repair-status-card-content {
  padding: 8px;
}

.merchant-section {
  background: var(--bs-body-bg);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.merchant-title {
  font-weight: 500;
  font-size: 0.875rem;
}

.merchant-id {
  font-weight: 600;
  color: var(--bs-gray-900);
}

.vehicle-section {
  margin-bottom: 1.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-item i {
  color: var(--bs-primary);
  width: 1rem;
  text-align: center;
}

.section-title {
  font-weight: 600;
  color: var(--bs-gray-700);
  margin-bottom: 0.75rem;
}

.description-section, .notes-section {
  margin-bottom: 1.5rem;
}

.description-content, .notes-content {
  color: var(--bs-gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.action-section {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bs-gray-200);
}

.history-section {
  background: var(--bs-body-bg);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.history-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bs-gray-900);
  margin-bottom: 1.5rem;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.history-item {
  background: var(--bs-body-bg);
  border-radius: 0.75rem;
  padding: 1rem;
  transition: transform 0.2s;
}

.history-item:hover {
  transform: translateX(5px);
}

.history-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.history-order-number {
  font-weight: 600;
  color: var(--bs-primary);
}

.history-status {
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.history-status i {
  font-size: 0.75rem;
}

.history-item-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.history-service-type {
  font-weight: 500;
  color: var(--bs-body-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.history-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--bs-body-color);
}

.history-details span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.history-details i {
  color: var(--bs-primary);
}

@media (max-width: 768px) {
  .repair-status-container {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .status-header {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .content-grid {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .repair-status-grid {
    grid-template-columns: 1fr;
  }
}

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

.btn-pulse {
  animation: pulse 1s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.repair-status-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* status */

.status-dashboard-card {
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease-in-out;
}

.status-dashboard-card:hover {
  transform: translateY(-2px);
}

.status-dashboard-card-header {
  background: var(--bs-primary-border-subtle);
  border-bottom: 1px solid var(--bs-border-color);
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 1rem;
}

.status-dashboard-order-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bs-dark);
}

.status-dashboard-type-badge {
  background: var(--bs-info);
  color: var(--bs-light);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
}

.status-dashboard-status-badge {
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.status-dashboard-card-body {
  padding: 1.5rem;
}

.status-dashboard-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bs-border-color);
}

.status-dashboard-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.status-dashboard-section-title {
  color: var(--bs-body-color);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-dashboard-merchant {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.status-dashboard-merchant-id {
  font-weight: 500;
  color: var(--bs-primary);
}

.status-dashboard-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.status-dashboard-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--bs-body-color);
}

.status-dashboard-info-item i {
  color: var(--bs-primary);
}

.status-dashboard-description, .status-dashboard-notes {
  color: var(--bs-body-color);
  line-height: 1.6;
}

.status-dashboard-action {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}

.status-dashboard-history {
  background: var(--bs-body-bg);
  border-radius: 0.5rem;
  border: 1px var(--bs-primary-border-subtle);
  padding: 1.5rem;
}

.status-dashboard-history-title {
  color: var(--bs-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.status-dashboard-history-item {
  background: var(--bs-body-bg);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: transform 0.2s ease-in-out;
}

.status-dashboard-history-item:hover {
  transform: translateY(-2px);
}

.status-dashboard-history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.status-dashboard-history-number {
  font-weight: 600;
  color: var(--bs-primary);
}

.status-dashboard-history-body {
  display: grid;
  gap: 0.75rem;
}

.status-dashboard-service-type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bs-body-color);
  font-weight: 500;
}

.status-dashboard-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--bs-body-color);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .status-dashboard-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .status-dashboard-history-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Merchant */

.merchant-dashboard-card {
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--bs-primary-bg-subtle);
  height: 100%;
  background: var(--bs-body-bg);
}

.merchant-dashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.merchant-dashboard-card .card-header {
  background: var(--bs-body-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.merchant-dashboard-card .card-body {
  padding: 1.25rem;
}

.merchant-dashboard-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

.merchant-dashboard-status-badge i {
  margin-right: 0.375rem;
}

.merchant-dashboard-urgency-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bs-danger-bg-subtle);
}

.merchant-dashboard-urgency-badge i {
  font-size: 0.875rem;
}

.merchant-dashboard-detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.merchant-dashboard-detail-item:last-child {
  margin-bottom: 0;
}

.merchant-dashboard-detail-item i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  border-radius: 6px;
  background: var(--bs-body-bg);
  color: var(--bs-primary);
}

.merchant-dashboard-detail-section {
  background: var(--bs-body-bg);
  transition: box-shadow 0.2s;
}

.merchant-dashboard-detail-section:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.merchant-dashboard-detail-section h6 {
  color: var(--bs-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.merchant-dashboard-description {
  color: var(--bs-body-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

.merchant-dashboard-image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.merchant-dashboard-gallery-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.merchant-dashboard-gallery-image:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.merchant-dashboard-image-modal .swal2-popup {
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
}

.merchant-dashboard-image-modal .swal2-content {
  padding: 0;
}

.merchant-dashboard-image-modal img {
  max-height: 80vh;
  object-fit: contain;
}

#status-update-modal .modal-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#status-update-modal .modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
}

#status-update-modal .modal-body {
  padding: 1.5rem;
}

#status-update-modal .modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
}

#status-update-modal .form-label {
  font-weight: 500;
  color: #495057;
  margin-bottom: 0.5rem;
}

#status-update-modal .form-control, #status-update-modal .form-select {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.625rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#status-update-modal .form-control:focus, #status-update-modal .form-select:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

#status-update-modal textarea {
  resize: vertical;
  min-height: 100px;
}

#request-details-modal .modal-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#request-details-modal .modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
}

#request-details-modal .modal-body {
  padding: 1.5rem;
}

#request-details-modal .modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
}

.cursor-pointer {
  cursor: pointer;
}

.hover-shadow {
  transition: box-shadow 0.2s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .merchant-dashboard-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .merchant-dashboard-image-gallery {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

@media (max-width: 768px) {
  .merchant-dashboard-gallery-image {
    height: 120px;
  }
}

@media (max-width: 768px) {
  #request-details-modal .modal-body {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  #status-update-modal .modal-body {
    padding: 1rem;
  }
}

@media (min-width: 768px) {
  .merchant-dashboard-detail-section {
    height: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.merchant-dashboard-card {
  animation: fadeIn 0.3s ease-out;
}

.loading-spinner {
  width: 3rem;
  height: 3rem;
  border-width: 0.25rem;
}

.text-xs {
  font-size: 0.75rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-state i {
  font-size: 3rem;
  color: #dee2e6;
  margin-bottom: 1rem;
}

.empty-state p {
  color: #6c757d;
  margin-bottom: 0;
}

/* EV Charge */

/* Status */

.repair-stat-card {
  border-left: 4px solid;
  transition: transform 0.2s;
}

.repair-stat-card:hover {
  transform: translateY(-3px);
}

.repair-card {
  transition: all 0.3s ease;
  border: 1px solid var(--bs-primary-bg-subtle);
}

.repair-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.merchant-badge {
  background: var(--bs-primary);
  color: var(--bs-primary-bg-subtle);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-image {
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.merchant-notes {
  background: var(--bs-body-bg);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.image-grid-item {
  position: relative;
  padding-bottom: 100%;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.125);
}

.image-grid-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-grid-item:hover img {
  transform: scale(1.05);
}

.swal2-popup.fullscreen-image {
  padding: 0;
  width: 100% !important;
  max-width: none !important;
  background: rgba(0,0,0,0.9) !important;
}

.swal2-popup.fullscreen-image .swal2-image {
  max-width: 100%;
  max-height: 100vh;
  margin: 0;
  object-fit: contain;
}

.swal2-popup.fullscreen-image .swal2-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  color: white;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}

/* Gas */

.gas-status-badge {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.merchant-badge {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.gas-status-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.gas-status-badge i {
  font-size: 1rem;
}

.gas-status-badge.pending {
  background: var(--bs-warning);
  color: var(--bs-body-color);
}

.gas-status-badge.enRoute {
  background: var(--bs-info);
  color: var(--bs-white);
}

.gas-status-badge.delivered {
  background: var(--bs-success);
  color: var(--bs-white);
}

.gas-status-badge.cancelled {
  background: var(--bs-danger);
  color: var(--bs-white);
}

.gas-request-card {
  transition: all 0.3s ease;
  border: 1px solid var(--bs-primary-border-subtle);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.gas-request-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gas-stat-card {
  border-left: 4px solid;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.gas-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gas-timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
}

.gas-timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, var(--bs-primary), transparent);
}

.gas-timeline-dot {
  position: absolute;
  left: -9px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bs-body-bg);
  border: 2px solid var(--bs-primary);
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
  transition: all 0.3s ease;
}

.gas-timeline-dot:hover {
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.2);
}

/* EvStar */

.ev-charging-status-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.ev-charging-status-badge.pending {
  background-color: var(--bs-warning);
  color: var(--bs-dark);
}

.ev-charging-status-badge.enRoute {
  background-color: var(--bs-info);
  color: var(--bs-white);
}

.ev-charging-status-badge.charging {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}

.ev-charging-status-badge.completed {
  background-color: var(--bs-success);
  color: var(--bs-white);
}

.ev-charging-status-badge.cancelled {
  background-color: var(--bs-danger);
  color: var(--bs-white);
}

.ev-charging-request-card {
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--bs-body-bg);
  border: 1px solid var(--bs-primary-border-subtle);
}

.ev-charging-request-card:hover {
  transform: translateY(-3px);
}

.ev-charging-request-card .badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ev-charging-battery-indicator {
  width: 100%;
  max-width: 200px;
}

.ev-charging-battery-indicator .progress {
  height: 8px;
  margin-bottom: 0.25rem;
  border-radius: 10px;
  background-color: var(--bs-gray-200);
}

.ev-charging-battery-indicator .progress-bar {
  border-radius: 10px;
}

.ev-charging-timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.ev-charging-timeline-item:last-child {
  margin-bottom: 0;
}

.ev-charging-timeline-item::before {
  content: '';
  position: absolute;
  left: 0.4rem;
  top: 1.5rem;
  bottom: -1.5rem;
  width: 2px;
  background-color: var(--bs-primary);
}

.ev-charging-timeline-item:last-child::before {
  display: none;
}

.ev-charging-timeline-dot {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--bs-primary);
  border: 2px solid var(--bs-white);
  box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.2);
}

.ev-charging-colored-toast {
  border-radius: 10px !important;
}

.ev-charging-border-radius-32 {
  border-radius: 32px !important;
}

.ev-charging-badge {
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 0.5rem 1rem;
  border-radius: 15px;
}

.ev-charging-card-title {
  color: var(--bs-gray-900);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.ev-charging-text-muted {
  color: var(--bs-gray-600) !important;
}

.ev-charging-details-text {
  word-break: break-word;
  white-space: normal;
  max-width: 100%;
  padding: 0.75rem;
}

.ev-charging-modal-section {
  margin-bottom: 2rem;
}

.ev-charging-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-direction: row-reverse;
}

.dashboard-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.stats-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: transform 0.2s;
}

.stats-card:hover {
  transform: translateY(-2px);
}

.gas-status-badge {
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
}

.gas-status-badge.pending {
  background-color: var(--bs-warning);
  color: #000;
}

.gas-status-badge.enRoute {
  background-color: var(--bs-info);
  color: #fff;
}

.gas-status-badge.delivered {
  background-color: var(--bs-success);
  color: #fff;
}

.gas-status-badge.cancelled {
  background-color: var(--bs-danger);
  color: #fff;
}

.gas-status-badge.paid {
  background-color: var(--bs-primary);
  color: #fff;
}

.hover-shadow:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-2px);
}

.transition-all {
  transition: all 0.3s ease;
}

.repair-dashboard-timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.repair-dashboard-timeline-item:before {
  content: '';
  position: absolute;
  left: 0.45rem;
  top: 1.5rem;
  bottom: -1.5rem;
  width: 2px;
  background: var(--bs-border-color);
}

.repair-dashboard-timeline-item:last-child:before {
  display: none;
}

.repair-dashboard-timeline-dot {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}

.repair-dashboard-request-card {
  cursor: pointer;
  border: 1px var(--bs-primary-border-subtle);
}

.status-update-modal .swal2-actions {
  justify-content: flex-end !important;
}

.lorry-booking-timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.lorry-booking-timeline-item:before {
  content: '';
  position: absolute;
  left: 0.45rem;
  top: 1.5rem;
  bottom: -1.5rem;
  width: 2px;
  background: var(--bs-border-color);
}

.lorry-booking-timeline-item:last-child:before {
  display: none;
}

.lorry-booking-timeline-dot {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}

.lorry-booking-request-card {
  cursor: pointer;
  border: 1px var(--bs-primary-border-subtle);
}

.status-update-modal .swal2-actions {
  justify-content: flex-end !important;
}

.gas-provider-dashboard-timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.gas-provider-dashboard-timeline-item:before {
  content: '';
  position: absolute;
  left: 0.45rem;
  top: 1.5rem;
  bottom: -1.5rem;
  width: 2px;
  background: var(--bs-border-color);
}

.gas-provider-dashboard-timeline-item:last-child:before {
  display: none;
}

.gas-provider-dashboard-timeline-dot {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}

.gas-provider-dashboard-request-card {
  cursor: pointer;
  border: 1px var(--bs-primary-border-subtle);
}

.status-update-modal .swal2-actions {
  justify-content: flex-end !important;
}

.merchant-qr-camera-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--bs-body-bg);
  display: none;
}

.merchant-qr-camera-feed {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merchant-qr-scan-region {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border: 2px solid rgba(0,84,173,0.71);
  border-radius: 20px;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.merchant-qr-scan-region::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid transparent;
  border-radius: 20px;
  animation: borderGlow 2s linear infinite;
}

.merchant-qr-scan-corners::before, .merchant-qr-scan-corners::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 4px solid var(--bs-primary);
  pointer-events: none;
}

.merchant-qr-scan-corners::before {
  top: -2px;
  left: -2px;
  border-right: 0;
  border-bottom: 0;
  border-top-left-radius: 18px;
}

.merchant-qr-scan-corners::after {
  bottom: -2px;
  right: -2px;
  border-left: 0;
  border-top: 0;
  border-bottom-right-radius: 18px;
}

.merchant-qr-scan-line {
  position: absolute;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, rgba(0,255,157,0) 0%, var(--bs-primary) 20%, var(--bs-primary) 50%, var(--bs-primary) 80%, rgba(0,255,157,0) 100% );
  box-shadow: 0 0 20px rgba(0,84,173,0.62);
  animation: merchant-qr-scan 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.merchant-qr-scan-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 20px;
  border: 3px solid rgba(0,84,173,0.66);
  animation: pulse 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes merchant-qr-scan {
  0% {
    top: 0%;
    opacity: 1;
  }
  50% {
    top: 96%;
    opacity: 0.8;
  }
  100% {
    top: 0%;
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

@keyframes borderGlow {
  0%, 100% {
    border-color: var(--bs-primary);
  }
  50% {
    border-color: rgba(0,84,173,0.52);
  }
}

.merchant-qr-controls-container {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 1001;
}

.merchant-qr-control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.merchant-qr-control-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.merchant-qr-control-btn i {
  color: white;
  font-size: 24px;
}

.merchant-qr-control-btn.active i {
  color: var(--bs-warning);
}

.merchant-qr-guide-text {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.1rem;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  z-index: 1000;
}

.header-controls {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1001;
}

.header-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.merchant-id-section {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  width: 80%;
  max-width: 300px;
}

.merchant-id-input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: white;
}

.merchant-id-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.image-preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.image-preview-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-preview-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.image-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-image {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: var(--bs-danger);
  color: white;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.remove-image:hover {
  background-color: var(--bs-danger);
}

.image-preview-wrapper {
  width: 120px;
  height: 120px;
}

.remove-image {
  width: 24px;
  height: 24px;
  font-size: 14px;
}

.card-details-section {
  border-top: 1px solid var(--bs-primary-border-subtle);
  padding-top: 10px;
  margin-top: 10px;
}

.card-header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

.card-header-section h5 {
  margin: 0;
}

.card-header-section img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.card-body p {
  margin: 5px 0;
}

.card-body i {
  margin-right: 8px;
  color: var(--bs-primary);
}

.book-now-button {
  width: 100%;
  margin-top: 10px;
}

.merchant-id {
  font-size: 16px;
  font: inherit;
  color: var(--bs-primary);
}

.copy-icon {
  cursor: pointer;
  margin-left: 5px;
}

.gas-marker {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin: 60px;
  background: var(--bs-info-border-subtle);
  box-shadow: 0 8px 15px rgba(74, 144, 226, 0.3), 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--bs-light);
  outline: 2px solid var(--bs-primary);
  transform: translateZ(0);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gas-marker::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 24px;
  height: 8px;
  background: rgba(74, 144, 226, 0.3);
  border-radius: 50%;
  transform: translateX(-50%) scale(0.8);
  filter: blur(4px);
  z-index: -1;
}

.gas-marker .fas {
  color: var(--bs-primary);
  font-size: 24px;
}

.gas-marker::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  width: 15px;
  height: 15px;
  background: var(--bs-indigo);
  border: 2px solid var(--bs-light);
  border-radius: 50%;
  transform: translateX(-50%);
}

.gas-marker:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 20px rgba(74, 144, 226, 0.4), 0 6px 10px rgba(0,0,0,0.15);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.gas-marker.active {
  animation: pulse 2s infinite;
}

.repair-marker {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin: 60px;
  background: var(--bs-info-border-subtle);
  box-shadow: 0 8px 15px rgba(74, 144, 226, 0.3), 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--bs-light);
  outline: 2px solid var(--bs-primary);
  transform: translateZ(0);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.repair-marker::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 24px;
  height: 8px;
  background: rgba(74, 144, 226, 0.3);
  border-radius: 50%;
  transform: translateX(-50%) scale(0.8);
  filter: blur(4px);
  z-index: -1;
}

.repair-marker .fas {
  color: var(--bs-primary);
  font-size: 24px;
}

.repair-marker::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  width: 15px;
  height: 15px;
  background: var(--bs-orange);
  border: 2px solid var(--bs-light);
  border-radius: 50%;
  transform: translateX(-50%);
}

.repair-marker:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 20px rgba(74, 144, 226, 0.4), 0 6px 10px rgba(0,0,0,0.15);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.repair-marker.active {
  animation: pulse 2s infinite;
}

