.search-form-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 1.5rem;
  max-width: 900px;
  width: 100%;
  display: flex;
  align-items: center;
}

.search-form {
  background-color: rgb(0 0 0 / 15%);
  border: 2px solid rgba(255, 255, 255, 0.1);
  max-width: 900px;
  width: 100%;
  border-radius: 10px;
}

.tab-buttons {
  display: flex;
  justify-content: space-between;
  padding: 10px 8px;
  border-bottom: 1px solid #f2f2f2;
  overflow: auto;
}

.tab-btn {
  padding: 7px 15px;
  border: 1px solid transparent;
  background-color: transparent;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  transition: background 0.3s;
}

.tab-btn.active {
  background: var(--yellow-color);
  color: var(--brown-color);
  font-weight: 600;
}

.tab-btn .back,
.tab-btn .front {
  width: 18px;
}

.tab-btn .back {
  display: none;
}

.tab-btn:hover {
  background: var(--yellow-color);
  color: var(--brown-color);
}

.tab-btn.active .front,
.tab-btn:hover .front {
  display: none;
}

.tab-btn.active .back,
.tab-btn:hover .back {
  display: block;
}

.tab-content {
  padding: 55px 8px 12px;
}

.tab-content .name {
  display: none;
}

.tab-panel {
  /* display: none; */
  flex-direction: column;
}

.tab-panel.active {
  display: flex;
}

.sub-tab-btn {
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 7px 25px;
  background: transparent;
  color: var(--white-color);
  border: 1px solid var(--white-color);
  border-radius: 5px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  border-radius: 35px;
  transition: 0.3s ease;
  font-weight: 600;
}

.sub-tab-btn.active {
  background: var(--white-color);
  color: var(--blue-color);
  border-color: var(--white-color);
  font-weight: 600;
}

.sub-tab-btn:hover {
  background: var(--white-color);
  color: var(--blue-color);
}

.sub-tab-panel {
  display: none;
}

.sub-tab-panel.active {
  display: block;
}

.form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.column {
  flex: 1 1 calc(25% - 10px);
  background-color: var(--primary-color);
  color: var(--text-color);
  text-align: center;
  border-radius: 5px;
  transition: transform 0.3s;
}

.column-multiCity {
  flex: 1 1 calc(22% - 10px) !important;
}

.column select,
.column input {
  width: 100%;
  border-radius: 10px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  padding: 7px 10px;
}

.column select::placeholder,
.column input::placeholder {
  color: var(--input-placeholder-color);
}

.column select:focus,
.column input:focus {
  box-shadow: none;
  border: 1px solid var(--blue-color);
}

.column:last-child {
  flex: 1;
}

.form .btn {
  padding: 8px 39px;
  font-weight: 600;
  border-radius: 35px;
}

@media (max-width: 1200px) {
  .column {
    flex: 1 1 calc(33.33% - 10px);
  }

  .search-form .tab-btn {
    width: 100%;
  }

  .tab-btn span {
    display: none;
  }
}

@media (max-width: 768px) {
  .column {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .column {
    flex: 1 1 100%;
  }
}

.input-effect {
  position: relative;
  width: 100%;
}

.input-effect .select-label {
  position: absolute;
  left: 10px !important;
  top: 12px !important;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  color: var(--blue-color);
}

.effect-17 {
  width: 100%;
  padding: 10px !important;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* z-index: 1000;
  position: relative; */
}

input[type='datetime-local'],
input[type='date'],
input[type='time'] {
  padding: 16px 10px 4px !important;
}

.effect-17~label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #212529;
  transition: all 0.3s ease;
  pointer-events: none;
  /* Prevent interference with input focus */
}

.effect-17:focus~label,
.has-content.effect-17~label {
  top: 12px;
  font-size: 10px;
  color: #3399ff;
}

/* .effect-17:focus,
.has-content {
    padding: 14px 10px 7px !important;
} */
.date-input {
  position: relative;
  width: 100%;
  max-width: 300px;
  font-family: Arial, sans-serif;
}

/* .date-input label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #777;
    transition: all 0.3s ease;
    pointer-events: none;
} */

.date-input input:focus+label,
.date-input input:not(:placeholder-shown)+label {
  top: 12px;
  font-size: 10px;
  color: #3399ff;
}

