/* Nextt Career course search + category dropdown layout */
.nextt-course-search-dropdown-row {
  display: flex !important;
  align-items: flex-end !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 980px !important;
  margin: 0 0 22px 0 !important;
  flex-wrap: nowrap !important;
}

.nextt-course-search-input-wrap {
  flex: 1 1 520px !important;
  min-width: 260px !important;
}

.nextt-course-search-input-wrap input {
  width: 100% !important;
  min-height: 58px !important;
  border-radius: 16px !important;
}

.nextt-course-category-select-wrap {
  flex: 0 0 320px !important;
  min-width: 260px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.nextt-course-category-label {
  font-weight: 700 !important;
  color: #061b4a !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
}

.nextt-course-category-select {
  width: 100% !important;
  min-height: 58px !important;
  padding: 0 46px 0 20px !important;
  border: 1px solid #dbe7f7 !important;
  border-radius: 16px !important;
  background-color: #ffffff !important;
  color: #061b4a !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  box-shadow: 0 8px 22px rgba(6, 27, 74, 0.05) !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #0b6ff7 50%),
    linear-gradient(135deg, #0b6ff7 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 50%,
    calc(100% - 17px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.nextt-course-category-select:focus {
  border-color: #0b6ff7 !important;
  box-shadow: 0 0 0 4px rgba(11, 111, 247, 0.12) !important;
}

.nextt-hidden-category-pills-container {
  display: none !important;
}

.nextt-hidden-category-pill {
  display: none !important;
}

@media (max-width: 900px) {
  .nextt-course-search-dropdown-row {
    flex-wrap: wrap !important;
    gap: 14px !important;
  }

  .nextt-course-search-input-wrap,
  .nextt-course-category-select-wrap {
    flex: 1 1 100% !important;
    min-width: 100% !important;
  }
}

@media (max-width: 600px) {
  .nextt-course-search-dropdown-row {
    margin-bottom: 18px !important;
  }

  .nextt-course-search-input-wrap input,
  .nextt-course-category-select {
    min-height: 54px !important;
    font-size: 16px !important;
    border-radius: 14px !important;
  }
}
