﻿.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #fff;
  border-radius: 5px;
  border: 1px solid rgb(var(--base));
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
  z-index: 999;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}


.maintenance-page {
  display: grid;
  place-content: center;
  width: 100vw;
  height: 100vh;
}

/* Fix for mandatory field star position */
.form--label {
  white-space: nowrap !important;
  width: auto !important;
  display: inline-flex !important;
  align-items: center;
}

.form--label.required:after {
  content: "*" !important;
  font-family: inherit !important;
  font-weight: bold;
  display: inline-block !important;
  position: static !important;
  transform: none !important;
  top: auto !important;
  left: auto !important;
  color: #DC3545 !important;
  margin-left: 4px !important;
  line-height: normal !important;
}

/* Fix for Select2 Browser Validation */
select.select2-hidden-accessible {
  display: block !important;
  visibility: visible !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  height: 1px !important;
  width: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
  clip: rect(0, 0, 0, 0) !important;
}

select[required].select2-hidden-accessible,
select[required].chosen-select,
select[required].hidden-native-select {
  display: block !important;
  visibility: visible !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  height: 1px !important;
  width: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.navbar-expand-lg .navbar-collapse {

  padding-block: 0.5rem;
}

/* Profile Tag Styles */
.profile-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.profile-tag {
  display: inline-flex;
  align-items: center;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #000000;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.profile-tag i {
  margin-right: 8px;
  color: rgb(var(--base));
  font-size: 1rem;
}

.profile-tag .la-rupee-sign {
  margin-right: -5px;
  font-size: 0.9rem;
  color: inherit;
}

.profile-tag:hover {
  background: rgb(var(--base));
  color: #fff !important;
  border-color: rgb(var(--base));
}

.profile-tag:hover i {
  color: #fff;
}

/* Adjustments for member card details */
.search__right-details .profile-tags-wrapper {
  margin-top: 10px;
  margin-bottom: 15px;
}

.profile-notification {
  background: rgb(var(--base));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  backdrop-filter: blur(10px);
}

.profile-notification__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.profile-notification__content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 500;
}

.profile-notification__content i {
  font-size: 24px;
  color: #fff;
}

.profile-notification__action {
  display: flex;
  gap: 10px;
}

.accordion-button {
  display: flex;
  align-items: center;
}

.accordion-button i {
  font-size: 1.2rem;
}

.text--success {
  color: #28a745 !important;
}

.text--warning {
  color: #ffc107 !important;
}


/* Mobile App Section Redesign */
.mobile-app-section-bg {
  background-color: #fcfaff;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.app-buttons-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.app-download-btn {
  height: 48px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.app-launch-soon {
  position: absolute;
  top: -10px;
  right: -5px;
  background: #ff0055;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  line-height: 1.4;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.app-download-btn img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.app-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .mobile-app-section-bg {
    padding: 40px 20px;
    text-align: center;
  }

  .app-buttons-wrap {
    justify-content: center;
  }
}

/* Custom Range Slider Thumb Color */
.form-range::-webkit-slider-thumb {
  background-color: rgb(var(--base)) !important;
}

.form-range::-moz-range-thumb {
  background-color: rgb(var(--base)) !important;
}

.form-range::-ms-thumb {
  background-color: rgb(var(--base)) !important;
}

.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(rgb(var(--base)), 0.25) !important;
}

/* Loading Spinner Integration */
.search-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  min-height: 400px;
}

.profile-loading-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

/* Member Profile Redesign - Reverted Look */
.profile-header-card {
  border-radius: 15px !important;
  background: #fff;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
  border: none !important;
}

