/* line 1, app/assets/stylesheets/pages/searches.scss */
.search_job_index_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* line 10, app/assets/stylesheets/pages/searches.scss */
.box_with_tab {
  position: relative;
  background-color: #4fd1eb;
  padding: 20px 20px 0 20px;
  border: 1px solid #4fd1eb;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* line 19, app/assets/stylesheets/pages/searches.scss */
.tab_text {
  position: absolute;
  top: -20px;
  /* Adjust to push it above the box */
  /* Adjust to push it from the left edge */
  background-color: #4fd1eb;
  color: white;
  /* Adjust tab background color */
  padding: 5px 10px;
  border: 1px solid #4fd1eb;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}

/* line 36, app/assets/stylesheets/pages/searches.scss */
.search_form {
  /* Add some space to the left to avoid overlap */
  padding-right: 10px;
}

/* line 42, app/assets/stylesheets/pages/searches.scss */
.search_form_item_wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

/* Styling for the white rectangular box */
/* line 50, app/assets/stylesheets/pages/searches.scss */
.search_form_item {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
}

/* Left section (40%) with image and text */
/* line 62, app/assets/stylesheets/pages/searches.scss */
.search_form_item_label_container {
  display: flex;
  align-items: center;
  width: 40%;
  gap: 10px;
  padding-left: 10px;
}

/* Image wrapper (10%) */
/* line 71, app/assets/stylesheets/pages/searches.scss */
.search_form_item_label_img_wrapper {
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 78, app/assets/stylesheets/pages/searches.scss */
.search_form_item_label_img_wrapper img {
  width: 40px;
  height: 40px;
}

/* Label text (30%) */
/* line 84, app/assets/stylesheets/pages/searches.scss */
.search_form_item_label_wrapper {
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  padding-left: 10px;
}

/* Right section (60%) for input fields */
/* line 93, app/assets/stylesheets/pages/searches.scss */
.search_form_item_field_wrapper {
  width: 60%;
}

/* line 97, app/assets/stylesheets/pages/searches.scss */
.search_form_half_sized_item_field_wrapper {
  width: 30%;
}

/* Input styling (grey rectangles with darker grey outline) */
/* line 103, app/assets/stylesheets/pages/searches.scss */
.search_form_item_field_wrapper select {
  width: 100%;
  height: 40px;
  padding: 8px;
  font-size: 14px;
  border-radius: 8px;
  border: 2px solid #a6a6a6;
  background-color: #f5f5f5;
}

/* line 113, app/assets/stylesheets/pages/searches.scss */
.search_form_item_field_wrapper input {
  width: 90%;
  padding: 8px;
  font-size: 14px;
  border-radius: 8px;
  border: 2px solid #a6a6a6;
  background-color: #f5f5f5;
}

/* line 123, app/assets/stylesheets/pages/searches.scss */
.search_form_item_detail_text {
  margin-left: 20px;
}

/* Small number input */
/* line 128, app/assets/stylesheets/pages/searches.scss */
.search_number_input {
  width: auto;
  min-width: 50px;
  text-align: center;
}

/* line 134, app/assets/stylesheets/pages/searches.scss */
.search_form_item_submit_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
}

/* line 142, app/assets/stylesheets/pages/searches.scss */
.search_form_submit {
  background-color: #daf5f9;
  color: #4fd1eb;
  border-radius: 12px;
  padding: 5px 10px;
  font-size: 16px;
  border: none;
  /* Remove border */
  outline: none;
  /* Remove outline */
  box-shadow: none;
  /* Remove any shadow */
  text-align: center;
  /* Ensure text is centered */
  cursor: pointer;
  /* Change cursor to pointer for better user interaction */
}

/* line 161, app/assets/stylesheets/pages/searches.scss */
.search_job_wrapper {
  padding: 30px 5% 30px;
  box-sizing: border-box;
  background: #E5F7FC;
}

/* line 167, app/assets/stylesheets/pages/searches.scss */
.search_job_form_wrapper {
  margin-bottom: 50px;
}

/* line 172, app/assets/stylesheets/pages/searches.scss */
.search_history_jobs_wrapper {
  background: #fff;
  margin-top: 50px;
  padding: 30px 0;
  max-width: 100%;
  width: 100%;
}

/* line 180, app/assets/stylesheets/pages/searches.scss */
.search_history_jobs_title {
  margin: 0 0 30px;
  text-align: center;
  font-size: 20px;
}

/* line 187, app/assets/stylesheets/pages/searches.scss */
.search_history_jobs_slider_wrapper {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

/* line 194, app/assets/stylesheets/pages/searches.scss */
.custom-slider .slick-current {
  width: 330px;
  /* Adjust to your desired width */
}

/* line 200, app/assets/stylesheets/pages/searches.scss */
.search_history_jobs_slider_image_wrapper {
  width: 49%;
  height: 120px;
  margin-right: 2%;
  position: relative;
}

/* line 207, app/assets/stylesheets/pages/searches.scss */
.search_history_jobs_slider_image_wrapper img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 216, app/assets/stylesheets/pages/searches.scss */
.search_history_jobs_slider_right_wrapper {
  width: 49%;
}

/* line 220, app/assets/stylesheets/pages/searches.scss */
.search_history_jobs_slider_wrapper li {
  width: 370px;
  margin: 0 15px;
}

/* line 225, app/assets/stylesheets/pages/searches.scss */
.search_history_jobs_slider_wrapper li a {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: #666;
}

/* line 232, app/assets/stylesheets/pages/searches.scss */
.search_history_jobs_slider_company_name {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: bold;
}

/* line 241, app/assets/stylesheets/pages/searches.scss */
.search_history_jobs_slider_title {
  margin: 8px 0 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* line 249, app/assets/stylesheets/pages/searches.scss */
.history_prev_wrapper {
  position: absolute;
  left: 15px;
  bottom: -13px;
  z-index: 5;
}

/* line 256, app/assets/stylesheets/pages/searches.scss */
.history_next_wrapper {
  position: absolute;
  right: 25px;
  bottom: -13px;
  z-index: 5;
}

/* line 263, app/assets/stylesheets/pages/searches.scss */
.history_prev_inner,
.history_next_inner {
  position: relative;
}

/* line 268, app/assets/stylesheets/pages/searches.scss */
.history_prev_wrapper::before,
.history_prev_wrapper::after {
  content: "";
  position: absolute;
  border-top: 4px solid #000;
  width: 10px;
}

/* line 276, app/assets/stylesheets/pages/searches.scss */
.history_prev_wrapper::before {
  top: 3px;
  transform: rotate(45deg);
}

/* line 281, app/assets/stylesheets/pages/searches.scss */
.history_prev_wrapper::after {
  top: -3px;
  transform: rotate(-45deg);
}

/* line 286, app/assets/stylesheets/pages/searches.scss */
.history_next_wrapper::before,
.history_next_wrapper::after {
  content: "";
  position: absolute;
  border-top: 4px solid #000;
  width: 10px;
}

/* line 294, app/assets/stylesheets/pages/searches.scss */
.history_next_wrapper::before {
  top: 3px;
  transform: rotate(-45deg);
}

/* line 299, app/assets/stylesheets/pages/searches.scss */
.history_next_wrapper::after {
  top: -3px;
  transform: rotate(45deg);
}

/* line 304, app/assets/stylesheets/pages/searches.scss */
.search_history_jobs_slider_appeal_point {
  display: inline-block;
  font-size: 12px;
  background: #ED6A6A;
  border-radius: 3px;
  padding: 1px 3px;
  box-sizing: border-box;
  color: #fff;
}