#date-text {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  color: #777;
  transition: color 0.3s ease;
}

.text-gray-400 {
  color: #bbb;
  /* Light gray for placeholder text */
}

.focus-border {
  position: absolute;
  width: 100%;
  height: 2px;

  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.date-input input:focus~.focus-border {
  transform: scaleX(1);
}

.date-input {
  position: relative;
  display: flex;
  flex-direction: column;
}

.custom-date-picker {
  display: flex;
  gap: 5px;
  align-items: center;
}

.date-dropdown {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  background: white;
}

/* our edits starts*/
.select2 {
  width: 100% !important;
}

.select2 .select2-container .select2-container--default .select2-container--focus {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  height: 43px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px !important;
  text-align: start !important;
  font-size: 14px !important;
}

.select2-container--default .select2-selection--multiple {}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px !important;
}

.select2-container--default .select2-selection--single {
  border-radius: 10px !important;
}

/* .select2-container--default.select2-container--disabled .select2-selection--single */
/* our edits end*/
/* Target the entire scrollbar */
.tab-buttons::-webkit-scrollbar {
  width: 5px;
  height: 2px;
}

/* Track (background of the scrollbar) */
.tab-buttons::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Thumb (the draggable part) */
.tab-buttons::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

/* On hover */
.tab-buttons::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.tab-btn span {
  width: max-content;
}

label.field {
  border-radius: 2px;
  /* color: #666; */
  display: block;
  padding: 8px;
  opacity: 0;
  position: relative;
  transition-property: opacity;
  z-index: 1;
  background-color: #fff;
  border-radius: 10px;
}

label.field span {
  color: inherit;
  display: block;
  font-size: 16px;
  height: 20px;
  line-height: 20px;
  left: 9px;
  pointer-events: none;
  position: absolute;
  top: 17px;
  transform: scale(1) translateY(0);
  transition-property: color, font-size, top;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

label.field span.required::after {
  color: inherit;
  content: '*';
  display: block;
  height: 20px;
  left: -20px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 20px;
}

.error label.field span {
  color: #f02318;
}

label.field .psuedo_select {
  background: rgba(255, 255, 255, 0);
  position: relative;
  /* border-color: #666; */
  /* border-style: solid; */
  /* border-width: 0 0 2px 0; */
  /* color: #666; */
  cursor: pointer;
  font-size: 20px;
  height: 24px;
  line-height: 24px;
  margin: 7px 0 0 0;
  /* min-width: 250px; */
  padding-top: 5px;
  outline: 0;
  z-index: 1;
}

label.field .psuedo_select::after {
  background: url("data:image/svg+xml;utf8,<svg fill='#666' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'> <path d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/> <path d='M0-.75h24v24H0z' fill='none'/> </svg>"),
    no-repeat;
  content: '';
  height: 24px;
  width: 24px;
  position: absolute;
  top: 0;
  right: 0;
  transition-property: background;
}

label.field .psuedo_select .selected {
  height: 24px;
  left: 1px;
  line-height: 24px;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translateY(24px);
  transition-property: opacity, transform;
  will-change: transform;
}

label.field .psuedo_select ul {
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  display: block;
  height: 0;
  list-style: none;
  margin-top: 2px;
  opacity: 0;
  overflow: hidden;
  padding: 0 1px;
  pointer-events: none;
  transition-property: height, opacity;
  width: 100%;
  z-index: 2;
  margin-top: 27px;
  width: 100%;
  left: 0;
  right: 0;
}

label.field .psuedo_select ul li {
  height: 32px;
  padding: 8px 4px;
}

label.field .deselect {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: -1;
}

label.field.focused {
  color: #007bed;
}

label.field.focused .psuedo_select {
  border-color: #007bed;
}

label.field.focused .psuedo_select::after {
  background: url("data:image/svg+xml;utf8,<svg fill='#007BED' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'> <path d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/> <path d='M0-.75h24v24H0z' fill='none'/> </svg>"),
    no-repeat;
}

label.field.focused .psuedo_select ul {
  opacity: 1;
  pointer-events: all;
}

#gitHubButton {
  background: rgba(0, 0, 0, 0.25);
  bottom: 10px;
  color: #fff;
  font-size: 12px;
  padding: 5px;
  position: fixed;
  text-decoration: none;
  right: 10px;
}