body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f5f5f5;
}

.mobile-container {
  max-width: 430px;
  margin: 0 auto;
  background-color: #fff;
  min-height: auto;
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
}
.content {
  flex: 2; /* takes remaining space */
  padding-bottom: 90px; /* leave space for footer if fixed */
}
.top-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
}

.top-navbar .left-icons,
.top-navbar .right-icons {
  display: flex;
  align-items: center;
}

.top-navbar .logo {
  height: 35px;
  margin-left: 10px;
}

.location-selector {
  position: relative;
  margin-right: 0px;
}

.location-button {
  background: none;
  border: none;
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.location-button i {
  margin-left: 5px;
  font-size: 12px;
}

.location-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  width: 100px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

.location-dropdown.active {
  display: block;
}

.location-dropdown div {
  padding: 5px 10px;
  cursor: pointer;
}

.location-dropdown div:hover {
  background-color: #f0f0f0;
}

.top-navbar img.icon {
  height: 20px;
  width: 20px;
  margin-left: 20px;
}

.location-icon {
  height: 15px;
  margin-left: 20px;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  width: 260px;
  background-color: #fff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 1050;
  display: flex;
  flex-direction: column;
}

.sidebar.active {
  left: 0;
}

.sidebar h6 {
  font-weight: bold;
  margin-bottom: 2px;
}

.sidebar small {
  color: #777;
}

.sidebar .profile-section {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  flex-grow: 1;
}

.menu-list li {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  border-radius: 25px;
  cursor: pointer;
}

.menu-list li.active {
  background-color: #e5e5e5;
  font-weight: 600;
}

.menu-list li i {
  margin-right: 12px;
  font-size: 18px;
  color: #333;
}
.menu-list li a {
  text-decoration: none; /* remove underline */
  color: inherit; /* inherit color from li */
  display: flex;
  align-items: center;
  width: 100%; /* make whole li clickable */
}

.menu-list li a:hover {
  color: #0d6efd; /* optional hover effect */
}
.social-footer {
  margin-top: auto;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-icons a {
  width: 32px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
}

.facebook {
  background-color: #3b5998;
}

.instagram {
  background-color: #e1306c;
}

.linkedin {
  background-color: #0077b5;
}

.youtube {
  background-color: #ff0000;
}

#backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1040;
  display: none;
}

.toggle-tabs {
  background-color: #e6e6e6;
  padding: 0px;
  border-radius: 50px;
  justify-content: space-between;
  gap: 4px;
  height: 30px;
  margin-top: 0px !important;
}

.toggle-tabs .tab {
  flex: 1;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.toggle-tabs .active-tab {
  background-color: #1f71be;
  color: #fff;
  font-weight: 600;
  box-shadow: 3px 0px 3.9px 0px #00000040;
}

.text-muted {
  color: #000000 !important;
  font-size: 12px;
}

.cart-wrapper {
  position: relative;
  margin-left: 0px;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #c8102e;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  font-weight: bold;
}

/* Search Bar */
.search-bar input {
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 14px;
  border: 0.5px solid #002140;
  color: black;
  border-radius: 25px;
}

.banner-content {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #000;
}

.banner-content h6 {
  font-size: 12px;
  color: #ff4e4e;
  margin-bottom: 3px;
}

.banner-content h5 {
  font-size: 16px;
  font-weight: 600;
}

.banner-content button {
  background: #f48a84;
  border: none;
  padding: 4px 10px;
  color: #fff;
  font-size: 12px;
  border-radius: 5px;
  margin-top: 5px;
}

/* Booking Options */
.booking-options {
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: hidden;
  padding-top: 12px;
  padding-bottom: 12px;
}

.option-box {
  border-radius: 12px;
  padding: 6px 8px;
  flex: 1 1 0;
  min-width: 0;
  font-size: 12px;
  height: 50px;
  display: flex;
  align-items: center;
  border: 1px solid #ebebeb;
}

.option-box img {
  width: 25px;
  height: 20px;
  /* margin-right: 0px !important;
  margin-left: -7px; */
  margin: auto;
}

.option-box small {
  font-size: 11px;
  line-height: 1.1;
  color: white;
}

.option-box strong {
  font-size: 10px;
  color: white;
  font-weight: 600;
}

.phonesvg {
  margin-left: 0px !important;
}

/* Tabs */
.test-tabs button {
  flex: 1;
  padding: 8px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
}

.test-tabs button.active {
  background: #007bff;
  color: #fff;
}

.toggle-tabs .tab-btn.active-tab {
  box-shadow:
    -3px 0px 3.9px 0px #00000040,
    /* left shadow */ 3px 0px 3.9px 0px #00000040;
  /* right shadow */
}

/* Cards */
.test-card {
  font-size: 13px;
  border: 0.5px solid #ca6da6 !important;
  padding: 13px !important;
  border-radius: 20px !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
}

.test-card h6 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #002140;
}

.test-card p {
  font-size: 12px;
  margin-bottom: 4px;
  color: #6a6a6b;
}

.text-dark {
  font-weight: 600;
}

.test-card .button-wrapper {
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -15px;
  padding: 5px 9px 13px 13px;
  display: flex;
}

.book-btn {
  background: linear-gradient(102.63deg, #e4966d 18.37%, #c565b3 91.81%);
  color: white !important;
  border: none;
  padding: 7px 10px;
  border-radius: 25px;
  font-size: 13px;
  width: 100%;
}
.book-btn:active {
  transform: scale(0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    102.63deg,
    #d17f4f 18.37%,
    #a84794 91.81%
  ); /* darker shade */
}
.book-btn-custom {
  background: linear-gradient(102.63deg, #e4966d 18.37%, #c565b3 91.81%);
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 25px;
  font-size: 13px;
  width: 100px;
  white-space: nowrap;
}
.book-btn1 {
  background: linear-gradient(102.63deg, #e4966d 18.37%, #c565b3 91.81%);
  color: white !important;
  border: none;
  padding: 7px 14px;
  border-radius: 25px;
  font-size: 13px;
  width: 100%;
}
.book-btn1:active {
  transform: scale(0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    102.63deg,
    #d17f4f 18.37%,
    #a84794 91.81%
  ); /* darker shade */
}
.book-btn1-custom {
  background: linear-gradient(102.63deg, #e4966d 18.37%, #c565b3 91.81%);
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 25px;
  font-size: 13px;
  width: 100px;
  white-space: nowrap;
}
.old-price {
  font-size: 11px;
  position: relative;
  color: #999;
  margin-left: 4px;
}

.old-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: red;
  transform: rotate(-15deg);
  transform-origin: center;
}

.discount {
  color: #28a5a1;
  font-size: 11px;
  margin-left: 4px;
  font-weight: 600;
}

.view-all-btn {
  display: block;
  text-align: center;
  padding: 8px;
  margin: 10px auto;
  background: #28a5a1;
  color: #fff;
  width: 45%;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 20px;
  font-size: 14px;
  margin-bottom: 25px;
}

.category-tabs-wrapper {
  margin-top: 30px !important;
}

.search-input::placeholder {
  color: #002140 !important;
}

.search-icon {
  position: absolute;
  right: 25px;
  top: 57%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  cursor: pointer;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.owl-nav button {
  background: rgba(0, 0, 0, 0.4) !important;
  color: #fff !important;
  border: none !important;
  padding: 6px 12px !important;
  border-radius: 50%;
}

.book-test-txt {
  font-size: 15px;
}
.custom-spinner {
  color: #16b4bd !important;
}

.category-tabs-scroll {
  gap: 10px;
  margin-top: 15px;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-tabs-scroll::-webkit-scrollbar {
  display: none;
}

.category-tabs-scroll .tab {
  padding: 3px 16px;
  min-width: 115px;
  text-align: center;
  border-radius: 25px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 13px;
  color: #333;
  flex-shrink: 0;
  transition: background-color 0.3s;
}

.category-tabs-scroll .tab.active {
  background-color: #28a5a1;
  color: #fff;
  border-color: #28a5a1;
  font-weight: 600;
}

.dot-nav .dot {
  height: 6px;
  width: 6px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
}

.dot-nav .dot.active {
  background-color: #00bfa6;
}

.full-package-card {
  background-color: #fff;
  border: 0.5px solid #ca6da6;
  font-size: 13px;
  border-radius: 15px !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  position: relative;
}

.full-package-card h6 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.full-package-card .price {
  font-weight: 600;
  font-size: 15px;
}

.full-package-card .old-price {
  font-size: 12px;
  position: relative;
  color: #999;
  margin-left: 5px;
}

.full-package-card .old-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: red;
  transform: rotate(-15deg);
  transform-origin: center;
}

.offer-badge-wrapper {
  position: absolute;
  top: 0;
  right: 30px;
  z-index: 1;
}

.offer-badge {
  background-color: #00bfa6;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 6px;
  text-align: center;
  position: relative;
  width: 35px;
  height: 50px;
}

.offer-badge span {
  display: block;
  line-height: 1.1;
}

.offer-arrow {
  width: 0;
  height: 0;
  border-left: 19px solid transparent;
  border-right: 19px solid transparent;
  border-top: 17px solid white;
  position: absolute;
  bottom: 0px;
  left: -1px;
  rotate: 180deg;
}

.view-btn {
  background-color: #00bfa6;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
}

.dot-nav .dot {
  height: 8px;
  width: 8px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.dot-nav .dot.active {
  background-color: #00bfa6;
}

.select-category {
  font-size: 18px;
}

.popular-packages {
  font-size: 18px;
  margin-top: 20px;
}

.custom-text-muted {
  color: #6a6a6b;
}
.custom-text-muted-render-ct {
  color: #6a6a6b;
}
.custom-text-mri {
  color: black;
}

.text-cst-muted {
  font-size: 16px;
}

.text-cst-primary {
  font-size: 18px;
  color: #28a5a1;
}

.timeline {
  margin-top: 1rem;
  border-radius: 14px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.timeline img {
  max-width: 100%;
  height: auto;
}

.accredit-box {
  background-color: #fff2ef;
  border-radius: 14px;
}

.text-cst-acc {
  font-size: 18px;
  color: #28a5a1;
  font-weight: 700;
}

.Quality {
  font-size: 9.5px;
  font-weight: 500;
}

.cap-quality {
  line-height: 0;
}

.video-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.video-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 5px;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.video-carousel::-webkit-scrollbar {
  display: none;
}

.video-card {
  min-width: 115px;
  height: 240px;
  border-radius: 10px;
  border: none;
  margin-right: 12px;
  scroll-snap-align: start;
}

.carousel-dots .dot {
  height: 8px;
  width: 8px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}

.carousel-dots .dot.active {
  background-color: #00bcd4;
}

.app-download-section {
  /* background: url('./assets/img/discount-download.svg') no-repeat center center; */
  /* background-size: cover; */
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: #fff;
  position: relative;
  z-index: 1;
  background-color: #9f70cc;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.app-download-section .store-btn {
  width: 130px;
  height: auto;
}

.app-mockup-img {
  width: 140px;
  max-width: 100%;
}

.presence-section {
  background-color: #28a5a126;
}

.cities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 6px;
  font-size: 13px;
  line-height: 1.8;
}

.cities-list span {
  color: #333;
}

.blood-tests-section {
  background-color: #ffffff;
}

.blood-tests-section p {
  font-size: 13px;
  line-height: 1.6;
}

.separator {
  color: #c10b0b !important;
  margin-left: 0px;
  margin-right: 0px;
  font-weight: bold;
}

.border-bottom-red {
  border-bottom: 2px solid #c10b0b;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-section {
  background-color: #e7f3f7;
  /* Light blue */
  font-family: "Poppins", sans-serif;
}

.footer-logo {
  width: 120px;
}

.footer-heading {
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
  margin-bottom: 12px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 30px;
  background-color: #c8102e;
  /* Red underline */
}

.bottom-nav {
  border-top: 1px solid #ddd;
  z-index: 1000;
}

.nav-item {
  font-size: 12px;
  color: #444;
}

.nav-icon {
  font-size: 20px;
  display: block;
  margin-bottom: 3px;
  color: #444;
}

.nav-label {
  font-size: 12px;
  color: #505050;
}

.active-icon {
  color: #c8102e;
}

.active-label {
  color: #c8102e;
  font-weight: 600;
}

.sub-footer {
  background-color: #3a3480;
  height: 50px;
  z-index: 999;
  margin-bottom: 70px;
  font-size: 12px;
}

.callback-btn {
  background-color: #2dc7b7;
  padding: 6px 12px;
  border-radius: 20px 0 0 20px;
  color: white;
  font-size: 12px;
  line-height: 1.2;
}

.btn-callback:focus,
.btn-callback:active,
.btn-callback:hover {
  background-color: #2dc7b7 !important;
  outline: none;
  box-shadow: none;
}

.whatsapp-btn img {
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
/* Calendar container — horizontal scroll if overflow */
.calendar1-container {
  display: flex;
  gap: 10px;
  overflow-x: auto; /* keep scrolling possible */
  padding-bottom: 10px;

  /* hide scrollbar in WebKit browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.calendar1-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.day-card {
  flex: 0 0 auto;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 8px 10px;
  width: 70px;
  cursor: pointer;
  transition: all 0.3s;
  background: #f9f9f9;
}

.day-card.active {
  /* background-color: #007bff; */
  color: #000;
  border-color: #007bff;
  border-width: 2px;
  font-weight: 500;
}

.day-card:hover {
  background: #e9ecef;
}

.footer-text {
  font-size: 13px;
}

.floating-buttons {
  position: fixed;
  right: 0px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  z-index: 1000;
}

.floating-buttons img {
  cursor: pointer;
  /* height: 38px; */
  width: 100px;
}

/* Phone Icon Style */
.phone-icon {
  position: absolute;
  left: -6px;
  top: -6px;
  z-index: 1;
}

.phone-icon img {
  width: 60px;
  height: 60px;
}

/* Call Back Button */
.btn-callback {
  background-color: #28a5a1;
  padding-left: 3rem;
  /* padding-top: 0.75rem;
            padding-bottom: 0.75rem; */
  font-size: 0.9rem;
  border: none;
  text-align: left;
  border-radius: 10px;
  font-size: 13px;
}

/* WhatsApp Button */
.btn-purple {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.9rem;
  border: none;
  justify-content: right;
}

/* WhatsApp Icon */
.whatsapp-wrapper {
  height: 60px;
  display: flex;
  align-items: center;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.select-test-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 15px; */
  flex-wrap: nowrap;
  gap: 10px;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.select-test-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select-test-title {
  flex: 1;
  min-width: 0;
}

.select-test-title span {
  display: block;
  font-size: 8px;
  color: #666;
}

.select-test-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
}

.action-btn img {
  width: 16px;
  height: 16px;
}

.action-btn:hover {
  border-color: #007bff;
  color: #007bff;
}

.nav-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  min-width: 160px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 8px;
  z-index: 10;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  cursor: pointer;
  font-size: 14px;
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #ff3e6c;
}

.sort-item {
  padding: 6px 4px;
  font-size: 14px;
  cursor: pointer;
}

.sort-item:hover {
  background-color: #f0f0f0;
}

.show {
  display: block;
}

.button-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Small round cart button */
.cart-btn {
  width: 45px;
  height: 33px;
  background: linear-gradient(135deg, #e49d76, #e6a07a);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cart-btn1 {
  width: 45px;
  height: 33px;
  background: linear-gradient(135deg, #e49d76, #e6a07a);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.button-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-btn img {
  width: 18px;
  height: 18px;
}
.cart-btn1 img {
  width: 18px;
  height: 18px;
}

.icons-buttons-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.icon-item img {
  margin-right: 8px;
  /* Space between icon and text */
}

.right-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.custom-price {
  font-size: 18px !important;
  color: #28a5a1;
}

.test-description {
  font-size: 10px;
}

.icon-row {
  font-size: 10px;
}

.know-more {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 10px;
}

.parameters-faq {
  background: #fff;
}

.section-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 11px;
  color: #002140;
}

.parameters-list {
  columns: 2;
  column-gap: 40px;
  list-style-position: inside;
  padding-left: 0;
  color: #6a6a6b;
  font-size: 11px;
}
.faq-sections p {
  font-size: 12px;
}
.faq-sections h6 {
  font-size: 14px;
}
.parameters-list li {
  margin-bottom: 5px;
}

.faq-item {
  margin-top: 15px;
}

.faq-question {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 10px;
  color: #002140;
}

.faq-answer {
  margin-bottom: 5px;
  font-size: 10px;
  color: #6a6a6b;
}

/* .faq-item ul {
  list-style: disc;
  color: #6a6a6b;
  font-size: 10px;
} */
/* Force same font size for API HTML content */
.faq-sections p,
.faq-sections ul,
.faq-sections li {
  font-size: 12px;
  line-height: 1.6;
  color: black;
}

.address-section {
  max-width: 500px;
  margin: auto;
}

.btn-add-address {
  background: linear-gradient(102.63deg, #e4966d 18.37%, #c565b3 91.81%);
  color: #fff;
  border: none;
  padding: 2px 12px;
  font-size: 13px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}

.address-card {
  display: flex;
  align-items: flex-start;
  border: 1px solid #c4c4c4;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.2s;
  gap: 10px;
}

.address-card input[type="radio"] {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-top: 3px;
}

.address-card .address-content {
  flex: 1;
}

.address-card.active {
  border: 2px solid #1f71be;
  background-color: #f4faff;
}

.btn-proceed {
  background: linear-gradient(102.63deg, #e4966d 18.37%, #c565b3 91.81%);
  color: white;
  padding: 10px;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  display: block;
  margin: 0 auto;
  width: 50%;
}

.wrapper-address {
  font-size: 11px;
  font-weight: 600;
}

.custom-address {
  font-size: 13px;
  font-weight: 600;
}

.custom-text-muted {
  font-size: 11px !important;
  color: black;
}

.custom-edits {
  font-size: 11px;
  font-weight: 600;
}

.cutom-address-header {
  font-weight: 600;
  margin-bottom: 15px;
}

.custom-small {
  font-size: 10px;
  text-align: left;
}

.declaration-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}

.custom-actions {
  float: right;
}

.payment-method-section .list-group-item {
  border: none;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 12px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  cursor: pointer;
  background-color: #ededed;
}

.payment-method-section .list-group-item:hover {
  background: #ededed;
}

.payment-method-section input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.text-muted-payment {
  color: #6a6a6b;
  font-size: 10px;
  font-weight: 500;
}

.payment-img {
  width: 40px;
  height: 40px;
}

.payment-details {
  margin-left: 1rem;
}

.confirm-btn {
  background: linear-gradient(102.63deg, #e4966d 18.37%, #c565b3 91.81%);
  border: none;
  color: white;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 25px;
  width: 150px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin: auto;
}

/* Success Badge */
.badge-circle {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Details Card */
.details-card {
  max-width: 380px;
  border: 1px solid #1f71be;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  background: #fff;
  text-align: left;
}

.booking-info span {
  font-size: 14px;
  line-height: 1.5;
}

.flex-fill {
  flex: 1 !important;
}

/* Location Card Styling */
.location-card {
  border: 0.5px solid #ca6da6 !important;
  border-radius: 16px;
  background: #fff;
  font-family: "Poppins", sans-serif;
  max-width: 600px;
  margin: auto;
}

.location-info h6 {
  font-size: 13px;
  color: #1c2b39;
}

.location-info p {
  font-size: 10px;
  line-height: 1.4;
}

.location-info .distance {
  font-size: 14px;
  font-weight: 500;
  color: #1ba57b;
  /* teal/green */
}

/* Gradient Button */
.gradient-btn {
  background: linear-gradient(102.63deg, #e4966d 18.37%, #c565b3 91.81%);
  color: #fff !important;
  border-radius: 25px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 300;
  border: none;
  transition: opacity 0.2s;
  white-space: nowrap;
  width: 100%;
}
.gradient-btn:active {
  transform: scale(0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    102.63deg,
    #d17f4f 18.37%,
    #a84794 91.81%
  ); /* darker shade */
}
.gradient-btn:hover {
  opacity: 0.9;
}
.custom-text-start {
  line-height: 15px;
}
/* Hide active icons by default */
.nav-item .icon.active {
  display: none;
}

/* Active state */
.nav-item.active .icon.active {
  display: inline-block;
}

.nav-item.active .icon.inactive {
  display: none;
}

.nav-item .nav-label {
  color: #333;
  font-size: 12px;
}

.nav-item.active .nav-label {
  color: #c10b0b; /* your active color */
  font-weight: 600;
}
.address-body {
  height: 100%;
  margin: 0;
  overflow: hidden; /* prevent outer scroll */
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: calc(90vh - 240px);
  height: 0px;
}

.address-list {
  flex: 1;
  overflow-y: auto; /* only this scrolls */
  padding: 10px;
  overflow-x: hidden;
}

.form-section {
  flex-shrink: 0;
  background: #fff;
  border-top: 1px solid #ddd;
}
#uploadPrescriptionModal .modal-header {
  justify-content: center;
  position: relative;
}

#uploadPrescriptionModal .modal-header .modal-title {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

#uploadPrescriptionModal .modal-header .btn-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.custom-file-input {
  border: 0.5px solid #9a9b9b;
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 14px;
  width: 100%;
  cursor: pointer; /* make whole box clickable */
}

.custom-file-input span {
  color: #6a6a6b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-file-input .btn {
  background-color: #0d6efd; /* Bootstrap primary */
  border-radius: 5px;
  font-size: 14px;
  padding: 5px 12px;
  pointer-events: none; /* prevents button itself from blocking the label click */
}
.nearest-btn {
  background: linear-gradient(102.63deg, #e4966d 18.37%, #c565b3 91.81%);
  color: white;
  border: none;
  padding: 7px 14px;
  border-radius: 25px;
  font-size: 13px;
  width: 100%;
}
.nearest-btn:active {
  transform: scale(0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    102.63deg,
    #d17f4f 18.37%,
    #a84794 91.81%
  ); /* darker shade */
}
.accred-img {
  width: 17%;
}
#backToTop {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 99;
  width: 45px;
  height: 45px;
  border-radius: 50%; /* Circular shape */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent; /* Remove background */
  border: none; /* Remove border */
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

#backToTop img {
  width: 100%; /* Make image fill button */
  height: 100%;
  object-fit: contain; /* Maintain aspect ratio */
}

#backToTop:hover {
  transform: translateY(-2px);
}
.quicklinks {
  text-decoration: none;
  color: black;
}
/* Get OTP disabled look */
#getOtpBtn:disabled {
  opacity: 0.6; /* faded look */
  cursor: not-allowed;
}

/* Resend OTP hyperlink style */
#resendOtpText {
  color: #6c757d; /* default gray */
  font-weight: 500;
}

#resendOtpText.active {
  color: #007bff; /* blue hyperlink */
  text-decoration: underline;
  cursor: pointer;
}

#resendOtpText.active:hover {
  color: #0056b3; /* slightly darker on hover */
}
#modalGetOtpBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Resend OTP */
#modalResendOtpText {
  color: black;
  text-decoration: none;
  cursor: default;
}
#modalResendOtpText.active {
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
}
#modalResendOtpText.active:hover {
  color: #0056b3;
}
/* Time slots layout */
.time-container {
  /*display: flex;*/
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.time-slot1 {
  flex: 1 1 45%;
  text-align: center;
  border: 1px solid #ccc;
  padding: 8px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  background: #f8f9fa;
}

.time-slot1.active {
  border-color: #007bff;
  border-width: 2px;
  font-weight: 600;
}

.time-slot1:hover {
  background: #e0e0e0;
}

/* Selected output text */
.selected-output {
  margin-top: 15px;
  font-weight: 600;
  color: #333;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .day-card {
    width: 60px;
    padding: 6px;
  }

  .time-slot1 {
    flex: 1 1 100%;
  }
}
.loader-overlay {
  position: fixed;
  inset: 0; /* shorthand for top:0, right:0, bottom:0, left:0 */
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Always above all content */
}

.loader {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top: 6px solid #007bff; /* Blue spinner color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.privacy-policy-section {
  background: #f8f9fa;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.policy-content h5 {
  margin-top: 20px;
  font-weight: 600;
}

.policy-content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.policy-content a {
  color: #16b4bd;
  text-decoration: underline;
}
.terms-container {
  background: #fff;
  padding: 1rem;
  margin: 1rem auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  max-width: 1000px;
}
.terms-container h1,
.terms-container h2 {
  color: black;
  font-weight: 600;
}
.terms-container h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}
.terms-container p,
.terms-container li {
  text-align: justify;
}

