.read-more-btn {
  color: var(--Primary-500, #108482) !important;
  text-decoration-line: underline;
  cursor: pointer;
}

.cursor-pointer {
  cursor: pointer;
}

/* Hide the default checkbox */
.custom-checkbox .form-check-input {
  display: none;
}

.custom-checkbox .form-check-label {
  display: flex;
  gap: 12px;
  color: var(--Gray-800, #1d2939);
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  align-items: center;
}

/* Custom check container */
.custom-check-icon {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hide the SVG icon by default */
.custom-check-icon svg {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-check-input + .form-check-label .custom-check-icon {
  border-radius: 6px;
  border: 1px solid var(--Gray-300, #d0d5dd);
  background: var(--White, #fff);
}

/* When checkbox is checked */
.form-check-input:checked + .form-check-label .custom-check-icon {
  border: 1px solid var(--Primary-500, #108482);
  background: var(--Primary-50, #cfe6e6);
  border-radius: 6px;
}

.form-check-input:checked + .form-check-label .custom-check-icon svg {
  opacity: 1;
  fill: white; /* Ensures visibility */
}

.search-autofill-dropdown-wrapper {
  overflow: hidden;
  width: 100%;
  position: absolute;
  top: 25px;
  border-radius: 0px 0px 16px 16px;
  left: 0px;
  border: 1px solid var(--Gray-200, #e4e7ec);
}

.search-autofill-dropdown {
  background: var(--White, #fff);
  padding: 30px 0 8px 0;
  max-height: 320px;
  overflow: auto;
}

.autofill-container:hover {
  background: #e2e2e2;
}

.search-autofill-dropdown::-webkit-scrollbar {
  width: 4px;
}

.search-autofill-dropdown::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 16px;
}

.search-autofill-dropdown::-webkit-scrollbar-thumb {
  background: #bbbcbe;
  border-radius: 16px;
  border: 2px solid #bbbcbe;
}

.search-autofill-dropdown .autofill-container {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 12px;
  cursor: pointer;
}

.search-autofill-dropdown .autofill-container img {
  width: 20px;
  height: 20px;
}

.search-autofill-dropdown .autofill-container .getplaceDetail {
  text-align: start;
}

.scroll-hidden {
  overflow-y: scroll; /* still scrollable */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.scroll-hidden::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.no-gutter {
  --bs-gutter-x: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
