.search_box {
  height: 493px;
  width: 291px;
  background: #f3f3f3;
  padding: 20px;
}

.search_box-header {
  background-color: #000;
  display: flex;
  align-items: center;
  padding: 8px;
  margin-bottom: 4px;
}

.search_box-item {
  list-style-type: none;
  font-family: Roboto;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
  padding: 2px 8px;
  cursor: pointer;
}

.search_box-item--active {
  border: 1px solid #fff;
}

.search_drawing {
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: center;
  color: #000;
}

.search_arrow {
  width: 9.12px;
  height: 9.12px;
}

.search_drawing-wrapper {
  text-align: end;
}

.search_results {
  margin-top: 20px;
}

.search_results-quantity {
  font-family: Roboto;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;
  color: #747474;
  margin-bottom: 8px;
}

.search_result {
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0em;
}

.search_results-datewrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  margin-bottom: 4px;
}

.search_results-item {
  margin-bottom: 28px;
}

.search_results-date {
  font-family: Roboto;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0em;
  text-align: left;
  color: #000;
}

.search_results-type {
  font-family: Roboto;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0em;
  text-align: right;
  color: #000;
}

.search_results-title {
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;
  color: #000;
}

.search_button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  /*margin-bottom: 50px;*/
}

.search_button {
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: center;
  color: #000;
  padding: 6px 7px;
  border: 1px solid #000;
  width: 146px;
  height: 30px;
}

/* Inline Search CSS */
.inline-search-box {
  margin-right: 15px;
}
.inline-search-container {
  position: relative;
  display: flex;
  align-items: center;
}
.inline-search-form {
  display: flex;
  align-items: center;
  position: relative;
}
#inlineSearchInput {
  width: 0;
  opacity: 0;
  border: none;
  border-bottom: 1px solid transparent;
  background: transparent;
  padding: 5px 25px 5px 5px;
  outline: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  pointer-events: none;
}
.inline-search-container.active #inlineSearchInput {
  width: 250px;
  opacity: 1;
  border-bottom: 1px solid #000;
  pointer-events: auto;
}
.inline-search-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
  width: 16px;
  height: 16px;
}
/* New Search Dropdown CSS — Figma node 680:18253 */
#new-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 100%;
  min-width: 254px;
  background: #edebea;
  border: 1px solid #141414;
  border-radius: 8px;
  box-shadow: 0px 12px 16px -4px rgba(20, 20, 20, 0.08);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px;
}
.new-search-dropdown-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #141414;
  transition: background 0.2s ease;
}
.new-search-dropdown-item:hover {
  background: #e2dfde;
  text-decoration: none;
  color: #141414;
}
.nsd-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.nsd-title {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #141414;
}
.nsd-date {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #888;
}
.nsd-type {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.03em;
  color: #888;
}
.nsd-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
}
