/* CAMPO DE BUSCA COM DROPDOWN */
.search_bar {
  position: relative;
  width: 100%;
}

.search_bar form {
  display: flex;
  align-items: center;
  position: relative;
}

.search_bar input.input_search {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border-radius: 6px;
  border: 2px solid #e0e0e0;
  font-size: 1rem;
  background-color: #fff;
  box-shadow: none;
}

.search_bar #searchbutton {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent url('../img/icons/search.svg') no-repeat center;
  background-size: 18px;
  width: 36px;
  height: 36px;
  border: none;
  text-indent: -9999px;
  cursor: pointer;
}

/* Resultados AJAX */
.search_result {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-height: 300px;
  overflow-y: auto;
}

.search_result ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.search_result li {
  padding: 10px 15px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  cursor: pointer;
}

.search_result li:hover {
  background-color: #f8f9fa;
  color: #01215e;
}