
.search_result {
  width: 100%;
  max-width: 600px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  display: none;
  z-index: 1000;
  position: relative;
}

.search_result .result-item {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
}

.search_result .result-item:last-child {
  border-bottom: none;
}

.search_result .result-item:hover {
  background-color: #f8f9fa;
}

