/* INPUTS (typeahead puede usar .tt-input y .tt-hint) */
.tt-input,
.tt-hint {
  width: 100%;
  height: 2.5rem; /* h-10 */
  padding: 0.5rem 0.75rem; /* px-3 */
  font-size: 0.875rem; /* text-sm */
  border-radius: 0.375rem; /* rounded-md */
  outline: none;
  box-sizing: border-box;
}



.tt-hint {
  color: #9ca3af; /* text-gray-400 */
}

/* MENU DE RESULTADOS */
.tt-menu {
  width: 100%;
  margin-top: 0.25rem; /* mt-1 */
  background-color: #ffffff; /* bg-white */
  border: 1px solid #e5e7eb; /* border-gray-200 */
  border-radius: 0.375rem; /* rounded-md */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
              0 4px 6px -4px rgba(0, 0, 0, 0.1); /* shadow-lg */
  z-index: 50;
  max-height: 300px;
  overflow-y: auto;
  box-sizing: border-box;
}

/* SUGERENCIAS */
.tt-suggestion {
  padding: 0.5rem 1rem; /* px-4 py-2 */
  font-size: 0.875rem; /* text-sm */
  color: #1f2937; /* text-gray-800 */
  cursor: pointer;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

/* HOVER */
.tt-suggestion:hover {
  background-color: #f3f4f6; /* hover:bg-gray-100 */
}

/* CUANDO ESTÁ SELECCIONADO */
.tt-suggestion.tt-cursor {
  background-color: #3b82f6; /* bg-primary (blue-500) */
  color: white;
}