/* Enhanced Profile Image Styling (Kept) */
.profile-header__img-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.profile-header__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.profile-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--base), 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.profile-img-overlay i {
  color: #fff;
  font-size: 2.2rem;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-header__img-wrapper:hover img,
.profile-gallery:hover img {
  transform: scale(1.1);
}

.profile-header__img-wrapper:hover .profile-img-overlay,
.profile-gallery:hover .profile-img-overlay {
  opacity: 1;
}

.profile-header__img-wrapper:hover .profile-img-overlay i,
.profile-gallery:hover .profile-img-overlay i {
  transform: translateY(0);
}

.profile-interest-badge .badge {
  padding: 6px 12px;
  border-radius: 5px;
  font-weight: 500;
}

.badge--primary {
  background-color: rgb(var(--base));
  color: #fff;
}

.badge--success {
  background-color: #28a745;
  color: #fff;
}

@media (min-width: 768px) {
  .profile-header__content {
    flex: 1 1 auto;
  }

  .profile-header__quick-actions {
    flex: 0 0 130px;
    /* Give actions a fixed basis on desktop */
  }

  .profile-header__quick-actions button span {
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .border-start-md {
    border-left: 0 !important;
    border-top: 1px solid #dee2e6 !important;
    padding-top: 15px !important;
    width: 100% !important;
  }

  .profile-header__img-wrapper {
    width: 140px;
    height: 140px;
  }
}

.f-13 {
  font-size: 13px;
}

.f-18 {
  font-size: 18px;
}

/* Tab Adjustments */
.custom--tabs .nav-link {
  border-radius: 5px !important;
  padding: 10px 20px !important;
  font-weight: 500;
  font-size: 14px;
}

/* Accordion Adjustments */
.custom--accordion .accordion-item {
  border: 1px solid #eee !important;
  border-radius: 10px !important;
  overflow: hidden;
  margin-bottom: 12px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.custom--accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgb(var(--base) / 0.25) !important;
  box-shadow: 0 4px 15px rgb(var(--base) / 0.08);
}

.custom--accordion .accordion-button {
  background: #f8f9fa !important;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 20px;
  border: none !important;
}

.custom--accordion .accordion-button:not(.collapsed) {
  color: rgb(var(--base)) !important;
  background: #fff !important;
}

.custom--accordion .accordion-body {
  padding: 12px 20px 16px !important;
  color: #555;
  line-height: 1.7;
}

/* Profile Accordion Alignment Fix */
.public-profile__accordion .accordion-header {
  margin: 0 !important;
}

.public-profile__accordion .accordion-button {
  padding: 18px 20px !important;
  display: flex !important;
  align-items: center !important;
  line-height: 1 !important;
}

.public-profile__accordion .accordion-button::after {
  margin-top: 0 !important;
  align-self: center !important;
}

.member-details {
  padding: 4px 0;
  border-bottom: 1px solid #f8f9fa;
}

.member-details .text-muted,
.member-details .text-dark {
  font-size: 0.88rem;
}

.member-details:last-child {
  border-bottom: none;
}

/* Empty State Alignment Fix */
.empty-table {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 250px;
  width: 100%;
  text-align: center;
  padding: 30px 15px;
}

.empty-table__icon {
  font-size: 60px;
  margin-bottom: 5px;
  color: #ccc;
  line-height: 1;
}

.empty-table__text {
  color: #666;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}

/* Fix for profile dropdown visibility and positioning during transition */
.dropdown-menu {
  transition: all 0.2s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  display: block !important;
  top: 100% !important;
}

.dropdown-menu.show-dropdown {
  visibility: visible !important;
  opacity: 1 !important;
  transform: scaleY(1) !important;
}

@media (min-width: 992px) {
  .dropdown-menu.dropdown-menu-end {
    right: 0 !important;
    left: auto !important;
  }

  .dropdown-menu-end.show-dropdown {
    margin-top: 15px !important;
  }
}

.dropdown-menu.show-dropdown .dropdown-item:hover,
.dropdown-menu.show-dropdown .dropdown-item:focus {
  color: #fff;
}

/* Location Section Grid */
.location-section {
  background-image: none !important;
  background-attachment: unset !important;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.location-item {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-box {
  background: #fff;
  border: 1px solid #f1f1f1;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  height: 100%;
  transition: inherit;
}

.location-box:hover {
  border-color: rgb(var(--base));
  box-shadow: 0 8px 24px rgba(var(--base), 0.12);
  transform: translateY(-4px);
}

.location-icon {
  width: 32px;
  height: 32px;
  background: rgba(var(--base), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--base));
  font-size: 1.1rem;
  transition: inherit;
}

.location-box:hover .location-icon {
  background: rgb(var(--base));
  color: #fff;
}

.location-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

@media (max-width: 1199px) {
  .location-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-box {
    padding: 12px 15px;
  }
}

/* Fix for placeholders not showing sitewide */
.form--control::placeholder {
  opacity: 1 !important;
  visibility: visible !important;
  color: #adadad !important;
}

/* ===== Registration Progress Bar ===== */
.rp-bar-container {
  max-width: 600px;
  margin: 0 auto 10px;
  padding: 24px 16px 0;
}

.rp-bar-inner {
  position: relative;
}

/* Track (background grey line) */
.rp-track {
  position: absolute;
  top: 13px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: #d1d5db;
  border-radius: 4px;
  z-index: 0;
}

/* Active progress fill */
.rp-track-fill {
  height: 100%;
  background: #111;
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* Steps row */
.rp-steps {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Each step */
.rp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

/* Circle */
.rp-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.rp-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: #6b7280;
  line-height: 1;
  transition: color 0.3s ease;
}

/* Label */
.rp-label {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
  transition: color 0.3s ease;
}

/* Active step */
.rp-step.active .rp-circle {
  background: rgb(var(--base));
  border-color: rgb(var(--base));
  box-shadow: 0 0 0 4px rgba(var(--base), 0.15);
}

.rp-step.active .rp-num {
  color: #fff;
}

.rp-step.active .rp-label {
  color: rgb(var(--base));
  font-weight: 700;
}

/* Completed step */
.rp-step.completed .rp-circle {
  background: #fff;
  border-color: #111;
}

.rp-step.completed .rp-num {
  color: #111;
}

.rp-step.completed .rp-label {
  color: #111;
}

/* Mobile */
@media (max-width: 575px) {
  .rp-circle {
    width: 22px;
    height: 22px;
  }

  .rp-num {
    font-size: 0.65rem;
  }

  .rp-label {
    font-size: 10px;
  }

  .rp-track {
    top: 11px;
    height: 2px;
  }
}



/* Registration layout fixes */
.login.section.basic-info {
  padding-bottom: 60px;
}

.registration-container .login.section {
  padding-top: 0;
  padding-bottom: 60px;
}

/* Fix login__wrapper height on registration pages */
.basic-information,
.registration-container .login__wrapper {
  height: auto !important;
}

/* Fix for disabled base buttons (loading state) */
.btn--base:disabled,
.btn--base.disabled {
  background: var(--linear-bg) !important;
  color: #ffffff !important;
  opacity: 0.7 !important;
  border: none !important;
  cursor: not-allowed !important;
}

/* Interests Page Search & Filter Fixes */
.interests-search-form {
  flex-grow: 1;
  max-width: 450px;
}

@media (max-width: 767px) {
  .interests-search-form {
    flex: 1;
    max-width: calc(100% - 60px);
    /* Leave space for the filter button */
  }

  .interests-filter-wrapper {
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .interests-filter-wrapper {
    margin-left: auto;
  }
}

.pwa-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10000;
  border: 1px solid rgba(var(--base), 0.1);
  animation: slideUp 0.5s ease;
  max-width: 500px;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pwa-banner__content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.pwa-banner__content img {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  object-fit: contain;
  background: #f8f9fa;
  padding: 5px;
}

.pwa-banner__text h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #333;
}

.pwa-banner__text p {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.pwa-banner__btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-close-pwa {
  background: none;
  border: none;
  color: #999;
  font-size: 18px;
  padding: 5px;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s;
}

.btn-close-pwa:hover {
  color: #333;
  transform: scale(1.1);
}

@media (max-width: 575px) {
  .pwa-banner {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 12px 15px;
    border-radius: 10px;
  }

  .pwa-banner__text p {
    display: none;
  }
}

.main-wrapper {
  min-height: 75vh;
}

/* OneSignal Slidedown Customization */
#onesignal-slidedown-container {
  z-index: 999999999 !important;
}

#onesignal-slidedown-dialog {
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(var(--base), 0.1) !important;
  max-width: 450px !important;
  margin: 15px auto !important;
}

.onesignal-slidedown-body {
  font-family: inherit !important;
  color: #2c3e50 !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  margin-bottom: 20px !important;
}

.onesignal-slidedown-footer {
  display: flex !important;
  gap: 12px !important;
  justify-content: flex-end !important;
}

.onesignal-slidedown-footer .onesignal-slidedown-button {
  border-radius: 8px !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
  border: none !important;
  cursor: pointer !important;
}

.onesignal-slidedown-footer .primary.button {
  background-color: rgb(var(--base)) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(var(--base), 0.3) !important;
}

.onesignal-slidedown-footer .primary.button:hover {
  background-color: rgb(var(--base) / 0.9) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(var(--base), 0.4) !important;
}

.onesignal-slidedown-footer .secondary.button {
  background-color: #f8f9fa !important;
  color: #6c757d !important;
  border: 1px solid #e9ecef !important;
}

.onesignal-slidedown-footer .secondary.button:hover {
  background-color: #e9ecef !important;
  color: #495057 !important;
}

/* Mobile Optimizations */
@media (max-width: 575px) {
  #onesignal-slidedown-dialog {
    margin: 10px !important;
    width: calc(100% - 20px) !important;
    padding: 20px !important;
  }

  .onesignal-slidedown-body {
    font-size: 14px !important;
  }
}

/* Sidebar Filter Button Improvements */
.search__left-title .btn--base {
  background-color: var(--base-color, #e91e63) !important;
  border-color: var(--base-color, #e91e63) !important;
  color: #fff !important;
  font-size: 12px !important;
  padding: 5px 15px !important;
  border-radius: 4px !important;
  display: inline-block !important;
}

.search__left .btn--base.w-100 {
  background-color: var(--base-color, #e91e63) !important;
  border-color: var(--base-color, #e91e63) !important;
  color: #fff !important;
  padding: 12px !important;
  font-weight: 600 !important;
  margin-top: 20px !important;
  display: block !important;
}



/* Professional WhatsApp Integration Layout - Integrated Suffix */
.input--group .whatsapp-widget {
  position: absolute;
  right: 15px;
  top: calc(50% + 18px);
  /* Shifting down to perfectly center in the 50px input box */
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0 !important;
  height: auto;
  z-index: 10;
}

.whatsapp-widget:hover {
  transform: translateY(-50%) scale(1.05);
}

.whatsapp-widget .form-check-input {
  width: 17px;
  height: 17px;
  margin: 0 0 0 10px;
  cursor: pointer;
  border: 1px solid #ced4da;
  accent-color: #25D366;
  /* Professional WhatsApp Green */
}

.whatsapp-widget i {
  font-size: 22px;
  color: #25D366;
  line-height: 1;
}

/* Ensure input text doesn't overlap the suffix */
.input--group .form--control {
  padding-right: 70px !important;
}

.input--group .form--control.no-suffix-padding {
  padding-right: 10px !important;
}

.form-check-input:checked {
  background-color: #a30055;
  border-color: #a30055;
}

.nav-item {
  padding: 2px 0;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1rem;
}