/* Custom styles for modal and transitions */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}
.modal-content {
  max-height: 90vh;
  overflow-y: auto;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Styles for autocomplete suggestions */
.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0 0 0.375rem 0.375rem;
  max-height: 200px;
  overflow-y: auto;
  z-index: 60;
  display: none;
}
.suggestion-item {
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.suggestion-item:hover {
  background-color: #f3f4f6;
}
.remedy-suggestion {
  color: #1d4ed8; /* Blue for remedies */
}
.symptom-suggestion {
  color: #9333ea; /* Purple for symptoms */
}
.indication-suggestion {
  color: #10b981; /* Green for indications */
}
