#resultados {
  max-height: 60vh;
  overflow-y: auto;
  background: rgba(255,255,255,0.98);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  margin-top: 0.2em;
  padding: 0.5em 0;
  position: relative;
}

.resultado-busqueda {
  padding: 0.8em 1.5em;
  border-bottom: 1px solid #ececec;
  transition: background 0.18s;
  display: flex;
  align-items: center;
  gap: 1em;
}

.resultado-busqueda:last-child {
  border-bottom: none;
}

.resultado-busqueda a {
  color: #183E62;
  font-weight: 600;
  font-size: 1.05em;
  text-decoration: none;
  transition: color 0.15s;
}

.resultado-busqueda:hover,
.resultado-busqueda:focus-within {
  background: #F3F8FF;
}

.resultado-descripcion {
  color: #444;
  font-size: 0.98em;
  margin-left: 0.5em;
  flex: 1;
}