.impact-section {
  background: #f8fafc;
  border-radius: 14px;
}

/* Card */
.impact-card {
  display: flex;
  gap: 14px;
  background: white;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 12px;
  align-items: center;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
}

/* Icon circle */
.impact-icon {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 21px;
}

/* Icon colors */
.bg1 {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
}
.bg2 {
  background: linear-gradient(135deg, #43cea2, #185a9d);
}
.bg3 {
  background: linear-gradient(135deg, #fa709a, #fee140);
}
.bg4 {
  background: linear-gradient(135deg, #667eea, #764ba2);
}
.bg5 {
  background: linear-gradient(135deg, #56ab2f, #a8e063);
}

/* Text */
.impact-text h6 {
  margin: 0;
  font-weight: 700;
  font-size: 12px;
}

.impact-text p {
  margin: 2px 0 0;
  font-size: 12px;
  color: #6b7280;
}
.payment-status-wrapper {
  height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

.payment-card {
  width: 100%;
  max-width: 340px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.status-icon {
  width: 90px;
  height: auto;
  margin-bottom: 12px;
}

.status-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.status-msg {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
  margin-bottom: 18px;
}

.action-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.retry-btn {
  background: linear-gradient(135deg, #ff5f6d, #ffc371);
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
}

.home-btn {
  background: #f3f4f6;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #333 !important;
}

.retry-btn:hover {
  opacity: 0.9;
}

.home-btn:hover {
  background: #e5e7eb;
}
.time-slot1 {
  padding: 12px;
  border-radius: 10px;
  border: 2px solid #ddd;
  background: #fff;
  font-weight: 600;
  position: relative;
  width: 100%;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.time-slot1.available {
  border-color: #28a745;
  box-shadow: 0 0 1px rgba(40, 167, 69, 0.4);
  font-size: 12px;
  font-weight: 600;
}

.time-slot1.active {
  background: #28a745;
  color: #fff;
  border-color: #28a745;
  font-size: 12px;
  font-weight: 600;
}

.limited-badge {
  position: absolute;
  top: -7px;
  right: -8px;
  font-size: 9px;
  color: white;
  background: green;
  padding: 2px 6px;
  border-radius: 20px;
}

.slot-skeleton {
  width: 100%;
  height: 45px;
  background: linear-gradient(90deg, #eee 25%, #f6f6f6 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  border-radius: 10px;
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}
.timeline-main {
  line-height: 1.5rem;
}
.impact-image {
  width: 50px;
}
.test-links a {
  text-decoration: none !important;
  color: #626263;
}

.test-links a:hover {
  text-decoration: underline; /* optional */
}
.no-card-click {
  pointer-events: none;
}

.no-card-click .nearest-centre-btn {
  pointer-events: auto;
  cursor: pointer;
}

.logout-fixed-bar {
  position: fixed;
  bottom: 60px; /* above bottom navigation */
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 12px 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

/* Centered logout button */
.logout-fixed-bar .logout-btn {
  width: 50%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
  margin-bottom: 10px;
}

.profile-page-padding {
  padding-bottom: 150px !important;
}

.fixed-btn {
  position: fixed;
  bottom: 70px;
  left: 0;
  background: #fff;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.scroll-area {
  height: calc(100vh - 0px);
}
